Skip to content

Simple script to deploy a parity L14 node on google cloud

Notifications You must be signed in to change notification settings

lukso-network/l14-deploy-node-gcloud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Script to deploy a L14 node on Google Cloud Compute

Deployment

$ gcloud config set project lukso-poc
$ gcloud config set compute/zone europe-west3-c

$ gcloud compute disks create disk123 \
    --size=200GB \
    --type=pd-standard \
    --replica-zones=europe-west3-b,europe-west3-c

$ gcloud compute instances create my-l14-node \
    --metadata-from-file startup-script=startup-script.sh \
    --disk=mode=rw,name=disk123

To check if the startup-script worked, ssh into the server and run:

$ cat /var/log/daemon.log

And look for startup-script.

Find here the full config of parities config.toml

Usage

SSH to the node:

Read logs:

$ tail -f /var/log/parity.log

Start node:

$ sudo systemctl start parity

Stop node:

$ sudo systemctl stop parity

To edit the config

$ sudo nano /etc/parity/config.toml

About

Simple script to deploy a parity L14 node on google cloud

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages