linux redis安装以及RedisDesktopManager连接失败的情况

linux  redis安装以及RedisDesktopManager连接失败的情况

   

redis官网

         https://redis.io/download

安装

官网网页底部  偷懒了

linux redis安装以及RedisDesktopManager连接失败的情况_第1张图片

*   

RedisDesktopManager连接失败的情况

    解决方法一

 

1  修改 配置文件redis.conf

bind 127.0.0.1    改成  bind 0.0.0.0

 bind  127.0.0.1   代表本地回环地址,访问redis服务只能通过本机的客户端连接,而无法通过远程连接

  修改为:将此行注释或者讲ip改成0.0.0.0   这样就能接受所有来自于可用网络接口的连接

 

2 修改protected mode  保护模式,只允许本地链接

  修改为:protected mode no

补充 redis.conf 中的daemonize 配置

 daemonize yes 代表开启守护进程模式。此时是单进程多线程的模式,redis将在后台运行,并将pid写入redis.conf--pidfile文件中,此时redis将一直运行,除非手动kill

 daemonize no 当前界面将进入redis的命令行界面,exit强制退出或者关闭连接工具(xshell等)都会导致redis进程退出

修改配置文件后需要重启redis!!!

注:启动redis  一定要指定配置文件,否则配置文件不生效的

./src/redis-server redis.conf

 

 

解决方法二

      可以直接启动 redis服务   服务别停止

  

./src/redis-server

    linux redis安装以及RedisDesktopManager连接失败的情况_第2张图片

不过需要再新起一个redis客户端          设置密码   这个是必须的

    linux redis安装以及RedisDesktopManager连接失败的情况_第3张图片

连接成功

 linux redis安装以及RedisDesktopManager连接失败的情况_第4张图片

 

 

 

解决方法三

       如果还是不行,检测一下下列问题

      1  防火墙有没有关闭

      2  云服务器的话  6379端口是否开发

     

你可能感兴趣的:(redis,linux,redis安装)