https://github.com/ethereum/go-ethereum/wiki/Private-network
https://medium.com/taipei-ethereum-meetup/%E4%BD%BF%E7%94%A8-go-ethereum-1-6-clique-poa-consensus-%E5%BB%BA%E7%AB%8B-private-chain-1-4d359f28feff
https://blog.fukuball.com/ethereum-%E9%96%8B%E7%99%BC%E7%AD%86%E8%A8%98-22geth-%E5%9F%BA%E7%A4%8E%E7%94%A8%E6%B3%95%E5%8F%8A%E6%9E%B6%E8%A8%AD-muti-nodes-%E7%A7%81%E6%9C%89%E9%8F%88/
https://medium.com/@javahippie/building-a-local-ethereum-network-with-docker-and-geth-5b9326b85f37
https://mshk.top/2017/11/go-ethereum-1-7-2/
https://www.tiny-calf.com/2018/02/01/GETH%E5%AE%A2%E6%88%B7%E7%AB%AF%E5%9F%BA%E6%9C%AC%E6%93%8D%E4%BD%9C/
https://neighborhood999.github.io/2018/09/19/running-ethereum-on-docker/
https://github.com/yutianwu/ethereum-docker
https://github.com/yutianwu/ethereum-docker
https://github.com/ethereum/go-ethereum/issues/15182
@robert-zaremba You can still use dev with datadir. Dev just uses a 0-period clique chain.
That said, –dev was not meant to be used on custom networks / genesis blocks. If you need a custom setup, you can init a chain of your choosing. Dev will try to be smart and configure a lot of stuff for easy testing, but it’s not flexible, it’s easy.
翻譯:
--dev不能用在 custom networks 和genesis blocks.
https://geek.ink/forum/detail/34
p.p1 {margin: 0.0px 0.0px 2.0px 0.0px; font: 14.0px ‘Helvetica Neue’; color: #454545; min-height: 17.0px} p.p2 {margin: 0.0px 0.0px 2.0px 0.0px; font: 14.0px ‘Helvetica Neue’; color: #454545} p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px ‘Helvetica Neue’; color: #454545; min-height: 15.0px} p.p4 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px ‘Helvetica Neue’; color: #454545} p.p5 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px ‘Helvetica Neue’; color: #454545; min-height: 14.0px} span.s1 {font: 12.0px ‘.PingFang TC’} span.
https://ethereum.stackexchange.com/questions/3229/geth-what-happened-to-logfile
geth 2> file
Example:
geth –dev –rpcapi “db,personal,eth,net,web3” –rpc –rpcaddr “0.0.0.0” –rpccorsdomain “*” –mine 2>eth_output.log
.Dockfile
RUN geth –dev –rpcapi “db,personal,eth,net,web3” –rpc –rpcaddr “0.0.0.0” –rpccorsdomain “*” –mine 2>eth_output.log
===========
Have console & log & mining
./geth –datadir ./node2/data/ –networkid 55555 –port 30303 –rpcapi=db,eth,net,web3,personal,web3 –rpc –rpccorsdomain=* –password password.txt –mine –minerthreads=1 –verbosity 3 console 2» /var/log/geth.log
PS:–rpccorsdomain=* or –rpccorsdomain “*” is ok, –rpcorsdomain * is bad
Have console & log & mining & unlock
https://qiita.com/hm0429/items/224d420364b36cf43e85
http://yutianx.info/2017/10/07/2017-10-07-docker-ethereum/
https://github.com/Capgemini-AIE/ethereum-docker