一、准备环境:
下载git和golang即可
apt install git
apt install golang
二、拉取代码,编译XuperChain
通过此命令拉取XuperChain源码到本地
拉取成功后,会代码保存到了xuperChain文件夹中,我们进入此文件切换到新分支
cd xuperChain && git checkout -b v5.3.0 v5.3.0
然后执行make进行编译
make
https://goproxy.cn即可,命令如下
go env -w GOPROXY=https://goproxy.cn
出现compile done!代表编译完成,output目录会得到bin,conf, data 三个文件夹以及一个 control.sh 脚本,可以进行下一步
三、部署xchain服务
关于XuperChain的启动停止等操作都通过controll.sh脚本执行,例如启动服务
bash control.sh start
出现start proc succ和Done!代表启动成功,可以通过命令检查进程是否启动
ps -ef | grep xuperchain
四、确认服务状态
XuperChain也提供了命令确认服务状态,如下
bin/xchain-cli status -H 127.0.0.1:37101
至此,我们完成了简单的XuperChain的搭建和部署 ,后续我将继续记录关于XuperChain,以便学习使用。