Last active
August 25, 2018 20:03
-
-
Save MicrowaveDev/688826f6aad76a623fcbf90507530d5d to your computer and use it in GitHub Desktop.
Parity linux service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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