关于Jedis无法连接上Linux上Redis问题
Posted 星小梦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于Jedis无法连接上Linux上Redis问题相关的知识,希望对你有一定的参考价值。
环境:CentOS7、Redis
主要解决Jedis客户端无法连接Linux上Redis服务问题
1、修改Redis目录下的redis.conf配置文件
注释掉bind本地回环地址:bind 127.0.0.1
如果未设置Redis认证密码,则需要设置保护模式为no:protected-mode no
2、停止CentOS7防火墙或设置规则(这里使用停止方法)
systemctl stop firewalld.service
systemctl stop iptables.service
然后就可以使用了
说明:Jedis使用jedis.auth()进行认证;redis-cli使用:redis-cli -a pass 进行认证
以上是关于关于Jedis无法连接上Linux上Redis问题的主要内容,如果未能解决你的问题,请参考以下文章
java连接redis无法连接,报异常RedisConnectionException
学习记录04 --- 使用java连接redis数据库进行操作