两个redis 服务器(一主一从)
redis.conf 配置文件(主)
/usr/local/redis6379/redis.conf 文件配置
- bind 192.168.1.29 IP
- port 6379 端口
- timeout 0 超时
- daemonize yes 是否后台进程
- pidfile /var/run/redis6379.pid pid文件位置
- loglevel debug 日志模式
- logfile /var/log/redis6379.log 日志位置
- dir /data/redis6379/ 数据位置
slave(备份)服务器(从)
- vi /etc/local/redis-6378/redis.conf
- bind 192.168.1.29 IP
- port 6378 端口
- timeout 0 超时
- daemonize yes 是否后台进程
- pidfile /var/run/redis6378.pid pid文件位置
- loglevel debug 日志模式
- logfile /var/log/redis6378.log 日志位置
- dir /data/redis6378/ 数据位置
- slave-serve-stale-data yes
- slaveof <masterip> <masterport>下面添加一句
- slaveof 192.168.225.128 6379
(主,从)启动
- /usr/local/redis-3.0.0/src/redis-server /usr/local/redis-6379/redis.conf
- /usr/local/redis-3.0.0/src/redis-server /usr/local/redis-6378/redis.conf
- redis-cli -h 192.168.1.29 -p 6379
- redis-cli -h 192.168.1.29 -p 6378
网友评论