码迷,mamicode.com
首页 > 其他好文 > 详细

私有链配置信息的解释

时间:2018-08-27 18:33:47      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:连接   出现   使用   OLE   在服务器   nbsp   conf   personal   区块   

技术分享图片

 

上图表示的在同一个区块链上进行的两种不同配置信息的设置
左边ethereum.toml的配置信息是:
geth --datadir data0 --networkid 1500 --ipcdisable --port 2345 --rpc --rpcapi ‘eth,net,web3,admin,personal,miner,debug,shh’ --nodiscover --rpccorsdomain ‘*‘ --rpcport 61910 dumpconfig > ./ethereum.toml

然后右边geth.toml的配置信息是:
geth --datadir data0 --networkid 1500 --port 61910 --rpc --rpcapi ‘eth,net,web3,admin,personal,miner,debug‘ --rpccorsdomain ‘*‘ --rpcport 8201 dumpconfig > ./geth.toml  

然后我们从图中就可以看见两者配置后配置信息中很明显的差别了:
--ipcdisable :ethereum.toml中则无参数 IPCPath = “geth.ipc",不能使用IPC连接
—nodiscover:ethereum.toml则参数为 NoDiscovery = true,geth.toml没有设置这个,则为NoDiscovery = false,说明该节点能够被发现。只是能不能被发现的区别,都是可以被连接的

--rpcapi:后面设置的信息都会出现在参数HTTPModules 中,ethereum.toml比geth.toml多一个shh

--port 2345 : 设置的是参数 ListenAddr = “:2345”,即该进程在服务器中占用的端口
--rpcport 61910:设置的是参数 HTTPPort = 61910,即要通过http方式接入区块链的端口号

打开方式:
geth --config ./geth.toml console 2>>geth.log

私有链配置信息的解释

标签:连接   出现   使用   OLE   在服务器   nbsp   conf   personal   区块   

原文地址:https://www.cnblogs.com/wanghui-garcia/p/9507077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!