Trying to get the erlang client to be able to connect to a local rabbit node and am having some issues.<br><br>I start rabbit normally via rabbitmqctl, nothing special here.<br><br>I then start a separate erl shell (with paths to the erlang rabbit client specified) and try this command:<br>
amqp_connection:start(&quot;guest&quot;, &quot;guest&quot;, &quot;localhost&quot;).<br><br>This hangs forever.<br><br>The rabbit log looks like this:<br><br>=INFO REPORT==== 23-Apr-2009::16:40:07 ===<br>started TCP listener on <a href="http://0.0.0.0:5672">0.0.0.0:5672</a><br>
<br>=INFO REPORT==== 23-Apr-2009::16:40:19 ===<br>accepted TCP connection on <a href="http://0.0.0.0:5672">0.0.0.0:5672</a> from <a href="http://127.0.0.1:1649">127.0.0.1:1649</a><br><br>=INFO REPORT==== 23-Apr-2009::16:40:19 ===<br>
starting TCP connection &lt;0.138.0&gt; from <a href="http://127.0.0.1:1649">127.0.0.1:1649</a><br><br>=ERROR REPORT==== 23-Apr-2009::16:40:29 ===<br>error on TCP connection &lt;0.138.0&gt; from <a href="http://127.0.0.1:1649">127.0.0.1:1649</a><br>
{handshake_timeout,frame_header}<br><br>=INFO REPORT==== 23-Apr-2009::16:40:29 ===<br>closing TCP connection &lt;0.138.0&gt; from <a href="http://127.0.0.1:1649">127.0.0.1:1649</a><br><br><br>Any ideas?<br>