redis 6379端口不通解决方法

1.reids服务器的6379端口telnet不通

2. 查看reids进程和端口,都是存在的。只是ip地址是127.0.0.1而不是0.0.0.0,只是本机能使用

3.查找redis的配置文件redis.conf

  使用命令:find / -name redis.conf

redis 6379端口不通解决方法_第1张图片

 4.查找bind 127.0.0.1所在的行数

   使用命令:cat /usr/local/redis/bin/redis.conf|grep bin -n

redis 6379端口不通解决方法_第2张图片

5. 编辑配置文件vim /usr/local/redis/bin/redis.conf

    bind 127.0.0.1修改为bind 0.0.0.0

6.重启redis-server

你可能感兴趣的:(中间件)