- 搭建私链教程 引用知乎一个文章 geth搭建以太坊私链及常用操作
- 最好不要使用最新版本geth clone 指定版本geth
git clone -b v1.10.5 https://github.com/ethereum/go-ethereum.git
make geth
- genesis.json 文件
{
"config": {
"chainId": 1024,
"homesteadBlock": 0,
"eip150Block": 0,
"eip155Block": 0,
"eip158Block": 0
},
"coinbase" : "0x0000000000000000000000000000000000000000",
"difficulty" : "0x20000",
"extraData" : "",
"gasLimit" : "0xffffffff",
"nonce" : "0x0000000000000042",
"mixhash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
"timestamp" : "0x00",
"alloc" : {}
}
- 问题 geth.ipc: bind: invalid argument 启动私链时报错
有多种可能 github 上 https://github.com/ethereum/go-ethereum/issues/16342
我的出错原因 在data0 目录下没有 geth.ipc文件;
解决: 先启动geth ,输入geth ,日志中会打印geth.ipc 文件的地址 我的是 /home/xxxx/.ethereum/geth.ipc,所以在启动私链时,指定ipc文件位置;
geth --datadir data0 --networkid 1024 --ipcpath "/home/xxxx/.ethereum/geth.ipc" --port 40404 console
这里端口冲突也修改了一下端口