非官方地址
GitHub - uglide/RedisDesktopManager: Cross-platform Developer GUI for Redis
有现成的
配置ip地址,redis的密码,用户名没有可以不写
本地redis.conf配置
1,开放6379端口
1.bind 127.0.0.1 修改为 bind 0.0.0.0
127.0.0.1 表示只允许本地访问,无法远程连接
0.0.0.0 表示任何ip都可以访问2.protected-mode yes 改为 protected-mode no
yes 保护模式,只允许本地链接
no 保护模式关闭3.daemonize yes 改为 daemonize no
yes: 代表开启守护进程模式。此时是单进程多线程的模式,redis将在后台运行。
no: 当前界面将进入redis的命令行界面,exit强制退出或者关闭连接工具都会导致redis进程退出
最后重启redis服务
redis-server redis.conf
或者
重启redis:systemctl restart redis.service
PS:还是不行的话,使用命令systemctl status firewalld检查防火墙是否关闭
使用命令systemctl stop firewalld关闭防火墙