Linux中如何设置访问redis-server的密码?
短信预约 -IT技能 免费直播动态提醒
今天服务器安装了redis,为了安全设置一下访问redis-server的密码。
一、查找redis.conf文件
我们服务器已经安装了redis,现在通过命令查看下redis的进程:
[root@lnp ~]# ps -aux|grep redis
root 7374 0.0 0.0 145312 7524 ? Ssl 16:37 0:00 redis-server 192.168.17.105:6379
root 10692 0.0 0.0 112724 984 pts/7 S+ 16:54 0:00 grep --color=auto redis
可以看到我们的redis-server的服务地址为192.168.17.105,端口为6379,对外访问的时候需要指定对应的IP和端口:
redis-cli -h 192.168.17.105 -p 6379
查找redis安装目录
> whereis redis
redis: /usr/local/redis
我们可以看到redis在该目录下安装,然后找到配置文件redis.conf
> find /usr/local/redis/ -name redis.conf
/usr/local/redis/etc/redis.conf
修改配置文件:
vim redis.conf
改该配置文件即可:
# requirepass foobared
requirepass 123 指定密码123
最后一步,重新加载配置文件即可:
redis-server /usr/local/redis/etc/redis.conf
二、连接测试
通过密码-a访问:
> redis-cli -h 192.168.17.105 -p 6379 -a 123
运行结果:
[root@lnp etc]# redis-cli
Could not connect to Redis at 127.0.0.1:6379: Connection refused
Could not connect to Redis at 127.0.0.1:6379: Connection refused
not connected> exit
[root@lnp etc]# redis-cli -h 192.168.17.105 -p 6379
192.168.17.105:6379> keys *
(error) NOAUTH Authentication required.
192.168.17.105:6379> exit
[root@lnp etc]# redis-cli -h 192.168.17.105 -p 6379 -a 123
Warning: Using a password with '-a' option on the command line interface may not be safe.
192.168.17.105:6379> keys *
(empty list or set)
192.168.17.105:6379> exit
以上就是Linux下设置redis访问密码的方法的详细内容,更多请关注亿速云其它相关文章!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341