Skip to content
Snippets Groups Projects
Commit 0815a25e authored by Jualy's avatar Jualy Committed by Bastian Köcher
Browse files

Add command example for rpc port 9933 (#333)

Connect rpc port 9933 failed if polkadot startup without --rpc-external
parent 2c66adfb
Branches
No related merge requests found
......@@ -23,6 +23,10 @@ Additionally if you want to have custom node name you can add the `--name "YourN
[source, shell]
docker run -d -p 30333:30333 -p 9933:9933 -v /my/local/folder:/data chevdor/polkadot:0.3.14 polkadot --chain alex --name "PolkaDocker"
docker run -d -p 30333:30333 -p 9933:9933 -v /my/local/folder:/data chevdor/polkadot:0.3.14 polkadot --rpc-external --chain alex
if you want to connect to rpc port 9933, then must add polkadot startup parameter: --rpc-external.
**Note:** The `--chain alex` argument is important and you need to add it to the command line. If you are running older node versions (pre 0.3) you don't need it.
=== Limiting Resources
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment