目录
1. Redis-Desktop-Manager连接需要四个参数
1. Redis-Desktop-Manager连接需要四个参数
Name:自定义连接名
Host:redis服务器地址,在CentOS终端中使用命令:
ifconfig
该命令显示的:ens33:中的inet后的地址即为redis-server host
端口:默认6379
Auth:数据库密码,通常是设置数据库config时自定义的密码
2.修改数据库配置文件
找到:# bind 127.0.0.1 ;注释掉;否则影响远程连接
protected-mode no:将保护模式由yes改为no
daemonize yes:设置默认后台开启,而不是前端开启
设置redis密码:requirepass xxxx;
3.关闭防火墙
先启动redis:
设置启动文件为自定义的文件:
redis-server /myredis/redis7.conf:
查看redis服务进程是否正常开启:
ps -ef|grep redis|grep -v grep
查看firewall的状态:
firewall-cmd --state
若结果为running则:
关闭linux防火墙:
service firewalld stop