成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

redis服務(wù)器環(huán)境下mysql如何實(shí)現(xiàn)lnmp架構(gòu)緩存-創(chuàng)新互聯(lián)

這篇文章主要為大家展示了“redis服務(wù)器環(huán)境下mysql如何實(shí)現(xiàn)lnmp架構(gòu)緩存”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“redis服務(wù)器環(huán)境下mysql如何實(shí)現(xiàn)lnmp架構(gòu)緩存”這篇文章吧。

站在用戶的角度思考問題,與客戶深入溝通,找到長(zhǎng)壽網(wǎng)站設(shè)計(jì)與長(zhǎng)壽網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名申請(qǐng)、虛擬主機(jī)、企業(yè)郵箱。業(yè)務(wù)覆蓋長(zhǎng)壽地區(qū)。

配置環(huán)境: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相應(yīng)模塊

redis服務(wù)器環(huán)境下mysql如何實(shí)現(xiàn)lnmp架構(gòu)緩存

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

redis服務(wù)器環(huán)境下mysql如何實(shí)現(xiàn)lnmp架構(gòu)緩存

php測(cè)試:

[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 ]

物理機(jī)訪問:

redis服務(wù)器環(huán)境下mysql如何實(shí)現(xiàn)lnmp架構(gòu)緩存

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的結(jié)果緩存到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,并導(dǎo)入測(cè)試數(shù)據(jù)庫

[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、數(shù)據(jù)庫授權(quán)

[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)

測(cè)試:訪問172.25.254.2/test.php

1、php默認(rèn)從redis 索取數(shù)據(jù),第一次redis無緩存,則php從mysql'索取數(shù)據(jù)

第一次無緩存

redis服務(wù)器環(huán)境下mysql如何實(shí)現(xiàn)lnmp架構(gòu)緩存

第二次索取數(shù)據(jù)后:

redis服務(wù)器環(huán)境下mysql如何實(shí)現(xiàn)lnmp架構(gòu)緩存

redis節(jié)點(diǎn)也可查看

[root@server1 redis-4.0.1]# redis-cli
127.0.0.1:6379> get 2
"test2"

2、將數(shù)據(jù)庫server3節(jié)點(diǎn)內(nèi)容更新并刪除節(jié)點(diǎn),則php從數(shù)據(jù)庫索取數(shù)據(jù)節(jié)點(diǎn)更新內(nèi)容

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主機(jī)刪除節(jié)點(diǎn)內(nèi)容

[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服務(wù)器環(huán)境下mysql如何實(shí)現(xiàn)lnmp架構(gòu)緩存

以上是“redis服務(wù)器環(huán)境下mysql如何實(shí)現(xiàn)lnmp架構(gòu)緩存”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計(jì)公司行業(yè)資訊頻道!

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。

當(dāng)前名稱:redis服務(wù)器環(huán)境下mysql如何實(shí)現(xiàn)lnmp架構(gòu)緩存-創(chuàng)新互聯(lián)
網(wǎng)站路徑:http://jinyejixie.com/article14/ghede.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序、手機(jī)網(wǎng)站建設(shè)、App開發(fā)、網(wǎng)站設(shè)計(jì)、網(wǎng)站改版、微信公眾號(hào)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)公司
特克斯县| 龙江县| 巴彦淖尔市| 红安县| 沧源| 花莲县| 新宁县| 石嘴山市| 厦门市| 柘城县| 蒙自县| 上饶县| 农安县| 江津市| 黄梅县| 青阳县| 新乐市| 巴青县| 桑植县| 突泉县| 资中县| 大田县| 塘沽区| 昌都县| 河北省| 黑龙江省| 湟中县| 长兴县| 长宁县| 忻州市| 霍邱县| 溆浦县| 永平县| 深泽县| 新巴尔虎右旗| 苗栗县| 永宁县| 新平| 平武县| 荣昌县| 三明市|