Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisreimann committed Nov 14, 2023
1 parent 91f895a commit 654e05d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/Deployment/ManualDeploymentExtended.md
Original file line number Diff line number Diff line change
Expand Up @@ -640,23 +640,23 @@ bitcoin-cli getnetworkinfo
}
```

An alternative approach is to search the Bitcoin Dameon log file:
An alternative approach is to search the Bitcoin daemon log file:

```bash
~$ cat /var/lib/bitcoind/debug.log | grep onion
2019-05-23T18:24:22Z tor: Got service ID 4d4al7v4hj5p7bb6, advertising service 4d4al7v4hj5p7bb6.onion:8333
2019-05-23T18:24:22Z AddLocal(4d4al7v4hj5p7bb6.onion:8333,4)
```

If there is a problem and no onion address can be found in the log file then check for "tor" related error messages:
If there is a problem and no onion address can be found in the log file then check for Tor related error messages:

```bash
~$ cat /var/lib/bitcoind/debug.log | grep tor
2020-07-27T08:03:28Z torcontrol thread start
2020-07-27T08:03:28Z tor: Authentication cookie /run/tor/control.authcookie could not be opened (check permissions)
```

The above error message can occur if the user accounts running the `Bitcoin` service does not have read access to the `Tor` authentication cookie file, [more info](https://github.com/bitcoin/bitcoin/blob/master/doc/tor.md#3-automatically-listen-on-tor). To fix this particular error add the required user account to the `debian-tor` group.
The above error message can occur if the user accounts running the Bitcoin service does not have read access to the Tor authentication cookie file, [more info](https://github.com/bitcoin/bitcoin/blob/master/doc/tor.md#3-automatically-listen-on-tor). To fix this particular error add the required user account to the `debian-tor` group.

```bash
sudo usermod -a -G debian-tor admin
Expand Down

0 comments on commit 654e05d

Please sign in to comment.