> For the complete documentation index, see [llms.txt](https://docs.hollaex.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hollaex.com/get-started/cli-how-tos/stop-exchange.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.hollaex.com/get-started/cli-how-tos/stop-exchange.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
