🕎Run Node

Node will be run on Ubuntu 22.04

Before you start, please check your wallet to see you already have at least 1000 tDUSK (or you already stake DUSK on ERC20). If not, please go Faucet or Wallet

Install ITN Dusk

cd
curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/itn-installer/releases/download/v0.1.6/itn-installer.sh | sudo sh

You should see the result

Export consensus key

rusk-wallet export -d /opt/dusk/conf -n consensus.keys

Enter your wallet password

Enter encryption password

You should remember all pwd you just set

The keys should be placed in /opt/dusk/conf

Set password to environment variable

sh /opt/dusk/bin/setup_consensus_pwd.sh

Enter your encryption pwd you just set above

Start your node

service rusk start

You would see nothing, it's correct

Check log

Check accepted block if your node is synchronizing

grep "block accepted" /var/log/rusk.log

You would see somethings like below

For success log

tail -f /var/log/rusk.log

For error log

tail -f /var/log/rusk.err

Last updated