1. Redisson创建异常
日志中只看出redisson create exception
debug -> step over ->主要观察Variables中的E和EX
java.net.MalformedURLException: Invalid authority field: [http: |
---|
原因:
spring.redis.host误配置了 host: http://192.168.6.129,而它应该是"redis://",类中已经配置_ADDRESS_PREFIX _= “redis://“,去掉“http://”后正常启动。
2.redis连接异常
日志第一行就看到Unable to connect to Redis server: /192.168.6.129:6379
redis未启动!
首先,查看该服务器redis是否启动,其次查看客户端是否可以连接服务器的redis。