Center OS7(阿里雲) 配置 Redis4 遠端連線

weixin_34290000發表於2017-09-01

下載 安裝 redis (參考百度文庫)

$ cd /download
$ wget http://download.redis.io/redis-stable.tar.gz
$ tar -xvf redis.....
$ cd redis-stable
$ make
$ make install
執行./utils/install_server.sh配置Redis配置之後Redis能隨系統啟動。
.....

埠開啟設定

$ iptables -A INPUT -p tcp --dport 6379 -j ACCEPT
開啟阿里雲安全組埠

設定許可權

$ vi /etc/redis/6379.conf // 6379 是埠號
新增


bind 0.0.0.0
requirepass 123456


$ service redis_6379 restart

設定 timeout

$ vi /etc/redis/6379.conf // yum 安裝路徑為 etc/redis.conf
加入


timeout 0
tcp-keepalive 0


參考
http://www.cnblogs.com/kreo/p/4423362.html

相關文章