You're in a terminal where supervisorctl is not in your PATH, causing "command not found" errors.
/usr/bin/supervisorctl status
/usr/bin/supervisorctl restart all
/usr/bin/supervisorctl restart backend# Check status
/app/pcna status
# Check health
/app/pcna health
# Restart all
/app/pcna restart
# Restart backend
/app/pcna restart-backend
# View logs
/app/pcna logs-backend
/app/pcna logs-frontend
# Full test
/app/pcna testexport PATH=/usr/bin:/usr/sbin:$PATH
supervisorctl status# Status check
/app/pcna status
# System health
/app/pcna health
# Restart everything
/app/pcna restart
# View backend logs
/app/pcna logs-backendYour system is running! Access it at:
- Dashboard: http://localhost:3000
- Backend API: http://localhost:8001
All services are RUNNING:
- ✅ Backend
- ✅ Frontend
- ✅ MongoDB
- ✅ System Health: 100%
# Show all commands
/app/pcna
# Run full status check
/app/pcna test
# View documentation
cat /app/COMMANDS.md
cat /app/HOW_TO_USE.txtTIP: Bookmark this command: /app/pcna status
It always works and shows your system status! ✅