我可以在服务器上ping pong redis
# redis-cli ping PONG
但远程遇到问题:
$ src/redis-cli -h REMOTE.IP ping Could not connect to Redis at REMOTE.IP:6379: Connection refused
在配置我有标准端口:
# Accept connections on the specified port,default is 6379. # If port 0 is specified Redis will not listen on a TCP socket. port 6379
所以也许我应该在远程ubuntu计算机上打开端口6379?怎么做?
您是否将绑定选项设置为允许在redis服务器上进行远程访问?
原文链接:https://www.f2er.com/ubuntu/351472.html之前
bind 127.0.0.1
后
bind 0.0.0.0
然后重新启动redis服务器。如果这不是问题,你可能想检查任何可能阻止访问的防火墙。
重要提示:如果不使用防火墙(iptables,ufw ..)来控制谁连接到正在使用的端口,任何人都可以连接到此Redis实例。没有使用Redis’ AUTH
意味着任何人都可以访问/更改/删除您的数据。注意安全!