Hi,
I have created Node JS API's for connecting to my multichain nodes . There is one admin node which is running a Daemon and other two child nodes are connecting to that Seed Node or Admin Node.
In my code, I am making a connection attempt to all these three nodes by passing the Host IP , RPCPORT, rpcusername and rpcpassword . ?But when I am starting my node server , I am getting the below arror :
server listening on : 3000
err:Error: connect ECONNREFUSED "IP_Address_of_Admin_Node":"RPC_Port_of_Admin_Node"
err:Error: connect ECONNREFUSED "IP_Address_of_Admin_Node":"RPC_Port_of_Admin_Node"
at Object._errnoException (util.js:1022:11)
at _exceptionWithHostPort (util.js:1044:20)
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1182:14)
info:undefined
Same message I am getting for the other two child nodes also.
Can someone help me on this ?