go 安装consul包("github.com/hashicorp/consul/api")
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
注意:
1.这里安装的不是consul本身,而是consul包,就是go程序里要import的那个。
2.安装方法适用于所有系统,包括linux,windows,mac,只需要机器上有git
consul源码就是用go写的,所有使用go程序调用consul包,只需要把整个go项目从github上clone下来即可。其实用go get也可以安装,但是因为源在国外,非常慢,且go get看不到进度,不如用git clone,还能看到下载百分比。
注意,要把包clone到GOPATH下,具体命令如下:
mkdir $GOPATH/src/github.com/hashicorp
cd $GOPATH/src/github.com/hashicorp
sudo git clone https://github.com/hashicorp/consul.git
最后一步我使用了sudo,是因为,第一次没有sudo,报了一个如下的错误:
我查了半天没有查到什么好的解决办法,于是加上了sudo又执行了一次,就好了。。。
最后还有一个小建议,就是如果你有一个可以翻墙的机器,那就直接在那台机器上下载好之后,把程序打个压缩包,然后使用scp命令传到其他机器上,毕竟consul这个项目有两百多兆,在不能翻墙的机器上下实在是太慢了。。。
cd $GOPATH/src/github.com/hashicorp
tar -czf consul.tar.gz consul
scp consul.tar.gz username@server_ip:path
注意:scp使用ssh账号需要具有在path下的写入权限才可以。
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:4 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献5条内容
所有评论(0)