Could not connect to Redis at 127.0.0.1:6379: Connection refused not connected> vim redis.conf Could not connect to Redis at 127.0.0.1:6379: Connection refused
时间: 2023-07-24 15:16:45 浏览: 147
redis_6379.conf
这个错误提示表明你的程序无法连接到本地的 Redis 服务器。你需要确认 Redis 是否已经正确地安装和启动,并且是否已经监听了 127.0.0.1:6379 这个地址。你可以在终端中输入 `redis-cli ping` 命令来测试 Redis 是否能够正常连接。如果无法连接,你可以尝试检查 Redis 的配置文件,通常可以在 `/etc/redis/redis.conf` 或 `/usr/local/etc/redis.conf` 中找到。确保配置文件中的 `bind` 参数设置为 `127.0.0.1`,并且 `port` 参数设置为 `6379`。如果仍然无法解决问题,你可以检查防火墙设置或者尝试重启 Redis 服务器。
阅读全文