Bolo  当前访客:1 管理登录

日常点滴记忆

一任群芳妒,无边丝雨细。 蓬莱此去无多路,青鸟殷勤为探看。

go程序后台运行的方法

2022-06-01/2023-11-26 fogsun
0  评论    407  浏览

go程序编译后在linux或windows后台运行的方法

方法1:

windows 只需要在编译的时候使用一下go build - ldflags=“-H windows”

Linux 在运行程序的尾部加入&,或者nohup ./example &

方法2:(推荐)

导入一个包即可。

_ “github.com/codyguo/godaemon”

使用方法:

./example -d=true 或者 ./example -d true

详细参考:http://github.com/codyguo/godaemon

转载自:https://www.csdn.net/tags/NtDaIg2sNzg0Ni1ibG9n.html


标题:go程序后台运行的方法
作者:fogsun
地址:HTTPS://nb500.cn/articles/2023/11/26/1700971332636.html

发表评论


目录

TOP
取消