美文网首页码农的世界
就在刚刚,我干掉了18年最后一个bug

就在刚刚,我干掉了18年最后一个bug

作者: KKyKK | 来源:发表于2018-12-31 20:53 被阅读1次

刚才部署项目的时候报了个异常
Cannot get Jedis connection 用过redis的估计都见过这样异常,连接不上redis嘛,ok小问题。
登录redis服务器先使用netstat命令看下redis是否启动,没问题,已经启动,
使用redis-cli 登录确认密码是否正确,同样没问题,
那就修改一下配置文件的连接池,再次启动还是同样的异常
嘶 ~ 好吧!接着翻log!
看到了这样一段话

DENIED Redis is running in protected mode because protected mode is enabled, no bind address was specified, no authentication password is requested to clients. In this mode connections are only accepted from the loopback interface. If you want to connect from external computers to Redis you may adopt one of the following solutions:
Just disable protected mode sending the command 'CONFIG SET protected-mode no' from the loopback interface by connecting to Redis from the same host the server is running, however MAKE SURE Redis is not publicly accessible from internet if you do so. Use CONFIG REWRITE to make this change permanent. Alternatively you can just disable the protected mode by editing the Redis configuration file, and setting the protected mode option to 'no', and then restarting the server.
If you started the server manually just for testing, restart it with the '--protected-mode no' option. Setup a bind address or an authentication password. NOTE: You only need to do one of the above things in order for the server to start accepting connections from the outside.

redis为保护模式启动
可我明明已经设置了密码,为什么还是保护模式
翻翻百度看到了一个回答说 redis没有绑定IP
回来使用netstat命令重新看一下redis端口,果然显示127.0.0.1 (因为这台服务器上的redis是刚刚安装的)
打开配置文件 在address后面加上服务器外网ip
重新启动tomcat,打开项目主页,成功访问。搞定!

相关文章

  • 就在刚刚,我干掉了18年最后一个bug

    刚才部署项目的时候报了个异常Cannot get Jedis connection 用过redis的估计都见过这样...

  • 删掉最后一个微商听课群,我如释重负

    就在刚刚,我删掉了遗留下来的最后一个微商听课群。 不可否认,我是存了做生意的心思,所以两年前尝试了...

  • 王者荣耀里的bug是什么

    bug是什么,说实话我之前是没有听过的,当然也就不知道是什么了。但是就在刚刚我打排位的时候我的诸葛亮被bug。我大...

  • 就在刚刚

    扎西朗姆·多多 转载人:陈诗瑶 在刚刚 已经把你喜欢了一遍 也没有征求你的同意 也不知道是深是浅 总之 这个下午的...

  • 就在刚刚

    刚刚看到一个小女孩抱着一只很小的橘猫不知道为什么我就跟上去跟她说小朋友,这猫是你自己养的吗,她说是啊,然后她的奶奶...

  • 就在刚刚

    就在刚刚 已经把你喜欢了一遍 也没有征求你的同意 也不知道是深是浅 总之 这个下午的生命算是因为你而有些...

  • 就在刚刚

    就在刚刚 ‌又把你喜欢了一遍 也没有征求你的同意 也不知道是深是浅 总之 这个下午的生命 算是因为你而有些不同吧 ...

  • 就在刚刚

    就在刚刚 已经为你写了一篇 也没有征求你的同意 更不知道是喜是忧 总之,我算是表白过了 就像春天来到我的窗前 轻轻...

  • 就在刚刚

    我喜欢了他好久,久到我不知道时间过得那么快,久到他从未知道我喜欢他........ 就在刚刚,我收到了你的消息,你...

  • 就在刚刚

    就在刚刚 令人舌头发麻的药丸 就着你温暖的声音 不知不觉从喉间滑落 夹着一丝甜 就在刚刚 闷热的房间里 合着轻柔的...

网友评论

    本文标题:就在刚刚,我干掉了18年最后一个bug

    本文链接:https://www.haomeiwen.com/subject/wnbwlqtx.html