# 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.
