如果不加密码,默认只能本机访问,加密码也是为了安全考虑
1.进入Redis 的安装目录,找到redis.conf文件。用vi命令打开文件 输入 / requirepass 进行查找,输入n查找下一个。
(最好复制一个新的conf文件)
在红背景处设置密码
2.重启 Redis
[root@pmserver src]# ./redis-cli shutdown
[root@pmserver src]# ./redis-server ../redis.conf &
../redis.conf 如果不指定配置文件,将使用默认配置启动。密码将不起作用,这里配置文件没有复制一份,用的Redis自动的配置文件
& 符号表示后台启动。
3.测试,此时使用命令将提示要授权
4.远程测试
Redis Desktop Manager 是一个不错的开源 Redis 客户端管理工具。
-------------
客户端连接方法: redis-cli -h localhost -p 6380 提供host为localhost,端口为6380 带密码的客户端连接方法一: redis-cli -h localhost -p 6380 monitor -a 123456 监控host为localhost,端口为6380 -a 为连接密码 密码验证方法二: 在命令行输入:auth 123456 #123456是密码 windows下的客户端软件: Redis Desktop Manager