How can I run the Erlang virtual machine as a daemon?

I would like to run Erlang VM as a daemon on a UNIX server in silent mode

+6
source share
2 answers

The easiest way to give erl the -detached flag.

However, there are many helpers for this, check the debug handling of versions, erlrc and run_erl.

+15
source

Also, rebar can generate a node that can be started as a daemon (using the start, stop, restart commands).

+6
source

Source: https://habr.com/ru/post/890489/


All Articles