redis簡單部署
阿新 • • 發佈:2018-05-30
redis1、首先安裝:tcl8.6.8
tar -zxvf tcl8.6.8-src.tar.gz
cd /opt/tools/tcl8.6.8/unix
./configure
make
make test
make install
2、然後安裝:redis
tar -zxvf redis-4.0.9.tar.gz
cd /opt/tools/redis-4.0.9/src
make
make test
make install
cd /opt/tools/redis-4.0.9/utils
./install_server.sh
然後一直按回車
3、添加密碼
cd /etc/redis/6379.conf 找到requirepass在後面設置密碼 requirepass fangx 登陸redis redis-cli -a fangx (-a後面是密碼)
添加密碼後會重啟報錯
Stopping ...
(error) NOAUTH Authentication required.
Waiting for Redis to shutdown ...
需要修改啟動腳本
vi /etc/init.d/redis_6379
在如下password設置您的密碼
$CLIEXEC -a "fangx" -p $REDISPORT shutdown
4、主從配置
將主從redis的daemonize no改為yes
在從redis添加slaveof 192.168.10.1 6379(主redisIP地址和端口)
redis簡單部署