Hi all,<br><br>I read a thread (Queue Info) quite a while ago in which a user had problems using the -remsh option on Windows:<br><br>erl -sname temp -remsh rabbit@myhost <br>(rabbit@myhost1&gt;rabbit_amqqueue:stat_all().<br>
<br>I wondered if it might be easier simply to use an erlang rpc call to do the same thing.<br>
<br>As long as you use the identical erlang.cookie file (or use -setcookie on the command line) that was used to start the rabbitmq daemon, you can call any exported MFA in the context of the daemon using Erlang rpc.<br>
<br>
Example:<br>$ cat ~/.erlang.cookie<br>BGPCXKVWOUBNYKCYMHBF<br>$ erl -sname test&nbsp;&nbsp;&nbsp; # or erl -sname test -setcookie KGNBMYPYKVUOXCHBCBFW<br>(test@myhost)1&gt; rpc:call(&#39;rabbit@myhost&#39;, rabbit_amqqueue, stat_all, []).<br>

<br>Is there any special reason, other than it&#39;s easier just to type rabbit_amqqueue:stat_all(), why one would want to use erl -sname temp -remsh rabbit@myhost? Just curious.<br><br>Regards,<br>Edwin Fine<br>