CentOS安装Redis
1 |
|
启动
1 | service redis start |
客户端
1 | redis-cli |
配置文件
1 | /etc/redis.conf |
修改为允许远程连接
1 | bind ip注释掉 |
打开防火墙端口,
1 | vim /etc/sysconfig/iptables |
重启防火墙,重启redis
1 | service iptables restart |
如果发现redis没有重启,
1 | ps -ef | grep redis |
找到,kill, start
远程测试
1 | redis-cli -h 192.168.2.22 |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Ryan Miao的博客!
评论