openethereum / parity-deploy

Parity deployment script.
Apache License 2.0
81 stars 52 forks source link

Can I use Parity UI for to connect to my private network? #65

Closed jarenal closed 6 years ago

jarenal commented 6 years ago

Hi,

I've setup successfully my private network using the next command:

./parity-deploy.sh --config aura --nodes 3 --ethstats

Everything looks ok through Etherstats Dashboard using the URL http://localhost:3001

After that, I've installed Parity UI from here...

https://github.com/parity-js/shell

...and when I try to connect request me enter a token using the next command:

parity signer new-token

My questions are:

Thanks in advance!

ddorgan commented 6 years ago

Ahhh this is now a bit more awkward with the UI being removed ..

Before you could pass the UI command which would output a token in the stdout. Now I think you'd need to exec into the docker container to run the command.

e.g. docker exec -ti bash ... then run:

/parity/parity --base-path /parity/data signer new-token

ddorgan commented 6 years ago

Any update on this?

ddorgan commented 6 years ago

No reply, closing.

jarenal commented 6 years ago

The command...

/parity/parity --base-path /parity/data signer new-token

...works like a charm, thank you.