下載 安裝 redis (參考百度文庫)
$ cd /download
$ wget http://download.redis.io/redis-stable.tar.gz
$ tar -xvf redis.....
$ cd redis-stable
$ make
$ make install
執(zhí)行./utils/install_server.sh配置Redis配置之后Redis能隨系統(tǒng)啟動(dòng)晴埂。
.....
端口開啟設(shè)置
$ iptables -A INPUT -p tcp --dport 6379 -j ACCEPT
開啟阿里云安全組端口
設(shè)置權(quán)限
$ vi /etc/redis/6379.conf // 6379 是端口號(hào)
添加
bind 0.0.0.0
requirepass 123456
$ service redis_6379 restart
設(shè)置 timeout
$ vi /etc/redis/6379.conf // yum 安裝路徑為 etc/redis.conf
加入
timeout 0
tcp-keepalive 0