Hi folks,<br><br>I've had a rabbitmq server up for a month now in a development environment. I am using SSL and it has been working great. Over the past two days I am getting errors when I try to create a queue. Here is what I see in the server logs<br><br>Server log - =INFO REPORT==== 21-Oct-2012::09:12:44 ===<br>accepting AMQP connection &lt;0.7614.0&gt; (68.xxx.xx.xx:56366 -&gt; 10.1.1.28:5671) <b>[I have obscured the IP address]</b><br><br>=ERROR REPORT==== 21-Oct-2012::09:12:49 ===<br>error on AMQP connection &lt;0.7614.0&gt;: {ssl_upgrade_error,timeout}<br><br>In my java client I get the following error - Remote host closed connection during handshake.<br><br>Here is the cert config I am using on the server <br>[<br>&nbsp;&nbsp; {rabbit, [<br>&nbsp;&nbsp;&nbsp;&nbsp; {ssl_listeners, [5671]},<br>&nbsp;&nbsp;&nbsp;&nbsp; {tcp_listeners, [{"127.0.0.1",5672}]},<br>&nbsp;&nbsp;&nbsp;&nbsp; {ssl_options, [{cacertfile,"/usr/lib/scalegrid/certs/ca/cacert.pem"},<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {certfile,"/usr/lib/scalegrid/certs/server/cert.pem"},<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {keyfile,"/usr/lib/scalegrid/certs/server/key.pem"},<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {fail_if_no_peer_cert,false}]}<br>&nbsp;&nbsp; ]}<br>].<br><br>The certs are self signed certs and not trusted. Any thoughts on how I can debug this error?<br><br><br>