4
3
I want to run two instances of bitcoind on my machine.
I know my bitcoin.conf file is in ./bitcoin/bitcoin.conf, and I know (thanks to this thread) that I need to change my .conf file to point to different data dirs and RPC ports, etc.
However there is only one .conf file.
How do I go about pointing my second bitcoind instance to a new bitcoin.conf file? I copied the directory with the compiled code to a new directory, I am making the assumption that compiled code can be copied into another directory and it will work without problems.
There is little to no documentation on this topic, so I guess I'll just ask here: I specify a datadir flag by typing
./bitcoind -datadir /dir/location/here/, is that correct? – bvpx – 2013-10-04T14:54:49.680That's correct. – Anonymous – 2013-10-05T04:22:10.020
./bitcoind -datadir=/dir/location/here/ don't forget the = – Badr Bellaj – 2017-12-06T23:49:27.850