> ## Documentation Index
> Fetch the complete documentation index at: https://coollabstechnologiesbt.mintlify.site/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Commands

> A list of commands that you can use to manage your Coolify server.

<AccordionGroup>
  <Accordion title="Root password reset without SMTP.">
    You can use the following method to reset the root user's password, in case you forgot and do not have an SMTP server set, so you cannot request a forgot password.

    Login to your server through SSH and execute the following command:

    ```bash
    docker exec -ti coolify bash -c "php artisan root:reset-password"
    ```
  </Accordion>

  <Accordion title="Root email change.">
    You can change root user's email.

    Login to your server through SSH and execute the following command:

    ```bash
    docker exec -ti coolify bash -c "php artisan root:change-email"
    ```
  </Accordion>

  <Accordion title="Delete a stuck service.">
    You can easily delete a stucked service.

    Login to your server through SSH and execute the following command:

    ```bash
    docker exec -ti coolify bash -c "php artisan services:delete"
    ```
  </Accordion>
</AccordionGroup>
