# Stop Exchange

{% hint style="info" %}
If you are a cloud user, just go to the manage section of the HollaEx Dashboard, and click the buttons on there. Simple!
{% endhint %}

## Stopping the exchange

```
hollaex server --stop
```

This command is like an "off" switch for your exchange. The command would stop the started exchange, which started with the `hollaex server --start` command.

## Restarting the exchange

```
hollaex server --restart
```

This command would restart your exchange server. The exchange should be started first, before running this action.

## Stopping the exchange web

```
hollaex web --stop
```

This command will stop the exchange web server you've started with the `hollaex web --start` command.

## Restarting the exchange web

```
hollaex web --restart
```

This command will restart your existing web server. Also, you can rebuild the web server Docker image while doing a restart. If you need to apply new code changes for your web, this is the right command.

## Terminating the exchange

{% hint style="danger" %}
This action is extremely dangerous! Terminating the exchange will completely remove all the data on your own exchange, and make the exchange unrecoverable. Think twice before running this command!
{% endhint %}

```
hollaex server --terminate
```

This command will completely destroy your exchange, from your user data, balance, server structure, everything. Your exchange will become fully unrecoverable. Again, THINK TWICE before running this command.


---

# 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.hollaex.com/get-started/cli-how-tos/stop-exchange.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.
