Geth安装使用

Geth介绍,安装以及使用…

安装Geth

版本变更

  • geth version:1.10.* :通用版本,建议(1.10.21)
  • geth version:1.11.* :需要使用clef解锁账户
  • geth 最近版本由POW替换为POS,POS无法搭建私有链

安装方式

源码编译安装(不推荐)

需要有golang的环境,比较麻烦
编译geth: make geth 或者 make all
配置环境变量并使其生效:

1
2
export GETHPATH=/root/go-ethereum-1.9.25/build
export PATH=$PATH:$GETHPATH/bin

官网下载编译安装(推荐)

访问 官方 Geth 下载页面 下载适合 当前操作系统 的安装包。

通过命令安装

1
2
3
4
5
6
7
8
9
10
11
# 更新软件源
sudo apt update && sudo apt upgrade -y

# 安装 Geth(Ubuntu/Debian)
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt update
sudo apt install ethereum -y

# 或者在 macOS 上使用 Homebrew
brew tap ethereum/ethereum
brew install ethereum

验证安装

1
geth version

创建 PoW 私有链

创建区块链目录

1
2
3
4
mkdir -p chain
cd chain
mkdir -p node
cd node

生成创世区块配置

在你的工作目录下创建 genesis.json 文件,内容如下:

vim genesis.json

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"config": {
"chainID": 15,
"homesteadBlock": 0,
"eip150Block": 0,
"eip155Block": 0,
"eip158Block": 0,
"byzantiumBlock": 0,
"constantinopleBlock": 0,
"petersburgBlock": 0,
"ethash": {}
},
"alloc": {
"0xeb680f30715f347d4eb5cd03ac5eced297ac5046": {
"balance": "100000000000000000000000000000000"
}
},
"coinbase": "0x0000000000000000000000000000000000000000",
"difficulty": "0x01",
"extraData": "0x777573686f756865",
"gasLimit": "0xffffffff",
"nonce": "0x0000000000000001",
"mixhash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"timestamp": "0x00"
}

初始化私有链

初始化数据文件和创世区块命令

1
geth --datadir ./data init genesis.json

成功后会提示Successfully wrote genesis state

创建账户

1
geth --datadir ./data account new

系统会提示输入密码,并返回一个 0x 开头的地址,即为新创建的账户。

启动私有链

启动节点(需配置各种参数)

1
2
3
4
geth --networkid 15 --datadir ./data \
--http --http.addr "0.0.0.0" --http.port 8545 \
--http.api "eth,net,web3,personal,miner" --allow-insecure-unlock \
--port 30303 --nodiscover --mine --miner.threads 1
  • --networkid 15:指定私有链的网络 ID。
  • --datadir ./data:指定数据目录。
  • --http:启用 HTTP RPC 访问。
  • --mine:开启挖矿。
  • --miner.threads 1:指定挖矿线程数。
  • --nodiscover:禁止与外部节点发现。

开始挖矿

1
2
3
4
geth attach http://127.0.0.1:8545
> miner.setEtherbase(eth.accounts[0]) # 设置收益地址为 第一个账户
> miner.start(1) # 启动挖矿
> eth.blockNumber # 查看区块高度

连接到私有链

使用 Geth Console 连接

1
geth attach ./data/geth.ipc

或者使用 HTTP 连接:

1
geth attach http://127.0.0.1:8545

查看账户信息

1
2
eth.accounts
eth.getBalance(eth.accounts[0])

发送交易

1
eth.sendTransaction({from: eth.accounts[0], to: "0x目标地址", value: web3.toWei(1, "ether")})

停止 Geth 及清理数据

关闭 Geth

在 Geth Console 中输入:

1
exit

或者直接在终端执行:

1
killall geth  # Linux/macOS

删除私有链数据(慎重)

1
rm -rf ./data

Geth安装使用
https://zhyyao.me/2024/02/11/blockchain/geth_course/
作者
zhyyao
发布于
2024年2月11日
许可协议