這篇文章帶給大家的內容是關於Linux下如何設定redis存取密碼(程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
今天伺服器安裝了redis,為了安全設定一下存取redis-server的密碼。
我們伺服器已經安裝了redis,現在透過指令查看下redis的進程:
[root@lnp ~]# ps -aux|grep redis root 7374 0.0 0.0 145312 7524 ? Ssl 16:37 0:00 redis-server 192.168.17.105:6379 root 10692 0.0 0.0 112724 984 pts/7 S+ 16:54 0:00 grep --color=auto redis
可以看到我們的 redis-server
的服務位址為192.168.17.105
,連接埠為6379
,對外存取的時候需要指定對應的IP和連接埠:
redis-cli -h 192.168.17.105 -p 6379
找出redis安裝目錄
> whereis redis redis: /usr/local/redis
我們可以看到redis在該目錄下安裝,然後找到設定檔redis.conf
> find /usr/local/redis/ -name redis.conf /usr/local/redis/etc/redis.conf
修改設定檔:
vim redis.conf
改該設定檔即可:
# requirepass foobared requirepass 123 指定密码123
最後一步,重新載入設定檔即可:
redis-server /usr/local/redis/etc/redis.conf
透過密碼-a
訪問:
> redis-cli -h 192.168.17.105 -p 6379 -a 123
運行結果:
[root@lnp etc]# redis-cli Could not connect to Redis at 127.0.0.1:6379: Connection refused Could not connect to Redis at 127.0.0.1:6379: Connection refused not connected> exit [root@lnp etc]# redis-cli -h 192.168.17.105 -p 6379 192.168.17.105:6379> keys * (error) NOAUTH Authentication required. 192.168.17.105:6379> exit [root@lnp etc]# redis-cli -h 192.168.17.105 -p 6379 -a 123 Warning: Using a password with '-a' option on the command line interface may not be safe. 192.168.17.105:6379> keys * (empty list or set) 192.168.17.105:6379> exit
相關推薦:
#以上是Linux下如何設定redis存取密碼(程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!