每次当你想要使用你自定义的私有链时,你都需要先使用geth来运行以上的命令来启动它。
3.创建自己的私有链条 创建自己的私有链条,同时记录日志输出到geth.log greg@greg:~/ethprivate$ geth --datadir "./" --nodiscover console 2>>geth.log Welcome to the Geth JavaScript console! instance: Geth/v1.7.3-stable-4bb3c89d/linux-amd64/go1.9 modules: admin:1.0 debug:1.0 eth:1.0 miner:1.0 net:1.0 personal:1.0 rpc:1.0 txpool:1.0 web3:1.0 在自己的私有链条上创建用户 > eth.accounts [] > personal.newAccount("123456") "0xe158bf2c29ca283c7bdc99880e36985d9f7d23f8" > eth.accounts ["0xe158bf2c29ca283c7bdc99880e36985d9f7d23f8"] > personal.newAccount("abcdef") "0x8cd642b5f69a24fd3d05786dfe0eb3f44dc8bb33" > eth.accounts ["0xe158bf2c29ca283c7bdc99880e36985d9f7d23f8", "0x8cd642b5f69a24fd3d05786dfe0eb3f44dc8bb33"]输入命令personal.newAccount("123456"), 该命令将创造一个新的用户,该用户的密码是123456
再次输入命令 eth.accounts, 我们会发现一个新的用户被创建了出来,这就代表我们已经创建了一个账户,重复personal.newAccount() 和eth.accounts 我们可以创建若干个账户出来