Files
coolify-docs/content/docs/knowledge-base/commands.mdx
T
Andras Bacsai a64450ae9d feat(platform): migrate docs from VitePress to Fumadocs + TanStack Start
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.
2026-05-06 12:08:05 +02:00

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"
```