Skip to content

Instantly share code, notes, and snippets.

@MicrowaveDev
Last active August 25, 2018 20:03
Show Gist options
  • Save MicrowaveDev/688826f6aad76a623fcbf90507530d5d to your computer and use it in GitHub Desktop.
Save MicrowaveDev/688826f6aad76a623fcbf90507530d5d to your computer and use it in GitHub Desktop.
Parity linux service
bash <(curl https://get.parity.io -Lk) -r stable
sudo wget -O /etc/systemd/system/parity-testnet-node.service https://gist.githubusercontent.com/Jonybang/688826f6aad76a623fcbf90507530d5d/raw/16968c87bcf54976c81e06e8b16007b14de139f3/parity-testnet-node.service
sudo systemctl daemon-reload
sudo systemctl enable parity-testnet-node.service
[Unit]
Description=Parity testnet node
[Service]
User=root
Restart=always
RestartSec=3
ExecStart=/usr/bin/parity --testnet --chain kovan --jsonrpc-hosts all --jsonrpc-interface all --ws-hosts all --ws-interface all -ws-origins all --jsonrpc-cors all --force-ui --no-persistent-txqueue
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment