安装环境与工具
yum -y install wget vim tcl gcc make
下载 redis
wget wget https://download.redis.io/releases/redis-7.0.12.tar.gz
上传 redis-7.0.12.tar.gz 到三台服务器 /data/redis-7.0.12.tar.gz
118.89.112.205 主服务器
124.220.13.28 从服务器
解压到 /usr/local 目录下
tar -zxvf redis-7.0.12.tar.gz -C /usr/local/
cd /usr/local/redis-7.0.12/
编译与安装
make
make install
编辑 redis.conf
118.89.112.205
# 需要不同服务器的节点连通,就不能设置为 127.0.0.1 bind 0.0.0.0 bind 0.0.0.0 # 需要不同服务器的节点连通,这个就要设置为 no protected-mode no port 6379 daemonize yes logfile "/var/log/redis/redis.log" masterauth "ABC!!123" save 3600 1 save 300 100 save 60 10000 dir "/usr/local/redis-7.0.12" requirepass "ABC!!123" replicaof 118.89.112.205 6379
logfile "/var/log/redis/sentinel.log" daemonize yes sentinel announce-ip 118.89.112.205 sentinel announce-port 23679
sentinel monitor mymaster 118.89.112.205 6379 2
sentinel auth-pass mymaster ABC!!123
标签:12,tar,112.205,redis,7.0,118.89 From: https://www.cnblogs.com/JIKes/p/18026000