<div class="gmail_quote">Den 12. apr. 2012 12.26 skrev Barco You <span dir="ltr"><<a href="mailto:barcojie@gmail.com" target="_blank">barcojie@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

Dear Erlangers,<br><br>Although erlang doc has descriptions regarding these commands, but it's difficult to know how to use them in practice.<br><br>I googled but cannot find details of their usage.<br><br>Hope I can find answers at least for the following issues:<br>


<br>1. by using "erl -detached", if not indicating "-setcookie", how can I connect to this node console by using "-remsh"?<br></blockquote><div>The default cookie has the value in the file ~/.erlang.cookie. (This file is generated automatically with a random value, in case it doesn't exists.)<br>

 <br></div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">2. After successfully connect to the console of "erl -detached" through "-remsh" how can I quit from the console but keep the node still running which started by "erl -detached"?<br>

</blockquote><div>Ctrl-g, then 'q'.<br>(Or '?' to get a list of options.) <br><br></div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">


3. If use run_erl to start a node, how can I connect to its console through "to_erl"? needing to indicate "-setcookie"?<br></blockquote><div>run_erl uses a pipe file for communication. You specify the filename of that pipe when you start to_erl.<br>

  $ to_erl -help<br>  Usage: to_erl [-h|-F] [pipe_name|pipe_dir/]<br>It appears that '/tmp/erlang.pipe' is the default.<br> <br></div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">

4. Same as question 2, how to quit the to_erl without interrupting the node started by "run_erl"?<br></blockquote><div>Ctrl-D - which means "end-of-file" on Unix. I don't know if it's different on Windows.<br>

<br></div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
5. What's the difference between these to way to start erl program at backgroud?<br></blockquote><div>How to attach to them, certainly. And possibly also something about logging. I don't know the complete answer.<br>

<br></div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Appreciate all kinds of answers!</blockquote><br>The above is mostly of the "off-the-top-of-my-head" kinds :-)<br>

<br>/Erik<br></div><br>