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

时间: 2024-11-09 05:27:55

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

通过jedis连接redis单机成功,使用redis客户端可以连接集群,但使用JedisCluster连接redis集群一直报Could not get a resource from the pool

一,问题描述: (如题目)通过jedis连接redis单机成功,使用JedisCluster连接redis集群一直报Could not get a resource from the pool 但是使用redis客户端可以连接集群(我使用的redis desktop manager) 在java中通过jedis连接redis单机也成功,但使用JedisCluster连接redis集群一直报Could not get a resource from the pool, 我以命令行方式操作是没问题的

redis使用问题一:Cannot get Jedis connection; nested exception is redis.clients.jedis.exceptions.JedisException: Could not get a resource from the pool] with root cause

首先说下redis最简单得使用,出去配置. 需要在你要使用得缓存得地方,例如mybatis在mapper.xml中加入: <cache eviction="LRU" type="cn.jbit.cache.RedisCache"/> 由于是第一次使用redis,再调试代码得时候报错:Cannot get Jedis connection; nested exception is redis.clients.jedis.exceptions.JedisEx

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

今天在链接redis时,遇到问题: redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool Could not get a resource from the pool. redis的配置是: <bean id="jedisPoolConfig" class="redis.clients.jedis.JedisPoolConfig&qu

使用jedis连接redis可能会出现的问题及解决方案

使用jedis连接redis可能会出现的问题及解决方案: 1)ip绑定问题 Connection refused: connect 把Redis的配置文件redis.conf里的 bind localhost(或者bind 127.0.0.1,表明只有该主机才能访问)注释掉. 或者修改为: bind ip     表明,只能通过ip访问. 2).保护模式 DENIED Redis is running in protected mode because protected mode is ena

Java链接Redis时出现 “ERR Client sent AUTH, but no password is set” 异常的原因及解决办法

[错误提示] redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the poolat redis.clients.util.Pool.getResource(Pool.java:53)at redis.clients.jedis.JedisPool.getResource(JedisPool.java:226)at cn.hncu.RedisPool.getJedis(Re

Jedis连接Redis三种模式

这里说的三种工作模式是指: 1.单机模式 2.分片模式 3.集群模式(since 3.0) 说明图详见以下: 使用单机模式连接: 1 private String addr="192.168.1.1"; 2 private String port="6236"; 3 private String key="key"; 4 private Jedis jedis=new Jedis(addr,port);//Jedis获取到的Redis数据在jed

关于Jedis连接redis出现问题

环境说明: redis服务器系统:ubuntu ip 192.168.10.9 port 6379 两台电脑:一个作为专门的服务器,一个是开发环境 就这样的简单的代码连接redis服务器 import redis.clients.jedis.Jedis; public class Test { public static void main(String[] args) { Jedis jedis = new Jedis("192.168.10.9"); jedis.auth(&quo

Jedis连接redis

今天与大家分享下,Jedis连接池使用.先看一段JAVA 代码:         JedisPoolConfig config = new JedisPoolConfig();         config.setMaxIdle(100);         JedisPool pool = new JedisPool(config, "ip地址", 6379);         return pool.getResource(); 这段代码是最简单连接redis的连接池代码,单机连接,

Jedis连接redis客户端

1 单点的redis利用jedis客户端连接 如何连接 1 //1 利用jedis连接对象操作redis 2 @Test 3 public void test01(){ 4 //构造一个具有连接信息的jedis对象 5 //确定虚拟机linux系统的端口是开放的? 防火墙 6 Jedis jedis=new Jedis("192.168.60.131", 6379); 7 jedis.set("name", "hanlaoshi"); 8 jed