linux安装geth客户端

先安装go环境

参考https://www.52jingya.com/aid4212.html


下载go-ethereum

GitHub地址:https://github.com/ethereum/go-ethereum.git

发行版本地址:https://github.com/ethereum/go-ethereum/releases


上传到服务器,然后安装

先解压文件

tar zxvf go-ethereum-1.8.2.tar.gz
配置环境变量
vim /etc/profile

# geth环境变量
GETHROOT=/app/appsoft/go-ethereum-1.8.2
export GETHROOT
PATH=$PATH:$GETHROOT/build/bin
export PATH
启动服务
geth --datadir "./chain-net" --rpcapi db,eth,net,personal,web3 --rpc console


评论 (0)