码迷,mamicode.com
首页 > 其他好文 > 详细

Redis (error) NOAUTH Authentication required.解决方法

时间:2017-08-21 14:51:20      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:toc   plain   lan   blank   post   log   command   sdn   auth   

出现认证问题,应该是设置了认证密码,输入密码既可以啦

注意密码是字符串形式!

[plain] view plain copy
  1. 127.0.0.1:6379> auth "yourpassword"  

例如密码是‘root’,当出现认证问题时候,输入“auth ‘root’”即可

[plain] view plain copy
  1. 127.0.0.1:6379> set name "hello"  
  2. (error) NOAUTH Authentication required.  
  3. 127.0.0.1:6379> (error) NOAUTH Authentication required.  
  4. (error) ERR unknown command ‘(error)‘  
  5. 127.0.0.1:6379> auth "root"  

可以进入

127.0.0.1:6379> auth "root"
OK

 

 
 

Redis (error) NOAUTH Authentication required.解决方法

标签:toc   plain   lan   blank   post   log   command   sdn   auth   

原文地址:http://www.cnblogs.com/xingzc/p/7404108.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!