windows 下安装的,本机使用
现象:刚装好开发使用好好的, 重启电脑后就报这个错
网上的所有可能都试过,没有用。
最后,放弃所有包装,用最原始的代码进行连接测试:
Jedis jedis=new Jedis("127.0.0.1"); jedis.auth("7777");//password jedis.set("firstKey", "hello redis!");
ERR Client sent AUTH, but no password is set
于是,重新设置密码:
redis 127.0.0.1:6379> CONFIG SET requirepass "123456" OK redis 127.0.0.1:6379> AUTH 123456 Ok
问题解决!!!
可是,我之前明明设置了密码的,为什么一重启密码就不起作用了呢?
于是,关掉服务器,再打开,重新跑了一下测试代码,玛尼???这个错误又出来啦!!!
参见:
http://blog.csdn.net/rchm8519/article/details/48347797