Linux 通过go环境安装goreman时报错
go: github.com/mattn/goreman@latest: module github.com/mattn/goreman: Get “https://goproxy.cn/github.com/mattn/goreman/@v/list”: x509: certificate signed by unknown authority
这是由于go在get请求时数字证书问题,执行以下两步
apt-get -qq update apt-get -qq install -y --no-install-recommends ca-certificates curl
然后重新执行
go install github.com/mattn/goreman@latest
安装成功,这时可以在go环境中找到goreman执行文件,可以直接在文件夹下执行goreman执行文件
或者拷贝至全局变量
root@aries:~/go/bin# cp ./goreman /usr/local/bin/
这样就可以在任意文件下执行goreman指令了