配置Redis
配置相关redis.conf
- bind 127.0.0.1 注释掉
否则其它远程计算机无法用本机ip进行远程连接
- stop-writes-on-bgsave-error yes 改为no
强行关闭reids时(如ctrl+c操作)会导致redis生成快照失败,进而导致redis持久化到磁盘错误.最后会出现能够连接到远程的redis,但是在redis中ping收不到pong反而会抛出error.
- protected-mode yes 改为no
能连接到redis,但不能查询数据,例如命令select 5;
- appendonly no 是否再后台运行
- port 6379 默认是6379
- pidfile ./redis.pid pid文件存储路径
- dir ./ 持久化文件储存路径
slave-read-only no
时间: 2024-10-07 05:34:46