couldnt connect to seed node, firewall problem

+1 vote
i followed this

https://blog.cotten.io/deploying-a-blockchain-with-multichain-on-amazon-ec2-b288ae118b30

& then

https://www.multichain.com/getting-started/

 

 

 

[ec2-user@ip-172-31-18-195 ~]$ nano ~/.multichain/alertchain-core/params.dat
[ec2-user@ip-172-31-18-195 ~]$ multichaind chain1@172.31.31.111:4287

MultiChain 1.0.4 Daemon (latest protocol 10010)

Retrieving blockchain parameters from the seed node 172.31.31.111:4287 ...
Error: Couldn't connect to the seed node 172.31.31.111 on port 4287 - please check multichaind is running at that address and that your firewall settings allow incoming connections.
asked May 18, 2018 by rakehs kumar

1 Answer

0 votes

First please check that chain1@172.31.31.111:4287 is the correct node address for the other node. You can see this by looking at the address it outputs when it starts up, or using the getinfo command.

Second, you may indeed need to check the firewall settings on that computer, that it allows incoming connections on the port 4287. By default many Linux systems don't allow incoming traffic on any port and you need to explicitly open them.

answered May 21, 2018 by MultiChain
...