配置环境:redhat6.5
server1:redis(172.25.254.1)
server2:php(172.25.254.2)
server3:mysql(172.25.254.3)
配置步骤:
server2:
1、server2安装php的redis相应模块
2、nginx安装
[root@server2 php-fpm.d]# rpm -ivh nginx-1.8.0-1.el6.ngx.x86_64.rpm warning: nginx-1.8.0-1.el6.ngx.x86_64.rpm: Header V4 RSA/SHA1 Signature, key ID 7bd9bf62: NOKEY Preparing... ########################################### [100%] 1:nginx ########################################### [100%] ---------------------------------------------------------------------- Thanks for using nginx! Please find the official documentation for nginx here: * https://nginx.org/en/docs/ Commercial subscriptions for nginx are available on: * https://nginx.com/products/ ---------------------------------------------------------------------- [root@server2 php-fpm.d]# id nginx uid=498(nginx) gid=499(nginx) groups=499(nginx)
3、nginx和php配置
1、php配置
[root@server2 php-fpm.d]# cd /etc/php-fpm.d/ [root@server2 php-fpm.d]# id nginx uid=498(nginx) gid=499(nginx) groups=499(nginx) [root@server2 php-fpm.d]# vim www.conf 39 user = nginx 41 group = nginx [root@server2 php-fpm.d]# vim /etc/php.ini 946 date.timezone = Asia/Shanghai [root@server2 php-fpm.d]# /etc/init.d/php-fpm start Starting php-fpm: [ OK ] [root@server2 php-fpm.d]# netstat -antlp | grep php tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN 1125/php-fpm [root@server2 php-fpm.d]# vim /etc/php.ini
2、nginx配置
[root@server2 ~]# cd /etc/nginx/conf.d/ [root@server2 conf.d]# ls default.conf example_ssl.conf [root@server2 conf.d]# vim default.conf 10 index index.php index.html index.htm; 30 location ~ \.php$ { 31 root html; 32 fastcgi_pass 127.0.0.1:9000; 33 fastcgi_index index.php; 34 fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script _name; 35 include fastcgi_params; 36 } [root@server2 conf.d]# nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful [root@server2 conf.d]# nginx [root@server2 conf.d]# netstat -anplt |grep nginx tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 1141/nginx
php测试:
[root@server2 conf.d]# cd /usr/share/nginx/html/ [root@server2 html]# vim index.php [root@server2 html]# cat index.php <!--php phpinfo() --> [root@server2 html]# /etc/init.d/php-fpm reload Reloading php-fpm: [14-Jul-2018 01:09:13] NOTICE: configuration file /etc/php-fpm.conf test is successful [ OK ]
物理机访问:
4、php配置redis+mysql
[root@server2 ~]# cd /usr/share/nginx/html/ [root@server2 html]# vim test.php <!--php $redis = new Redis(); $redis--->connect('172.25.254.1',6379) or die ("could net connect redi s server"); # $query = "select * from test limit 9"; $query = "select * from test"; for ($key = 1; $key < 10; $key++) { if (!$redis->get($key)) { $connect = mysql_connect('172.25.254.3','redis','wes tos'); mysql_select_db(test); $result = mysql_query($query); //如果没有找到$key,就将该查询sql的结果缓存到redis while ($row = mysql_fetch_assoc($result)) { $redis->set($row['id'],$row['name']); } $myserver = 'mysql'; break; } else { $myserver = "redis"; $data[$key] = $redis->get($key); } } echo $myserver; echo " "; for ($key = 1; $key < 10; $key++) { echo "number is $key"; echo " "; echo "name is $data[$key]" ; echo " "; } >
5、添加php支持的redis模块
[root@server2 ~]# unzip phpredis-master.zip [root@server2 ~]# cd phpredis-master [root@server2 phpredis-master]# phpize Configuring for: PHP Api Version: 20090626 Zend Module Api No: 20090626 Zend Extension Api No: 220090626 [root@server2 phpredis-master]# ls acinclude.m4 config.sub library.c README.markdown aclocal.m4 configure library.h redis.c autom4te.cache configure.in ltmain.sh redis_session.c build CREDITS Makefile.global redis_session.h common.h debian missing run-tests.php config.guess debian.control mkdeb-apache2.sh serialize.list config.h.in igbinary mkinstalldirs tests config.m4 install-sh php_redis.h [root@server2 phpredis-master]# ./configure [root@server2 phpredis-master]# make && make install [root@server2 ~]# cd /etc/php.d/ [root@server2 php.d]# ls curl.ini json.ini mysql.ini pdo_sqlite.ini zip.ini fileinfo.ini mbstring.ini pdo.ini phar.ini gd.ini mysqli.ini pdo_mysql.ini sqlite3.ini [root@server2 php.d]# cp mysql.ini redis.ini [root@server2 php.d]# vim redis.ini 2 extension=redis.so [root@server2 php.d]# /etc/init.d/php-fpm reload Reloading php-fpm: [14-Jul-2018 01:21:56] NOTICE: configuration file /etc/php-fpm.conf test is successful [ OK ] [root@server2 php.d]# php -m |grep redis redis server3:mysql配置
1、安装mysql-server
[root@server3 ~]# rpm -qa | grep mysql mysql-community-common-5.7.17-1.el6.x86_64 mysql-community-client-5.7.17-1.el6.x86_64 mysql-community-libs-compat-5.7.17-1.el6.x86_64 mha4mysql-node-0.56-0.el6.noarch mysql-community-libs-5.7.17-1.el6.x86_64 mysql-community-server-5.7.17-1.el6.x86_64 [root@server3 ~]# rpm -e `rpm -qa|grep mysql` --nodeps ##不考虑依赖性删除mysql warning: /etc/my.cnf saved as /etc/my.cnf.rpmsave [root@server3 ~]# rpm -qa | grep mysql [root@server3 ~]# cd /var/lib/mysql/ [root@server3 mysql]# rm -fr * [root@server3 mysql]# ls [root@server3 mysql]# yum install -y mysql-server ##安装
2、开启mysql,并导入测试数据库
[root@server3 ~]# /etc/init.d/mysqld start [root@server3 ~]# mysql < test.sql [root@server3 ~]# mysql < test.sql [root@server3 ~]# cat test.sql use test; CREATE TABLE `test` (`id` int(7) NOT NULL AUTO_INCREMENT, `name` char(8) DEFAULT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; INSERT INTO `test` VALUES (1,'test1'),(2,'test2'),(3,'test3'),(4,'test4'),(5,'test5'),(6,'test6'),(7,'test7'),(8,'test8'),(9,'test9'); #DELIMITER $$ #CREATE TRIGGER datatoredis AFTER UPDATE ON test FOR EACH ROW BEGIN # SET @RECV=gman_do_background('syncToRedis', json_object(NEW.id as `id`, NEW.name as `name`)); # END$$ #DELIMITER ;
3、数据库授权
[root@server3 ~]# mysql mysql> grant all on test.* to redis@'%' identified by 'westos'; Query OK, 0 rows affected (0.00 sec) mysql> select * from test.test; +----+-------+ | id | name | +----+-------+ | 1 | test1 | | 2 | test2 | | 3 | test3 | | 4 | test4 | | 5 | test5 | | 6 | test6 | | 7 | test7 | | 8 | test8 | | 9 | test9 | +----+-------+ 9 rows in set (0.00 sec)
测试:访问172.25.254.2/test.php
1、php默认从redis 索取数据,第一次redis无缓存,则php从mysql'索取数据
第一次无缓存
第二次索取数据后:
redis节点也可查看
[root@server1 redis-4.0.1]# redis-cli 127.0.0.1:6379> get 2 "test2"
2、将数据库server3节点内容更新并删除节点,则php从数据库索取数据节点更新内容
mysql> update test.test set name='westos' where id=1; Query OK, 1 row affected (0.05 sec) Rows matched: 1 Changed: 1 Warnings: 0 mysql> select * from test.test; +----+--------+ | id | name | +----+--------+ | 1 | westos | | 2 | test2 | | 3 | test3 | | 4 | test4 | | 5 | test5 | | 6 | test6 | | 7 | test7 | | 8 | test8 | | 9 | test9 | +----+--------+ 9 rows in set (0.00 sec)
redis的master主机删除节点内容
[root@server1 redis-4.0.1]# redis-cli 127.0.0.1:6379> get 2 "test2" 127.0.0.1:6379> del 1 (integer) 1 127.0.0.1:6379> get 1 (nil)
刷新页面,再次访问
以上redis 作为 mysql 的缓存服务器,但是如果更新了 mysql,redis中仍然会有对应的 KEY,数据就不会更新,此时就会出现 mysql 和 redis 数据不一致的情况。
总结
以上所述是小编给大家介绍的redis服务器环境下mysql实现lnmp架构缓存,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新动态
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]