Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: start parity with systemd

...

Run $ partity --help for an exhaustive list of options.

Start parity with systemd

Edit the parity.service file

Code Block
languagetext
themeDJango
[Unit]
Description=Parity Daemon

[Service]
EnvironmentFile=%h/.parity/parity.conf
ExecStart=/usr/bin/parity $ARGS

[Install]
WantedBy=default.target

Edit the parity.conf file

Code Block
languagexml
themeDJango
ARGS="--identity MyNode --pruning=fast --port 30305 --jsonrpc-port 8081 --unlock MyEtherAddress --password MyFile"

Move the service file in your systemd user service file directory (usually ~/.config/systemd/user or /etc/systemd/user), move the parity.conf wherever you want as long as its path is correctly set in your service file.

Run

$ systemctl --user start parity.service to start the daemon

$ systemctl --user status parity.service to monitor the status

$ systemctl --user enable parity.service to start the service automatically at boot.

 

 

 

 

Geth

...

 

Eth

...

 

 

Run a node

...

 

...