数据库
首页 > 数据库> > Redis 配置远程连接

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 <密码>

标签:配置文件,0.0,redis,连接,bind,Redis,远程
来源: https://www.cnblogs.com/yizhouiqpl/p/16484487.html