码迷,mamicode.com
首页 > 其他好文 > 详细

解决RedisDesktopManager连接不上redis问题

时间:2019-06-30 00:24:30      阅读:731      评论:0      收藏:0      [点我收藏+]

标签:补充   网络   pidfile   daemonize   server   top   客户   exit   mod   

修改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

解决RedisDesktopManager连接不上redis问题

标签:补充   网络   pidfile   daemonize   server   top   客户   exit   mod   

原文地址:https://www.cnblogs.com/df-xfz/p/11108135.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!