使用自制程序安装Redis,但当我尝试ping Redis时,它显示这个错误:

Could not connect to Redis at 127.0.0.1:6379: Connection refused

注意: 我尝试关闭防火墙并编辑conf文件,但仍然无法ping通。 我使用的是macOS Sierra和自制版本1.1.11


当前回答

我发现这个问题,同时试图弄清楚为什么我不能连接到redis后启动它通过brew服务启动redis。

博士tl;

取决于你的机器或安装的更新程度,你可能会丢失一个配置文件或redis默认目录。

你需要一个配置文件在/usr/local/etc/redis.conf。没有这个文件redis-server将无法启动。您可以复制默认配置文件,并从那里修改它 Cp /usr/local/etc/redis.conf.default /usr/local/etc/redis.conf.default 你需要/usr/local/var/db/redis/存在。这很容易做到 Mkdir -p /usr/local/var/db/redis

最后用brew services重启redis。

你是怎么发现的!?

我浪费了很多时间试图弄清楚redis是否没有通过homebrew使用默认设置,以及它在哪个端口上。服务是误导性的,因为即使redis-server实际上没有启动,brew服务列表仍然会显示redis为“已启动”。最好的方法是使用brew服务——详细启动redis,它会显示日志文件在/usr/local/var/log/redis.log。我在里面找到了确凿的证据

Fatal error, can't open config file '/usr/local/etc/redis.conf'

or

Can't chdir to '/usr/local/var/db/redis/': No such file or directory

幸运的是,日志使上述解决方案变得显而易见。

我不能运行redis-server吗?

你当然可以。如果你运行redis-server &,它只会占用一个终端或偶尔打断你的终端。它也会把转储。RDB在您运行它的任何目录中(pwd)。我很讨厌在git中删除文件或忽略它,所以我想让brew用服务来做这项工作。

其他回答

首先,您需要使用以下命令启动/启动所有redis节点,一个接一个地启动所有的conf文件。 @注:如果你正在建立集群,那么你应该有6个节点,3个主节点和3个从节点。Redis-cli将使用——cluster命令从6个节点中自动选择主节点和从节点,如下所示。

[xxxxx@localhost redis-stable]$ redis-server xxxx.conf 

然后运行

[xxxxx@localhost redis-stable]$ redis-cli --cluster create 127.0.0.1:7000 127.0.0.1:7001 127.0.0.1:7002 127.0.0.1:7003 127.0.0.1:7004 127.0.0.1:7005 --cluster-replicas 1

上述输出应如下:

    >>> Performing hash slots allocation on 6 nodes...

自动设置所有东西的第二种方法: 您可以使用utils/create-cluster脚本来设置您喜欢的任何东西 启动所有节点,创建集群 你可以关注https://redis.io/topics/cluster-tutorial

谢谢

我在这件事上耽搁了很长时间。经过多次尝试,我终于能够正确地配置它了。

产生误差的原因有很多。我试图提供原因和解决方案,以克服这种情况。确保正确安装了redis-server。

6379 Port is not allowed by ufw firewall. Solution: type following command sudo ufw allow 6379 The issue can be related to permission of redis user. May be redis user doesn't have permission of modifying necessary redis directories. The redis user should have permissions in the following directories: /var/lib/redis /var/log/redis /run/redis /etc/redis To give the owner permission to redis user, type the following commands: sudo chown -R redis:redis /var/lib/redis sudo chown -R redis:redis /var/log/redis sudo chown -R redis:redis /run/redis sudo chown -R redis:redis /etc/redis. Now restart redis-server by following command: sudo systemctl restart redis-server

希望这对某些人有所帮助。

在自制MacOS上有这个问题吗?问题是/usr/local/var/log目录上缺少某种权限,见这里的问题

为了解决这个问题,我删除了/usr/local/var/log并重新安装redis

日期:2021年12月

这个错误有几个原因。我读了一篇文章来解决这个问题。所以我就逐一总结一下要检查什么。

1检查:Redis-Server未启动

redis-server

Also to run Redis in the background, the following command could be used.

redis-server --daemonize yes

2. 检查:防火墙限制

sudo ufw status (inactive)
sudo ufw active (for making active it might disable ssh when first time active. So enable port 22 to access ssh.)
sudo ufw allow 22
sudo ufw allow 6379

3.检查:资源使用情况

ps -aux | grep redis

4. 配置设置限制

sudo vi /etc/redis/redis.conf.

注释下面的行。

# bind 127.0.0.1 ::1

注意:恶意行为者将更难发出请求或访问您的服务器。确保您绑定到正确的IP地址网络。

希望它能帮助到别人。欲了解更多信息,请阅读下面的文章。

https://bobcares.com/blog/could-not-connect-to-redis-connection-refused/

试试这个:

sudo service redis-server restart