I tried to connect to seed node using ip address directly:
/usr/local/bin/multichaind testchain_01@<ip address>:<port> -daemon
from the debug.log file everything seems ok but if I try to connect to the blockchain I have the following:
MultiChain 2.2 RPC client
Interactive mode
testchain_01: getinfo
error: couldn't connect to server
testchain_01: exit
Bye
So basically nothing changes.
Now I have to kill the process and launch again and everything is fine.
In order to understand better I notice that in the log file I have the following line:
2021-12-06 22:02:04 ERROR: Read : Failed to open file /home/nodo/.multichain/testchain_01/peers.dat
So the procedure to reproduce is the following:
- launch the first call (use ip address or name of the seed node doesn't matter):
/usr/local/bin/multichaind testchain_01@<ip address>:<port> -daemon
server is not started and in the log file I have:
ERROR: Read : Failed to open file /home/nodo/.multichain/testchain_01/peers.dat
- kill multichaind process.
- launch again:
/usr/local/bin/multichaind testchain_01@<ip address>:<port> -daemon
What do you think about?
It is not a real issue but I'd like to have a more clean install procedure avoiding killing the process.