Bitcoin Forum

Bitcoin => Bitcoin Discussion => Topic started by: genjix on March 21, 2011, 10:52:11 AM



Title: Running multiple Bitcoin instances.
Post by: genjix on March 21, 2011, 10:52:11 AM
Is this a good setup to run 2+ bitcoin instances?

Each one is running under a separate user, so no need to set -datadir.

bitcoind -rpcport=8721 # this will be the master running as root
bitcoind -rpcport=8121 -connect=127.0.0.1 -nolisten  # slave 1
bitcoind -rpcport=8216 -connect=127.0.0.1 -nolisten  # slave 2

The above is for 2 users. They connect through the master node.

Am I missing anything?


Title: Re: Running multiple Bitcoin instances.
Post by: dishwara on March 21, 2011, 03:18:02 PM
In linux or windows?


Title: Re: Running multiple Bitcoin instances.
Post by: genjix on March 21, 2011, 05:02:33 PM
what's a windows?

yes i run linux.


Title: Re: Running multiple Bitcoin instances.
Post by: theymos on March 21, 2011, 08:31:29 PM
That's right.