▶️Cheatsheet

Node Management

  1. Start the Docker container :

sudo docker compose up -d
  1. Stop the Docker :

sudo docker compose down
  1. Check logs node :

sudo docker compose logs -f --tail=0
  1. Update node to the newest :

cd ~/ar-io-node
sudo docker compose down
git checkout main
git pull
sudo docker compose up -d
  1. Downgrade to the specifiead version :

cd ~/ar-io-node
git checkout r29
docker compose down
docker compose up -d --build

#note : change r29 to any specified version
  1. Check verion node :

curl http://localhost:3000/ar-io/info | jq
  1. Test node

 https://<your-domain>/3lyxgbgEvqNSvJrTX2J7CfRychUD5KClFhhVLyTPNCQ in your browser.

Troubleshooting

  1. Insufficient balance when Observing.

Solution : You need to top up Turbo Balance on Observer Wallet

Step : # Go to this website -> https://turbo-topup.com/ ## Connect with your Observer wallet ### Buy Credit -> You can use USD / AR #### 0.5 AR or equal is enough

Last updated

Was this helpful?