redis客户端连接问题

1.java.net.ConnectException: Connection refused
拒绝连接
需要找到redis.conf文件,将以下这行注释掉

bind 127.0.0.1

2.java.net.SocketException: Connection reset
连接重置
在本地服务器上登陆redis,关闭保护模式,默认是打开的

config set protected-mode "no"

你可能感兴趣的:(redis客户端连接问题)