PPA安装:
apt-get install software-properties-common
add-apt-repository -y ppa:ethereum/ethereum
apt-get update
apt-get install ethereum
验证是否安装成功:
geth help
安装位置及目录结构:
安装目录:
cd $HOME/.ethereum
目录结构:
geth: 主目录
geth.ipc:(interprocess communication)运行时产生的用于提供node to UI 的管道连接
history: 历史的一些信息
keystore: 密钥管理
启动:
geth help 可用于查看命令及参数
常用的有:
1:--datadir 区块数据保存目录
2:--syncmode 数据同步方式(full 全节点并做交易验证;fast: 全节点 同步期间不做验证;light: 轻量级节点只同步块头)
3:--rpc 远程协议调用 (对应的值有 db, eth, net, web3, personal)
4:console 由于启动后会有大量同步数据的信息打印在窗口,可使用重定向将其输入到日志文件 console 2>> geth.log
启动过程可写成shell脚本方便后续运行:
start.sh
#!/bin/sh
geth --datadir "/home/sean/.ethereum" --syncmode "full" --rpc --rpcapi "db,eth,net,web3,personal" console 2>> /home/sean/.ethereum/geth/geth.log
停止:在启动窗口exit