For the complete documentation index, see llms.txt. This page is also available as Markdown.

Up And Running

How to start running blockx

Running in user (Assume) : salinem

Ensure you have add sudoers, refer

Create Systemd

Create file in ${HOME}/systemd/blockx-node.service

export HOME="/mainnet/salinem"
cat > ${HOME}/systemd/blockx-node.service  <<EOF
[Unit]
Description=blockx node service
After=network-online.target

[Service]
User=blockx
ExecStart=${HOME}/bin/blockxd start 
Restart=on-failure
RestartSec=3
LimitNOFILE=500000
LimitNPROC=500000
Environment="HOME=${HOME}"


[Install]
WantedBy=multi-user.target

EOF

Linking to Systemd

Reload Daemon

Enable Service when booting

Start Service

Check Service

Last updated