编译
> go build test.go
指定输出文件名
> go build -o custom_name
修改可执行权限
> chmod 777 程序名称
程序后台运行
> nohup ./custom_name &
不输出错误信息
> nohup ./custom_name >/dev/null 2>&1 &
关闭程序
- 查询进程号
> ps aux|grep custom_name
- 关闭进程
> kill 进程编号
开机启动glang
> vi /etc/rc.local
添加
cd [程序路径,如:/home/website/www/]
nohup ./custom_name&
有疑问加站长微信联系(非本文作者)