-
如何连接
-
常用命令
1. attach
2. admin.peers
3. net.peerCount
4. admin.addPeer("enode://....") -
如何连接
geth attach [路径]/geth.ipc
geth attach http://[IP]:8545
geth attach ws://[IP]:8545
-
常用命令
attach
可以使用geth然后使用这个参数可以进行登录
admin.peers
查看集群信息
net.peerCount
查看现在已经连接的节点数量
admin.addPeer("enode://....")
可以使用这个方法添加节点
admin.peers.forEach(function(p) {console.log(p.network.remoteAddress);})
通过这个方法可以查看已经连接的节点IP列表