mirror of
https://github.com/Retropex/docker-bitcoind.git
synced 2025-06-02 23:42:29 +02:00
Merge pull request #33 from lncm/nolim1t-documentation-patch
Add troubleshooting guide
This commit is contained in:
commit
6d53d5e55c
17
README.md
17
README.md
@ -140,3 +140,20 @@ docker exec -it bitcoind bitcoin-cli -getinfo
|
|||||||
docker exec -it bitcoind bitcoin-cli getblockcount
|
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
|
||||||
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user