Reputation: 143
I have setup an hyperledger fabric network with 6 organizations and 5 orderers (raft consensus). Each org has 2 peers. All the peers are running in 7051 ports and orderers in 7050 port. When I try to do telnet to the peers,
telnet <ip> 7051
Trying <ip>...
Connected to <ip>.
Escape character is '^]'.
Connection closed by foreign host.
But the telnet connection is automatically getting closed after 3-4 seconds.
Upvotes: 5
Views: 43972
Reputation: 1189
Few Suggestions:
ports
are opened or not in the firewall.source
is set to specific IP then try changing it to 0.0.0.0
. 0.0.0.0
is for testing only.nc -vz IP port
command. Is is same as telnet.Upvotes: 2