[DOCS] add note about HTTP attach in getting started guide (#20991)
Adding an alternative command since some people are unable to connect with 'geth attach' command by itself. Co-authored-by: Felix Lange <fjl@twurst.com>
This commit is contained in:
parent
bbeb209570
commit
7f2e84c811
|
@ -78,6 +78,12 @@ terminal and using the following command to open a JavaScript console:
|
|||
geth attach
|
||||
```
|
||||
|
||||
If you get the error 'unable to attach to remote geth', try connecting via HTTP as shown below:
|
||||
|
||||
```shell
|
||||
geth attach http://127.0.0.1:8545
|
||||
```
|
||||
|
||||
In the console you can issue any of the Geth commands, for example, to list all the
|
||||
accounts on the node, use:
|
||||
|
||||
|
|
Loading…
Reference in New Issue