What is the proper way to start a Go program as a daemon in Ubuntu ? I will then monitor it with Monit. Should I just do something like:
go run myapp.go &
Are there things specific to Go that I should take into account ?
|
What is the proper way to start a Go program as a daemon in Ubuntu ? I will then monitor it with Monit. Should I just do something like:
Are there things specific to Go that I should take into account ? |
|||
|
|
You should build an executable for your program (
This will give you a well-behaving unix daemon process with all necessary daemon preparations done by daemonize. |
|||||
|
|
There is a bug report regarding the ability to daemonize from within a Go program: http://code.google.com/p/go/issues/detail?id=227 But if what you are after is just detaching from the process I have seen recommendations to either do one of the following:
or
You can also make use of a process manager, like writing an |
|||
|
|