go程序后台运行的方法
2022-06-01/2023-11-26
fogsun
go程序编译后在linux或windows后台运行的方法
方法1:
windows 只需要在编译的时候使用一下go build - ldflags=“-H windows”
Linux 在运行程序的尾部加入&,或者nohup ./example &
方法2:(推荐)
导入一个包即可。
_ “github.com/codyguo/godaemon”
使用方法:
./example -d=true 或者 ./example -d true