异常:Could not connect to Redis at 127.0.0.1:6379: Connection refused
原因:redis服务端守护进程未开启
解决:redis.conf中的 daemonize no -> daemonize yes
积累:
1、找到redis.conf 文件:find *redis.conf*
2、在redis.conf文件中准确定位到deamonize参数: vi +/pattern filename
类似(cat filename | grep pattern);vi +n filename(定位到指定行)
3、修改redis.conf 后生效:redis-server redis.conf(在此文件所在目录下)
4、启动redis:redis-cli
5、验证启动:ping pong
网友评论