parity-poa-tutorial
parity-poa-tutorial copied to clipboard
Getting an IPC error: Access is denied
Thanks for providing the config files for the PoA tutorial.
However, compared to the tutorial, the following two lines are missing in your node1.toml:
[ipc]
disable = true
So after starting node0, attempting to start node1 fails with the following error: IPC error: Access is denied. (os error 5)
Adding the above two lines fixes the error. Are these lines missing on purpose, or is it simply by accident?
Thanks!
@psyantyst , Indeed i had the same issue, my node0.toml file was missing the above two lines you have mentioned which produced the same error. However they existed in the node1.toml file.
I wonder why were they missing in the documentation...
Thanks,
the ipc is not useful for common case.
Another inconsistency, is that file's in this repo only include the websockets option in the node1.toml file
node1.toml
[websockets]
port = 8547
whereas in the tutorial here https://wiki.parity.io/Demo-PoA-tutorial.html#2-setting-up-the-two-nodes, the example node0.toml and node1.toml code snippets suggest including the following websockets options in both files, and using different ports:
node0.toml
[websockets]
port = 8450
node1.toml
[websockets]
port = 8451