# Useful Command

{% hint style="warning" %}
Add **sudo** if you're not **ROOT** users.
{% endhint %}

#### Update your goracle binary

{% code overflow="wrap" %}

```
goracle update
```

{% endcode %}

If you're using old version like `1.0.14`, you need to download manually using the following command below.

{% code overflow="wrap" %}

```bash
sudo wget -qO /usr/bin/goracle https://staging.dev.goracle.io/downloads/latest-staging/goracle && sudo chmod u+x /usr/bin/goracle
```

{% endcode %}

#### Check your goracle node logs

{% code overflow="wrap" %}

```
docker logs -f goracle-nr
```

{% endcode %}

#### Check your goracle information

```
goracle info
```

#### Check your goracle node status

```
goracle docker-status
```

#### Stop your node

```
goracle docker-stop
```

#### :warning: Delete container :warning:

```
docker rm goracle-nr
```

#### :warning: Delete all container with exited status :warning:

```bash
docker rm $(docker ps --filter status=exited -q)
```

#### Start node

```
goracle docker-start --background
```

{% hint style="info" %}
**--background** flags use for your node to run in the background.
{% endhint %}

#### Backup your node

```
cat .goracle
```

Copy all the the input to notepad or you can use [**mobaxterm**](https://mobaxterm.mobatek.net/download.html) and download `.goracle` file and save to your pc.


---

# 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.strnan.top/testnet/goracle/useful-command.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.
