jedis 连接 redis:Could not get a resource from the pool——我的出错原因和解决办法

Posted quietwalk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jedis 连接 redis:Could not get a resource from the pool——我的出错原因和解决办法相关的知识,希望对你有一定的参考价值。

 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

 

以上是关于jedis 连接 redis:Could not get a resource from the pool——我的出错原因和解决办法的主要内容,如果未能解决你的问题,请参考以下文章

jedis连接集群报Could not get a resource from the pool错误

redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool(示例代码

redis.clients.jedis.exception.JedisConnectionException:Could not get a resource from the pool

redis中 Could not get a resource from the pool 异常解决

java 连接 redis集群时报错:Could not get a resource from the pool

redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool