首页 > 代码库 > Redis 服务端配置——Could not connect to Redis at 127.0.0.1:6379: Connection refused
Redis 服务端配置——Could not connect to Redis at 127.0.0.1:6379: Connection refused
[root@centoszang 桌面]# redis-cliCould not connect to Redis at 127.0.0.1:6379: Connection refusedCould not connect to Redis at 127.0.0.1:6379: Connection refusednot connected> exit[root@centoszang 桌面]# redis-server /etc/redis.conf[root@centoszang 桌面]# redis-cli127.0.0.1:6379>
在使用Redis时,开始就遇到了问题,客户端打不开,原因是需要先开启服务端,这需要先配置——
1.下载好redis安装包,解压安装之后,复制其配置文件redis.conf 到etc 文件夹下
cd /opt/redis-3.2.8
cp redis.conf /etc
2. 进入etc,找到redis.conf 并修改 daemonize no(第128行) 为 daemonize yes ,这样就可以默认启动就后台运行
3. 开启客户端要确保服务端启动
redis-server /etc/redis.conf
4.启动客户端不成功要退出再进行下一步
Redis 服务端配置——Could not connect to Redis at 127.0.0.1:6379: Connection refused
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。