How to create a daemon process in Golang? [duplica

2019-03-15 06:57发布

This question already has an answer here:

Has anyone here written a deamon process in Golang? Can you walk me through how to do that? Useful links are welcome.

1条回答
倾城 Initia
2楼-- · 2019-03-15 07:44

Yes this has been done. See the go-daemon project. Be aware that there are certain problems when the daemonization happens after goroutines are launched. See issue 227 for details.

At this time I'd recommend to use the utilities your operating system offers you. See this related question for solutions.

查看更多
登录 后发表回答