本地部署一套以太坊私链,使用适用于联盟链的PoA共识 如果用默认的PoW共识,请看这篇: 体验篇 - 部署以太坊私链 (PoW)
#!/bin/bash
echo "Clear node1 & node2."
rm -rf node1/geth
rm -rf node2/geth
rm -rf node1/eth_output.log
rm -rf node2/eth_output.log
rm -rf bootnode_output.log
echo "Init node1 & node2."
geth --datadir node1 init genesis.json
geth --datadir node2 init genesis.json
nohup bootnode -nodekey boot.key -verbosity 9 -addr :30310 2>> bootnode_output.log &
sleep 1s
echo "Startup node1."
nohup geth --datadir node1/ --syncmode 'full' --port 30311 --rpc --rpcaddr 0.0.0.0 --rpcport 8501 \
--rpcapi 'personal,db,eth,net,web3,txpool,miner' --rpccorsdomain "*" --ws --wsaddr 0.0.0.0 --wsport 8601 --wsapi 'personal,db,eth,net,web3,txpool,miner' --wsorigins "*" \
--bootnodes 'enode://bde0739c7d9f213054575574d6e8e1df21147066a666bc939f29634dac947ad5c715a990d878264fe91a83c9fa0495911c824fe43329570c8d0510c8fa3243f2@127.0.0.1:30310' \
--networkid 1515 --gasprice '1' -unlock '0xbac5564cc4f7528ebb6150270ee63b3fa1641b17' --password node1/password.txt --mine \
2>>node1/eth_output.log &
sleep 1s
echo "Startup node2."
nohup geth --datadir node2/ --syncmode 'full' --port 30312 --rpc --rpcaddr 'localhost' --rpcport 8502 \
--rpcapi 'personal,db,eth,net,web3,txpool,miner' --ws --wsaddr 0.0.0.0 --wsport 8602 --wsapi 'personal,db,eth,net,web3,txpool,miner' --wsorigins "*" \
--bootnodes 'enode://bde0739c7d9f213054575574d6e8e1df21147066a666bc939f29634dac947ad5c715a990d878264fe91a83c9fa0495911c824fe43329570c8d0510c8fa3243f2@127.0.0.1:30310' \
--networkid 1515 --gasprice '1' -unlock '0x8a6673dc85e544bce6d4876f63cfcdc4e5c8cc08' --password node2/password.txt --mine \
2>>node2/eth_output.log &
参考
- http://www.cnblogs.com/xd502djj/p/3612131.html
- https://blog.csdn.net/fengyifei11228/article/details/5737371
- http://www.cnblogs.com/mfryf/archive/2012/05/09/2491322.html
往期精彩回顾:
-
区块链知识系列
-
密码学系列
-
零知识证明系列
-
共识系列
-
公链系列
-
比特币系列
-
以太坊系列
-
EOS系列
-
Filecoin系列
-
联盟链系列
-
Fabric系列
-
智能合约系列
-
Token系列
|