Redis 配置远程连接

2022/7/17 2:15:05

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

修改 Redis 的配置文件 /etc/redis.conf

# bind 127.0.0.1 -::1
bind 0.0.0.0
protected-mode no
requirepass 123456

连接即可

# h - host, p - port, a - auth
redis-cli -h <ip地址> -p <端口6379> -a <密码>


这篇关于Redis 配置远程连接的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程