打开cmd(win+r),在main.go所在的目录运行生成 XXX.tar.gz文件
bee pack -be GOOS=linux
上传文件到linux系统中的文件中,切换到文件所在的目录进行解压
tar vxf test1.tar.gz
赋予权限
chmod +x test1
关闭防火墙
systemctl stop firewalld.service
systemctl disable firewalld.service
运行
./test1
后台运行
nohup ./test1 &