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

来源:互联网 发布:手机必备实用软件 编辑:程序博客网 时间:2024/05/18 13:25

redis报错:

java.net.ConnectException: Connection refused: connect

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


错误原因:

无法从redis中获取连接


解决思路:

是否安装redis server

是否启动redis server

redis配置文件中,maxActive值是否合适(过小易引起该问题)


我当时没安装redis server就从java连接了。。redis需要下载,不是引入jar包就可以的。。

0 0