ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 124 其他机器连接本机redis * 打开配置文件,windows下的配置文件为"redis.windows-service.conf",Ubuntu下的配置文件为"redis.conf" * Ubuntu * cd /etc/redis,vim redis.conf * windows * 找到配置文件,使用notepad记事本打开 * 找到bind,进行修改绑定本机地址 ```text bind 127.0.0.1 本机地址 ``` ![](https://box.kancloud.cn/44e859f6bd1210e9d3529abf7e966a81_728x476.png) ### redis问题 -MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. Please check Redis logs for details about the error. 出现如上错误,输入以下命令即可解决 ``` config set stop-writes-on-bgsave-error no ```