[DOCS] Add default windows IPC path (#20722)
Co-authored-by: Felix Lange <fjl@twurst.com>
This commit is contained in:
parent
03bb2f40e1
commit
ee73348658
|
@ -73,11 +73,15 @@ As with `--rpccorsdomain`, using `--wsorigins '*'` allows access from any origin
|
||||||
JSON-RPC APIs are also provided on a UNIX domain socket. This server is enabled
|
JSON-RPC APIs are also provided on a UNIX domain socket. This server is enabled
|
||||||
by default and has access to all JSON-RPC namespaces.
|
by default and has access to all JSON-RPC namespaces.
|
||||||
|
|
||||||
The listening socket is placed into the data directory by default. On Linux, the
|
The listening socket is placed into the data directory by default. On Linux and macOS,
|
||||||
default location of the geth socket is
|
the default location of the geth socket is
|
||||||
|
|
||||||
~/.ethereum/geth.ipc
|
~/.ethereum/geth.ipc
|
||||||
|
|
||||||
|
On Windows, IPC is provided via named pipes. The default location of the geth pipe is:
|
||||||
|
|
||||||
|
\\.\pipe\geth.ipc
|
||||||
|
|
||||||
You can configure the location of the socket using the `--ipcpath` flag. IPC can
|
You can configure the location of the socket using the `--ipcpath` flag. IPC can
|
||||||
be disabled using the `--ipcdisable` flag.
|
be disabled using the `--ipcdisable` flag.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue