go mod init myapp
go get github.com/kataras/iris/v12@latest
package mainimport "github.com/kataras/iris/v12"func main(){app := iris.New()app.Listen(":port")
}
打包应用
go build main.go
开启服务
#nohup ./程序名称
nohup ./main
关闭后台
#ps -ef|grep 名称
ps -ef|grep main
杀死进程
通过ps -ef|grep main
找到应用出现
找到应用的(PID(一般是第一个数字)
)
#kill PID
kill 510057