redis簡單部署

一、首先安裝:tcl8.6.8redis

tar -zxvf tcl8.6.8-src.tar.gz
cd /opt/tools/tcl8.6.8/unix
./configure
make
make test
make install

二、而後安裝:rediside

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

而後一直按回車ui

三、添加密碼加密

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

四、主從配置unix

將主從redis的daemonize no改成yes
在從redis添加slaveof 192.168.10.1 6379(主redisIP地址和端口)
相關文章
相關標籤/搜索