0
I have installed bitcoin core by using its source code in my amazon server by using the instructions given in the below youtube link
https://www.youtube.com/watch?v=tG_24G7bj_w
Some portion of the commands that i used to install the bitcoin from the source code were given below,
sudo mv ./include/bitcoinconsensus.h /usr/local/include/bitcoinconsensus.h mkdir -p /usr/local/lib sudo mv ./lib/libbitcoinconsensus.so /usr/local/lib/libbitcoinconsensus.so sudo mv ./lib/libbitcoinconsensus.so.0 /usr/local/lib/libbitcoinconsensus.so.0 sudo mv ./lib/libbitcoinconsensus.so.0.0.0 /usr/local/lib/libbitcoinconsensus.so.0.0.0 chmod 644 /usr/local/lib/libbitcoinconsensus.so /usr/local/lib/libbitcoinconsensus.so.0 /usr/local/lib/libbitcoinconsensus.so.0.0.0
Its running fine in my server. Now I need to install bitcoincash also in the same server using the source file. I got the source file of bitcoincash from the below link
https://www.bitcoinunlimited.info/download
But i have a doubt that is there any conflict will occure when we install two coins in the same server,
also from the given commands we can see that we have to move some common folders(eg libbitcoinconsensus.so , libbitcoinconsensus.so.0 ) to the /usr/local/lib/ fiolder and /usr/local/include/ folder for installing both coin.
Then how can i install both coins from the source? Can alyone please give me to solve this problem?
Thank you Adam for your reply.But I have a doubt does these two coins bitcoin abc and bitcoincash are same? – Albert – 2018-02-08T06:20:52.493
Finally I installed and run both wallets bitcoin and bitcoincash on same server.I just rename some executable files and connected both wallets on different ports.Thank you... – Albert – 2018-02-10T07:39:42.393
This will cause problems. Both the Bitcoin Core and ABC will try to use the port
8333– MCCCS – 2018-04-07T13:38:35.503Yeah, you are right, I forgot to mention that. – Adam – 2018-04-07T13:42:02.623
The bitcoinCashd and bitcoind -version works, but when running it, the commands such as bitcoin-cli getblockchaininfo and bitcoinCash-getinfo both return the first daemon run. Both cant be run at once – Anekdotin – 2018-06-17T20:51:46.750
I created user1 and user2 installed bitcoin and bitcoincash the same way. I also try starting them pointing at the config file – Anekdotin – 2018-06-17T20:53:11.757
are you starting them from each app user? I mean you have to start to call
BitcoinCash-cli getnetworkinfofromuser2– Adam – 2018-06-18T02:48:25.343