本篇文章給大家帶來的內容是關於Session共用:php和redis叢集如何?Session共用,有一定的參考價值,有需要的朋友可以參考一下,希望對你有所協助。
一、redis 資料庫叢集安裝
軟體版本redis-3.2.11、php-redis-2.2.4
角色 |
IP 位址 |
主機名稱 |
Redis 資料庫伺服器 |
192.168.1.41 |
Redis41 |
Slave 1 Redis 資料庫伺服器 |
192.168.1.42 |
Redis42 |
Slave 2 Redis 資料庫伺服器 |
192.168.1.43 |
Redis43 |
VIP 位址 |
192.168.1.40 |
|
三台資料庫同樣配置
adduser -s /sbin/nologin -d /var/lib/redis redisyum -y install gcc gcc-c++tar -xf redis-3.2.11.tar.gzcd redis-3.2.11/make MALLOC=libc //用MALLOC這個 環境變數去編譯Redis,而且libc 並不是預設的 分配器,預設的是 jemallocmake PREFIX=/usr/local/redis install //指定安裝路徑mkdir -p /usr/local/redis/confcp redis.conf /usr/local/redis/conf/ cp sentinel.conf /usr/local/redis/conf/
常用配置選項/usr/local/redis/conf/redis.conf
– port 6379 // 連接埠– bind 192.168.1.41 //IP 位址– tcp-backlog 511 //tcp 串連總數– timeout 0 // 連線逾時時間– tcp-keepalive 300 // 長連線時間– daemonize yes // 守護進程方式運行– databases 16 // 資料庫個數– logfile /var/log/redis_6379.log //pid 檔案– maxclients 10000 // 並發串連數量– dir /var/lib/redis/6379 // 資料庫目錄
配置Redis能夠讓systemclt系統管理(非必須)
vim /usr/lib/systemd/system/redis.server
[Unit]Description=Redis In-Memory Data StoreAfter=network.target[Service]User=redisGroup=redisType=simpleExecStart=/usr/local/redis/bin/redis-server /usr/local/redis/conf/redis.confExecStop=/usr/local/redis/bin/redis-cli shutdownRestart=alwaysRestartSec=42s[Install]WantedBy=multi-user.target
二、安裝 php-redis 擴充
配置 php 支援 Redis
tar zxvf phpredis-2.2.4.tar.gz cd phpredis-2.2.4 /usr/local/php/bin/phpize //用phpize產生configure設定檔./configure --enable-redis --with-php-config=/usr/local/php/bin/php-config make && make install php -m |grep redis
編寫測試檔案 redis.php 進行頁面測試
<?php$redis = new redis();$redis->connect('192.168.1.41',6379);$redis->set('redistest','666666');echo $redis->get('redistest');?>
三、redis 伺服器叢集高可用
redis叢集實現大概有以下幾種方式:
redis-cluster, 官方提供的叢集搭建方案(過於重量級,比較適合後期資料量較大的時候的使用)redis+keepalive 虛擬IP,多台配置非常複雜,不宜維護,需要 slaveof no one 指令碼redis+zookeeper 需要引入zookeeper,對現有代碼變動較大redis+sentinel redis內建監控中介軟體,哨兵模式配置三台 redis 伺服器配置主從關係,在 slave 上添加配置slaveof 192.168.1.41 6379查看叢集主從關係redis-cli -h 192.168.1.41 -p 6379 info replication
修改 redis 哨兵設定檔 sentinel.conf
bind 192.168.1.41protected-mode nodaemonize yesport 26379dir /tmpsentinel monitor mymaster 192.168.1.41 6379 2sentinel down-after-milliseconds mymaster 3000sentinel parallel-syncs mymaster 1sentinel failover-timeout mymaster 5000sentinel client-reconfig-script mymaster /usr/local/redis/conf/reconfig.sh分別在主,從上啟動 sentinelredis-sentinel /usr/local/redis/conf/sentinel.conf查看哨兵狀態redis-cli -h 192.168.1.41 -p 26379 info sentinel
四、用戶端相容問題
用戶端程式(如PHP程式)串連redis時需要ip和port,但redis-server進行容錯移轉時,主要資料庫是變化的,所以ip地址也是變化的,用戶端程式如何感知當前主redis的ip地址和連接埠呢?
redis-sentinel提供了介面,請求任何一個sentinel,發送SENTINEL get-master-addr-by-name <master name>就能得到當前主redis的ip和port。
解決方案:
增加配置切換指令碼 sentinel.conf,當主要資料庫服務宕機時,實現VIP漂移自動切換主從。
sentinel client-reconfig-script mymaster /usr/local/redis/conf/reconfig.sh
#!/bin/bash#mymaster leader start 192.168.1.41 6379 192.168.1.42 6379VIP="192.168.1.40/24"local_ip=$(ip addr show dev eth0 |awk '$1=="inet"{print $2}')if [[ "${local_ip%%/*}" == "$4" ]];then /usr/sbin/ifconfig eth0:1 downelif [[ "${local_ip%%/*}" == "$6" ]];then /usr/sbin/ifconfig eth0:1 "${VIP}"fi