ai-stack/TROUBLESHOOTING.md
ā Docker is not installed or not in PATH
ā Docker daemon is not running
Permission denied
cd ~/Downloads/n8n-workflows-main/ai-stack
chmod +x start.sh
./start.sh
Error: Port 5678 is already in use
Option 1 - Stop other programs:
Option 2 - Restart computer:
Option 3 - Stop the old stack:
Windows:
.\start.ps1 -Stop
Mac:
./start.sh --stop
Then start again.
Open PowerShell as Administrator:
Type this command:
Set-ExecutionPolicy RemoteSigned
Press Enter
Type "Y" and press Enter
Now try running start.ps1 again
Wait 2 minutes - services need time to start
Check if Docker is running (look for whale icon š³)
Check if the stack is running:
Windows:
.\start.ps1 -Status
Mac:
./start.sh --status
Look for these services:
If any say "Exited" or "Error":
.\start.ps1 -Stop or ./start.sh --stop.\start.ps1 or ./start.shError: No space left on device
Free up disk space:
Clean Docker:
docker system prune -a
Type "y" and press Enter when asked
Try again
Windows:
.\start.ps1 -NoPull
Mac:
./start.sh --no-pull
ā¹ No NVIDIA GPU detected
Windows:
Mac:
Don't have NVIDIA GPU?
That's okay! Use CPU mode:
Windows: .\start.ps1 -CPU
Mac: ./start.sh --cpu
Windows:
# Stop everything
.\start.ps1 -Stop
# Remove all containers and data
docker compose down -v
# Start fresh
.\start.ps1
Mac:
# Stop everything
./start.sh --stop
# Remove all containers and data
docker compose down -v
# Start fresh
./start.sh
ā ļø Warning: This deletes all your data! You'll start completely fresh.
Windows:
.\start.ps1 -Logs
Mac:
./start.sh --logs
Take a screenshot of any red error messages and ask for help!
| What you want | Windows | Mac |
|---|---|---|
| Start | .\start.ps1 | ./start.sh |
| Stop | .\start.ps1 -Stop | ./start.sh --stop |
| Check status | .\start.ps1 -Status | ./start.sh --status |
| View logs | .\start.ps1 -Logs | ./start.sh --logs |
| CPU mode | .\start.ps1 -CPU | ./start.sh --cpu |
| Skip download | .\start.ps1 -NoPull | ./start.sh --no-pull |
When asking for help, provide:
This helps people help you faster! š