2台机器安装Redis主从
1. 配置redis.conf(主)
bind 127.0.0.1 #注释掉
protected-mode no #关闭保护模式
daemonize yes #开启后台守护进程
logfile "/var/log/redis/redis.log" #日志文件路径
2.配置redis.conf(从)
bind 127.0.0.1 #注释掉
protected-mode no #关闭保护模式
daemonize yes #开启后台守护进程
logfile "/var/log/redis/redis.log" #日志文件路径
slaveof 192.168.1.202 6379#主redis的ip地址与端口
3. 配置sentinel.conf(主)
sentinel monitor mymaster 192.168.1.202 6379 2 #改成主redis的ip与端口
daemonize yes #开启后台守护进程
protected-mode no #关闭保护模式
logfile "/var/log/redis/sentinel.log" #日志文件路径
4. 配置sentinel.conf(从)
sentinel monitor mymaster 192.168.1.202 6379 2 #改成主redis的ip与端口
daemonize yes #开启后台守护进程
protected-mode no #关闭保护模式
logfile "/var/log/redis/sentinel.log" #日志文件路径
配置成功后重新启动服务器
5. 启动主机
启动主redis
[root@hadoop2 ~]# /usr/local/bin/redis-server /etc/redis6379.conf
[root@hadoop2 ~]# /usr/local/bin/redis-sentinel /etc/sentinel6379.conf
[root@hadoop2 ~]# redis-cli
启动从redis
[root@hadoop3 ~]# /usr/local/bin/redis-server /etc/redis6379.conf
[root@hadoop3 ~]# /usr/local/bin/redis-sentinel /etc/sentinel6379.conf
[root@hadoop3 ~]# redis -cli
主redis设置key value
从redis get key
6.查看信息info
主redis信息
127.0.0.1:6379> info
从redis信息
127.0.0.1:6379> info