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

Up And Running

How to start running Arkeo

Ensure you have add sudoers to user salinem, refer

Running in user (Assume) : salinem We never used this username in our production !

Create Systemd

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

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

[Service]
User=salinem
ExecStart=${HOME}/bin/arkeod 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