How to receive stdio and error_logger messages on a remote shell
After spending a good while getting rb to work on a remote shell, I would like to get stdio / error logger messages on a remote shell, I have dug around changing group_leaders but it would seem to require changing the group_leader of all the running process, and my experiments have found that to be pret开发者_开发问答ty unstable.
The most straightforward way would be to not to mess with erlang io subsystem, but to use standard ERTS tools. 1 Start emulator with stdin/stdout wrapper/logger:
run_erl -daemon /tmp/ /some/log/dir erl
2 Then do:
ssh localhost -tt to_erl /tmp/
- makes emulator to start with pipes attached to stdin and stdout placed into /tmp and circular log files of stdin and stdout plus node liveness marks placed into /some/log/dir. Quick and dirty audit log for shell activity :)
- connects to stdin and stdout pipes. Benefit of "ssh -tt" is working completion in shell.
For more hints see "$ERL_TOP/erts*/bin/start" and man page for 'run_erl' and 'to_erl': http://www.erlang.org/doc/man/run_erl.html
精彩评论