How to start a Go program as a daemon in Ubuntu?

后端 未结 2 1537
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-04 08:49

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 &         


        
2条回答
  •  暖寄归人
    2020-12-04 09:09

    You should build an executable for your program (go build) and then either write a script for upstart and it will run your program as a daemon for you, or use an external tool like daemonize. I prefer the latter solution, because it does not depend on a system-dependent upstart. With daemonize you can start your application like

    daemonize -p /var/run/myapp.pid -l /var/lock/subsys/myapp -u nobody /path/to/myapp.exe
    

    This will give you a well-behaving unix daemon process with all necessary daemon preparations done by daemonize.

提交回复
热议问题