Skip to content
Advertisement

RabbitMQ Connection reset Exception

I have the same issue from this question: RabbitMQ Connection reset. My code is in kotlin and from https://www.rabbitmq.com/ssl.html#java-client-connecting.

JavaScript

I have RabbitMQ configured this way:

JavaScript

I tested this: https://www.rabbitmq.com/troubleshooting-ssl.html#sclient-connection and getting result in cmd:

JavaScript

RabbitMQ log (1 attempt to connect):

JavaScript

And exception, it’s coming from line with “val connection = connectionFactory.newConnection()”

JavaScript

When I try to check TLS support in Erlang https://www.rabbitmq.com/troubleshooting-ssl.html#verify-tls-support-in-erlang I’m getting this in log:

JavaScript

I also tried to configure SSLContext for connectionFactory.useSslProtocol(SSLContext sslContext) method, but output is the same except string about trust manager, just exception. I can’t understand where’s a problem

Advertisement

Answer

Ok, so the answer is quite simple: you need to add a backslash for your path if you using Windows. Path will be {cacertfile, “\path\to\rootCA.pem”}.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement