2018年05月02日 20:04:06 EchoShelter 閱讀數:276ui
原文地址:https://blog.csdn.net/basycia/article/details/52176025
出現這個問題,多是由於設置了密碼,可是沒有登陸,能夠嘗試進行登陸。spa
127.0.0.1:6379> auth "yourpassword"
例如密碼是‘root’,當出現認證問題時候,輸入「auth ‘root’」便可.net
127.0.0.1:6379> set name "hello" (error) NOAUTH Authentication required. 127.0.0.1:6379> (error) NOAUTH Authentication required. (error) ERR unknown command '(error)' 127.0.0.1:6379> auth "root"
能夠進入code
127.0.0.1:6379> auth "root" OK