預設Redis Server以預設狀態運作
若需要載入指定的設定檔
需自行建立redis.conf
並以如
redis-server /usr/local/etc/redis/redis.conf 執行
redis.conf設定檔的內容為
bind 0.0.0.0 #允許remote連線
requirepass 12345 #設定連線密碼
測試是否設定正確可以使用redis-cli進行測試
1.安裝redis-cli工具
sudo apt-get install redis-tools
2.要驗證是否允許remote連線成功
redis-cli -h 192.168.0.99 -p 6379
透過redis-cli就可以連線進去
3.要驗證密碼的部份 則是要透過查詢才會知道
192.168.0.99:6379> keys *
(error) NOAUTH Authentication required.
4.確定會被要求密碼,以auth 輸入密碼
192.168.0.99:6379> auth xxx
OK