在linux(centos)系統安裝redis教程
阿新 • • 發佈:2018-12-16
最近在切換伺服器作業系統,簡單記錄一下
一、安裝redis
1、檢查是否有redis yum 源
yum install redis
2、下載fedora的epel倉庫
yum install epel-release
3、安裝redis資料庫
yum install redis
4、安裝完畢後,使用下面的命令啟動redis服務
# 啟動redis service redis start # 停止redis service redis stop # 檢視redis執行狀態 service redis status # 檢視redis程序 ps-ef | grep redis
5、設定redis為開機自動啟動
chkconfig redis on
6、進入redis服務
# 進入本機redis redis-cli # 列出所有key keys *
7、防火牆開放相應埠
# 開啟6379 /sbin/iptables -I INPUT -p tcp --dport 6379 -j ACCEPT # 開啟6380 /sbin/iptables -I INPUT -p tcp --dport 6380 -j ACCEPT # 儲存 /etc/rc.d/init.d/iptables save # centos7下執行 service iptables save
二、修改redis預設埠和密碼
1、開啟配置檔案
vi /etc/redis.conf
2、修改預設埠,查詢 port 6379 修改為相應埠即可
3、修改預設密碼,查詢 requirepass foobared 將 foobared 修改為你的密碼
4、使用配置檔案啟動 redis
redis-server /etc/redis.conf &
5、使用埠登入,輸入redis密碼
redis-cli -h 127.0.0.1 -p 6379
6、停止redis
命令方式關閉redis
redis-cli -h 127.0.0.1 -p 6379 shutdown
程序號殺掉redis
ps -ef | grep redis kill -9 XXX
三、使用redis desktop manager遠端連線redis
1、如果長時間連線不上,可能有兩種可能性
a)bind了127.0.01:只允許在本機連線redis
b)protected-mode設定了yes(使用redis desktop manager工具需要配置,其餘不用)
# 開啟redis配置檔案 vi /etc/redis.conf # 找到 bind 127.0.0.1 將其註釋 # 找到 protected-mode yes 將其改為 protected-mode no
2、重啟redis
service redis stop
service redis start
3、展示