解决RedisDesktopManager连接不上redis问题
作者:互联网
修改redis.conf配置文件
1、修改bind
原来:bind 127.0.0.1,代表本地回环地址,访问redis服务只能通过本机的客户端连接,而无法通过远程连接。
修改为:bind 0.0.0.0,这样就能接受所有来自于可用网络接口的连接。
2、修改protected mode
原来:protected mode yes保护模式,只允许本地链接。
修改为: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
标签:配置文件,bind,RedisDesktopManager,redis,不上,修改,daemonize,conf 来源: https://www.cnblogs.com/df-xfz/p/11108135.html