linux安裝redis

1.檢查是否有redis yum 源python

yum install redis

 2.安裝完畢後,使用下面的命令啓動redis服務redis

# 啓動redis
service redis start
# 中止redis
service redis stop
# 查看redis運行狀態
service redis status
# 查看redis進程
ps -ef | grep redis

 3.設置redis爲開機自動啓動數據庫

chkconfig redis on

 4.進入redis服務centos

# 進入本機redis
redis-cli
# 列出全部key
keys *

 5.防火牆開放相應端口tcp

# 開啓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
# centos 7下執行
service iptables save

 6.修改redis默認端口和密碼工具

# 打開配置文件 
vi /etc/redis.conf
# 修改默認端口,查找 port 6379 修改成相應端口便可
port 6379
# 修改默認密碼,查找 requirepass foobared 將 foobared 修改成你的密碼
requirepass konglingxi
# 使用配置文件啓動 redis
redis-server /etc/redis.conf &
# 使用端口登陸,輸入redis密碼
redis-cli -h 127.0.0.1 -p 6379
auth konglingxi
# 命令方式關閉redis
redis-cli -h 127.0.0.1 -p 6379
shutdown
# 進程號殺掉redis
ps -ef | grep redis
kill -9 XXX

 ps:ui

一、若是長時間鏈接不上,可能有兩種可能性this

  a)bind了127.0.01:只容許在本機鏈接redis命令行

  b)protected-mode設置了yes(使用redis desktop manager工具須要配置,其他不用)server

# 打開redis配置文件
vi /etc/redis.conf
# 找到 bind 127.0.0.1 將其註釋
# 找到 protected-mode yes 將其改成
protected-mode no

 2.鏈接redis數據庫時忽然報錯:MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.
究其緣由是由於強制把redis快照關閉了致使不能持久化的問題 ,stop-writes-on-bgsave-error值設置爲no便可避免這種問題。
有兩種修改方法,一種是經過redis命令行修改,另外一種是直接修改redis.conf配置文件
命令行修改方式示例:

127.0.0.1:6379> config set stop-writes-on-bgsave-error no

修改redis.conf文件:vi打開redis-server配置的redis.conf文件,而後使用快捷匹配模式:/stop-writes-on-bgsave-error定位到stop-writes-on-bgsave-error字符串所在位置,接着把後面的yes設置爲no便可。

3.Could not connect to Redis at 127.0.0.1:6379: Connection refused,在安裝好redis擴展 嘗試鏈接redis時,客戶端打不開,緣由是須要先開啓服務端

找到redis.conf 並修改 daemonize no 爲 daemonize yes ,這樣就能夠默認啓動就後臺運行

相關文章
相關標籤/搜索