赞
踩
刚接触redis时遇到的问题,记录下来希望可以帮助到踩到同样坑的朋友~~~有问题欢迎大家指正,不胜感激 ^ ^
redis.clients.jedis.exceptions.JedisConnectionException: Failed connecting to host xxxx.xxx.xxx.xxx:port
检查端服务器地址+端口号 → 感觉很弱的地方也是经常可能出错的……
没问题的话,NEXT>>>
查看redis是否正常启动
[root@localhost redis]# ps -ef | grep redis
root 2765 2716 0 19:20 pts/0 00:00:00 redis-server *:6379
root 2775 2716 0 19:22 pts/0 00:00:00 grep redis
如果报的是redis的启动异常,将redis关闭后重新启动
[root@localhost redis]# redis-cli -p 6379 shutdown
[root@localhost redis]# redis-server redis.conf
修改redis.conf文件》》》按说安装的时候就应该修改下的
#打开文件进行编辑
[root@localhost redis]vim redis.conf
# 显示下行号吧
:set nu
建议改三个地方
保存退出
# 按ESC
:wq
重新启动
[root@localhost redis]redis-server redis.conf
关闭服务器端的防火墙
其实这步应该最先检查的= =》》》我报错就是因为这个原因
[root@localhost redis]# service iptables stop
启动成功
打开客户端
[root@localhost redis]# redis-cli
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。