• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

multiple MN instances on 1 VPS

aloha

New member
I have decided to bundle some of my masternodes on 1 VPS, which has several dedicated IP addresses.

I have set multiple useraccounts on my main IP address, each useraccount will have its own
dash.conf & blockchain (i have large hdd space there so the space it takes is not a problem).

Can someone please verify if the setup i have in mind will actually work on the remote VPS side.
I'm not sure about the bind command & rpcport (Dash Central seems to use the 9998 port and i plan on using their push and restart script).
Any improvements / fixes / suggestions will be highly appreciated.

dash.conf
Code:
rpcuser=xxxx1Axxxx
rpcpassword=xxxx1Bxxxx
rpcallowip=127.0.0.1
externalip=IPADDRESS
bind=IPADDRESS
rpcport=6000
listen=1
server=1
daemon=1
logtimestamps=1
maxconnections=30
masternode=1
masternodeprivkey=MNPRIVKEY

dash.conf
Code:
rpcuser=xxxx2Axxxx
rpcpassword=xxxx2Bxxxx
rpcallowip=127.0.0.1
externalip=IPADDRESS
bind=IPADDRESS
rpcport=6001
listen=1
server=1
daemon=1
logtimestamps=1
maxconnections=30
masternode=1
masternodeprivkey=MNPRIVKEY

dash.conf
Code:
rpcuser=xxxx3Axxxx
rpcpassword=xxxx3Bxxxx
rpcallowip=127.0.0.1
externalip=IPADDRESS
bind=IPADDRESS
rpcport=6002
listen=1
server=1
daemon=1
logtimestamps=1
maxconnections=30
masternode=1
masternodeprivkey=MNPRIVKEY

Port 6000, 6001 and 6002 will get added to my Ubuntu firewall
(ufw allow 6000/tcp etc)
 
(ufw allow 6000/tcp etc)
Why you need to allow rpc ports in the firewall? Doesn't "rpcallowip=127.0.0.1" already limit rpc connections to localhost? I think specifying externalip might be unnecessary but I'm not sure. Maybe try setting up testnet masternodes first?
 
Back
Top