这里我使用的是阿里云的服务器
-
打开阿里云的安全组,设置端口为6379
-
在redis.conf文件中,注释bind 127.0.0.1
-
将protected-mode设置为no,即关闭保护模式
-
更改服务器中的防火墙,放行6379端口
# 放行端口
firewall-cmd --zone=public --add-port=6379/tcp --permanent
# 重启防火墙
systemctl restart firewalld
注意在这边要关闭Redis的服务:进入redis后
127.0.0.1:6379> shudown -> 关闭服务
not connected> exit -> 退出连接
查看进程是否结束:
ps -ef | grep redis
这是进程没有关闭:
这是进程关闭了:
文章来源:https://www.toymoban.com/news/detail-834186.html
- 开启服务:
redis-server /etc/redis.conf
redis-cli -p 6379
不懂的可以留言文章来源地址https://www.toymoban.com/news/detail-834186.html
到了这里,关于如何使用idea连通服务器上的Redis(详细版本)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!