Redis教程

redis可视化工具连接centos

本文主要是介绍redis可视化工具连接centos,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

想要知道如何在centos安装redis操作完整教程
请访问我搭建博客
http://awei.site/2021/12/18/centos-an-zhuang-redis/

使用redis可视化连接时必须设置redis的连接密码:123456

切换到redis.conf配置文件所在位置

[root@localhost redis]# cd /etc/redis
[root@localhost redis]# ll
总用量 92
-rw-r–r-- 1 root root 93759 12月 18 18:05 6379.conf

[root@localhost redis]# vi 6379.conf

requirepass foobared下面按i进入编辑模式添加

requirepass 123456

然后esc返回,:wq
image-20211218193528938
开放6379端口

[root@localhost redis]# firewall-cmd --zone=public --add-port=6379/tcp --permanent
success
[root@localhost redis]# firewall-cmd --reload
success
[root@localhost redis]#
image-20211218192650529

这篇关于redis可视化工具连接centos的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!