在用软件RedisDesktopManager连接虚拟机中centos中redis服务,centos中是可以上网的,并且在外部主机是可以ping的,为此查了很多原因,也修改了redis.conf文件中的bind127.0.0.1也不行,后来查到原来是防火墙的问题,所以需要禁用防火墙
停止使用firewall
>systemctl stop firewalld.service #停止firewall
禁止在开机启动
>systemctl disable firewalld.service
如果不行再执行端口映射
firewall-cmd --zone=public --add-port=6379/tcp --permanent