CentOS6.10安裝redis5.0
阿新 • • 發佈:2018-11-03
1、以安裝redis5.0.0為例
下載安裝包:http://redis.io
安裝非常簡單!
[[email protected] ~]#yum install gcc #需要先安裝GCC,如果已安裝請忽略 [root@centos6 ~]tar zxvf redis-5.0.0.tar.gz -C /usr/local #解壓 [[email protected] ~]cd /usr/local/redis-5.0.0 #進入解壓後的資料夾 [[email protected] redis5.0.0]make #編譯
沒錯,已經安裝完畢了!
2、修改配置檔案
[[email protected] ~]# vi /usr/local/redis5.0.0/redis.conf #修改配置檔案 protected-mode no # 關閉保護模式 daemonize yes # 守護程序模式開啟 #bind 127.0.0.1 # 繫結IP按需修改 port 6379 # 埠按需修改
3、執行並檢查埠
[[email protected] redis5.0.0]#./src/redis-server redis.conf #啟動服務命令[[email protected] redis5.0.0]#netstat -tunpl | grep 6379 #檢視6379埠是否佔用
4、開放防火牆埠
[[email protected] ~]#/sbin/iptables -I INPUT -p tcp --dport 6379 -j ACCEPT #開放6379埠 [[email protected] ~]#/etc/rc.d/init.d/iptables save #儲存配置 [[email protected] ~]#/etc/rc.d/init.d/iptables restart #重啟服務 [[email protected] ~]#/etc/init.d/iptables status #檢視埠是否已經開放