golang 启动服务后台守护进程

1,成功执行文件

在main函数所在的文件下运行,生成可执行文件

go build main.go

2.启动时守护进程

nohup ./生成的文件 &
点赞