当前位置: 首页 > 工具软件 > Supervisord > 使用案例 >

编译go版本的supervisord

顾永福
2023-12-01

下载supervisord源码

git clone https://github.com/ochinchina/supervisord.git

or

GitHub - ochinchina/supervisord: a go-lang supervisor implementation

把源码下载下来。拷贝进Ubuntu下的相应目录。

 编译

进入源码跟目录,执行
env GOOS=linux GOARCH=amd64 go build -o supervisord  64位版本

env GOOS=linux GOARCH=386 go build -o supervisord  32位版本

在跟目录会生成一个supervisord文件,即为编译产生的文件

 类似资料: