I do realize that in the early stages bitcoin has to download a lot (How long does it take to download the blockchain?), however, I assume this is like wget
or rsync
where it displays the progress. Right now, when I issue the command bitcoind
, it just hangs and outputs nothing. Could this be due to closed ports? Is it sufficient that I opened ports on my Ubuntu router, or must I forward those ports? Alternatively, is there a command line parameter I have to issue to get the output of bitcoind?
Asked
Active
Viewed 3,150 times
5
2 Answers
6
No output is normal, it's meant to be run as a daemon. If you want to see progress however, try bitcoind -printtoconsole
or tail -f ~/.bitcoin/debug.log
.

Anonymous
- 1,371
- 6
- 10
4
You should be using something like so to run bitcoind as a daemon
bitcoind -daemon
And then, you can check on it like so:
bitcoind getinfo

Earlz
- 1,130
- 2
- 11
- 27
bitcoin-cli
to connect to the daemon rather than commands withbitcoind
. You can pass-rpcwait
to this to stop calls failing when the daemon is still checking it's files and starting up. – Anonymous Dec 05 '13 at 15:21