# Cheatsheet

**Node Management**

1. Start the Docker container :&#x20;

```
sudo docker compose up -d
```

2. Stop the Docker :&#x20;

```
sudo docker compose down
```

3. Check logs node :&#x20;

```
sudo docker compose logs -f --tail=0
```

4. Update node to the newest :&#x20;

```
cd ~/ar-io-node
sudo docker compose down
git checkout main
git pull
sudo docker compose up -d
```

5. Downgrade to the specifiead version :&#x20;

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

#note : change r29 to any specified version
```

6. Check verion node :&#x20;

```php
curl http://localhost:3000/ar-io/info | jq
```

7. Test node

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

**Troubleshooting**

1. Insufficient balance when Observing.

<figure><img src="/files/CJrC5N94sOMdZpxlvsBF" alt=""><figcaption></figcaption></figure>

> 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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.logosnodos.online/mainnet-node/ar.io/cheatsheet.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
