Connecting multiple node in UI

+1 vote
Hello Friends,

I am trying to connect to multiple node in UI. For that as its mentioned in the Web demo I have changed the config.txt.

default.name= APHA               
default.rpchost=chain2@172.61.25.249           
default.rpcport=4328              
default.rpcuser=multichainrpc       
default.rpcpassword=Gd21tFd27utaMNjSBj4Rh2iPwfndUsogj9NPg7Cw4VT7

other.name= RPID               
other.rpchost=chain2@172.61.25.28          
other.rpcport=4328               
other.rpcuser=multichainrpc       
other.rpcpassword=C7JRgTajC6bza48wPppmYT56ETzNhx4bnQF5mTzwoeCt  

And I have added multichain.conf

rpcallowip=172.61.25.249
rpcallowip=172.61.24.78

I am able to view in when i using default but I am not able to view when I using other.

What I am doing wrong here??
asked May 28, 2018 by piyush.sahay

1 Answer

+1 vote
It sounds like your web server has IP 172.61.25.249

If this is correct, you should add

rpcallowip=172.61.25.249

to multichain.conf of the node running on 172.61.25.28 and restart that node
answered May 28, 2018 by Michael
...