mirror of
https://github.com/coollabsio/coolify-docs.git
synced 2026-06-19 07:35:55 +00:00
a64450ae9d
Replace VitePress/Vue stack with Fumadocs MDX, TanStack Start, React 19, and Vite. Migrate all documentation content to MDX under content/docs/. Add full src/ app with React components, routing, search, and API page. Remove Korrektly integration from CI/CD workflows, Dockerfile, and env vars. Update build pipeline to output to .output/public instead of docs/.vitepress/dist.
34 lines
947 B
Plaintext
34 lines
947 B
Plaintext
---
|
|
title: Commands
|
|
description: "Essential Coolify CLI commands for root password reset, email changes, and deleting stuck services via Docker exec and Artisan commands."
|
|
---
|
|
|
|
# Commands
|
|
## 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 sh -c "php artisan root:reset-password"
|
|
```
|
|
|
|
## 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 sh -c "php artisan root:change-email"
|
|
```
|
|
|
|
## Delete a stuck service
|
|
You can easily delete a stuck service.
|
|
|
|
Login to your server through SSH and execute the following command:
|
|
|
|
```bash
|
|
docker exec -ti coolify sh -c "php artisan services:delete"
|
|
```
|
|
|