java.net.ConnectException: Connection refused: no further information

Redis连接异常java.net.ConnectException: Connection refused: no further information

首先我们排除ip以及端口号的配置错误以及服务器防火墙的问题,这里主要就是说redis.conf的配置问题

  • 打开redis.conf,找到bind 127.0.0.1这项,直接注释,或者在空格后添加你项目运行的主机的IP地址,例:bind 127.0.0.1 192.168.131.1(我是直接注释掉的)
  • 然后找到protected-mode yes这项,改为protected-mode no
  • 再找到stop-writes-on-bgsave-error yes这项 修改为stop-writes-on-bgsave-error no

嗯,就这样

你可能感兴趣的:(问题记录,redis,java)