Skip to content

mastershiva-india/ETH-STORE-CEREMONY

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 

Repository files navigation

FOR - EthStorage V1 Trusted Setup Ceremony

How to Run EthStorage V1 node on ubuntupc/linux vps (automated & background process)

NODE SETUP AVAILABLE ON : https://github.com/Web3Brothers4/EthStorage-V1-Ceremony

HERE I WILL GIVE YOU A WAY TO AUTOMATE THIS NODE.

if you want the EthStorage Trusted Setup client to auto-run in the background after Ubuntu/WSL restart.

Process which is best : systemd service (best for VPS / Ubuntu server)

Create a service so it runs in the background automatically on boot.


STEP BY STEP GUIDE

1. Create a new service file:

sudo nano /etc/systemd/system/ethstorage-ceremony.service

3. Paste this (replace with your Linux username):

[Unit]
Description=EthStorage Trusted Setup Ceremony
After=network.target

[Service]
User=<username>
WorkingDirectory=/home/<username>/trusted-setup-tmp
ExecStart=/usr/bin/env bash -c 'phase2cli contribute -c ethstorage-v1-trusted-setup-ceremony'
Restart=always
RestartSec=10
StandardOutput=append:/home/<username>/ethstorage.log
StandardError=append:/home/<username>/ethstorage.err

[Install]
WantedBy=multi-user.target

3. Save & exit. Then run:

sudo systemctl daemon-reload
sudo systemctl enable ethstorage-ceremony
sudo systemctl start ethstorage-ceremony

4. Check status:

systemctl status ethstorage-ceremony

Note : Logs will be saved in:

/home//ethstorage.log

/home//ethstorage.err


About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published