redis.clients.jedis.exceptions.JedisException: Could not get a resource from the pool
redis.clients.jedis.exceptions.JedisException: Could not get a resource from the pool问题描述问题原因1,是客户端未从连接池(这里是未设置redis最大连接数)中获取到Jedis的可用连接池导致发现我的最大连接数没有问题设置了200足够<!--Jedis连接池的相关配置--><bean id="j
·
redis.clients.jedis.exceptions.JedisException: Could not get a resource from the pool
问题描述
问题原因
1,是客户端未从连接池(这里是未设置redis最大连接数)中获取到Jedis的可用连接池导致
发现我的最大连接数没有问题设置了200足够
<!--Jedis连接池的相关配置-->
<bean id="jedisPoolConfig" class="redis.clients.jedis.JedisPoolConfig">
<property name="maxTotal">
<value>200</value>
</property>
<property name="maxIdle">
<value>50</value>
</property>
<property name="testOnBorrow" value="true"/>
<property name="testOnReturn" value="true"/>
</bean>
2,是redis中没有关闭保护模式,即不允许非本机的ip连接进入客户端,所以我的连接请求会被拒绝
在本地Centos7中,首先保证开启了Redis服务端,后再在虚拟机中打开客户端,然后进入成功后输入:config set protected-mode "no"关闭包含模式
不过我的保护机制是关闭的所以不行
3 ,我们是远程连接redis注意要把它的ip绑定为远程的就是把 bind 127.0.0.1注释掉
我的也已注释不是这个原因
4 ,不允许非本地客户端链接,我们可以通过给redis设置密码,然后客户端链接的时候,写上密码就可以解决了
出现以上错误是因为:redis目前处于受保护模式,不允许非本地客户端链接,我们可以通过给redis设置密码,然后客户端链接的时候,写上密码就可以解决了
两种方式:
方式一:在redis.conf配置文件中:requirepass 123456
方式二:用客户端登录
A.查看密码 config get requirepass
B.设置密码 config set requirepass 123456
C.设置密码后,客户端连接 redis 服务就需要密码验证,否则无法执行命令:输入 AUTH 123456
成功了!!!
更多推荐
已为社区贡献1条内容
所有评论(0)