Last active
October 16, 2024 06:42
-
-
Save Korveld/57394271a23addc5ef8bd5567e2e74ba to your computer and use it in GitHub Desktop.
Supervisor cheat sheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo systemctl start supervisord | |
sudo systemctl enable supervisord | |
sudo supervisorctl reread | |
sudo supervisorctl update | |
sudo supervisorctl start websockets | |
sudo supervisorctl status | |
Monitor Logs | |
tail -f /var/www/html/storage/logs/websockets.log | |
Ensure WebSockets Run at Startup | |
sudo systemctl enable supervisord | |
Stop the Supervisor Service | |
sudo systemctl stop supervisord |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment