我将端口号从6379更改为6380,但redis仍尝试通过默认端口进行连接。
它表示连接被拒绝,无法通过127.0.0.1连接6379.我该怎么办?
答案 0 :(得分:1)
命令redis-cli -p 6380
将无法启动将侦听端口6380的Redis服务器。
如果要更改端口,必须先删除在默认端口上运行的redis实例,然后找到redis.conf
文件。
编辑线条:
# Accept connections on the specified port, default is 6379.
# If port 0 is specified Redis will not listen on a TCP socket.
port 6379
cluster-config-file nodes-6379.conf
使用您的新端口。
最后,使用编辑过的配置文件启动Redis:
./redis-server /path/to/redis/redis.conf
答案 1 :(得分:0)
检查是否有正在使用6379的进程。在MacOS上,运行:
lsof -i :6380
然后杀死使用该端口的任何东西。确保在确定端口空闲后,终止在6379上运行的redis实例并在6380上重新启动它。