From b7b09462a6879b5661c07e2f517cb38694adf62f Mon Sep 17 00:00:00 2001 From: BT Date: Thu, 26 Mar 2020 23:41:40 +0700 Subject: [PATCH] Add troubleshooting guide Documentation to resolve issue #32 --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index afb6e05..c0cf77a 100644 --- a/README.md +++ b/README.md @@ -140,3 +140,20 @@ docker exec -it bitcoind bitcoin-cli -getinfo docker exec -it bitcoind bitcoin-cli getblockcount ``` +#### Troubleshooting + +##### Bitcoind isn't starting + +Here are some possible reasons why. + +###### Permissions for the bitcoin data directory is not correct + +The permissions for the bitcoin data direct is assumed to be UID 1000 (first user). + +If you have a different setup, please do the following + +```bash +# where ".bitcoin" is the data directory +sudo chown -R 1000.1000 $HOME/.bitcoin +``` +