Installation

Verify and Troubleshoot

Verify the Southactyl install and fix common problems.

Verify and troubleshoot

Verify installed services

Run:

Terminal
php -v
composer --version
php artisan --version
php artisan about
systemctl status redis-server
systemctl status southactyl-queue.service
systemctl status nginx

Then open:

https://panel.example.com

Sign in with the admin user created during installation.

Check logs

Queue worker logs:

Terminal
journalctl -u southactyl-queue.service -n 100 --no-pager

NGINX error logs:

Terminal
tail -n 100 /var/log/nginx/southactyl-error.log

Laravel logs:

Terminal
ls -lah /var/www/southactyl/storage/logs
tail -n 100 /var/www/southactyl/storage/logs/laravel-*.log

Common problems

ProblemLikely causeFix
NGINX will not startMissing SSL certificateRun Certbot first or check certificate paths
Blank page / 500 errorWrong permissions or bad .envCheck Laravel logs and run chown again
Login/session issuesCache or session driver misconfiguredRe-run environment setup and use Redis
Emails do not sendMail settings are wrongRe-run php artisan p:environment:mail
Queue tasks never runQueue worker not runningCheck systemctl status southactyl-queue.service
Scheduled tasks never runCron missingAdd the scheduler cron line
Database connection failsWrong DB host/user/passwordRe-run php artisan p:environment:database
PHP files download instead of executePHP-FPM/NGINX config brokenCheck fastcgi_pass and PHP-FPM service

Security checklist

Before using the panel in production:

  • Use HTTPS only
  • Back up .env
  • Back up the APP_KEY
  • Use a strong database password
  • Keep the database bound to localhost unless you know what you are doing
  • Keep the server updated
  • Restrict SSH access
  • Enable firewall rules for only required ports
  • Do not run random third-party install scripts on production servers
  • Document any Southactyl-specific command or namespace changes

Next step

After the panel works, install and configure Wings on your node server, then connect the node to Southactyl from the admin panel.

Copyright © 2026