Replies: 2 comments 3 replies
-
@G-ruchika First of all, please do not post repeated posts. It seems Redis server closed the connection. But it should happen only for idle connections. Please post detailed stacktrace. Also, please confirm whether it is a thrown a exception or just an error log. |
Beta Was this translation helpful? Give feedback.
1 reply
-
As you are using SSL, you may try newly generated certs. You can also check the SSLParameters. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using Jedis client 4.1.0 in my spring boot application. I have deployed my app to azure and it's working fine for some time and then after 1 day of deploy getting the exception.
redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketException: Connection or outbound has closed
Defined the Jedis connection details in application yml and creating the Jedis client like this .
new Jedis(hostName, port, DefaultJedisClientConfig.builder()
.password(password)
.ssl(useSsl)
.build());
Any suggestion how i can fix this issue?
Thanks!.
Beta Was this translation helpful? Give feedback.
All reactions