1
I have bitcoind running from a 2 GB CentOS 6 box in order to check balances of addresses. The problem is that it just randomly stops downloading the blockchain sometimes, and I have to use ./bitcoind stop and ./bitcoind to start it back up again.
./bitcoind getinfo gives me:
{
"version" : 90201,
"protocolversion" : 70002,
"walletversion" : 60000,
"balance" : 0.00000000,
"blocks" : 213322,
"timeoffset" : 0,
"connections" : 14,
"proxy" : "",
"difficulty" : 3370181.79927784,
"testnet" : false,
"keypoololdest" : 1410016320,
"keypoolsize" : 101,
"paytxfee" : 0.00000000,
"relayfee" : 0.00001000,
"errors" : ""
}
Anything useful in debug.log? – Nate Eldredge – 2014-09-06T15:23:16.247
I'll post it when the bitcoind stops again – Jordan – 2014-09-06T15:32:28.740
There were a few other questions that suggested similar problems, but it seems like they may be hard to track down without a debugger, a developer's knowledge, and access to a system where the problem can be reproduced. – Nate Eldredge – 2014-09-06T16:26:18.707
By the way, as far as installing it to check address balances: Bitcoin Core currently does not support checking the balances of arbitrary addresses, only those that are in your wallet and for which you have the private key. So if that was your goal, you will need to find a different solution. – Nate Eldredge – 2014-09-06T16:27:45.040