Update TROUBLESHOOTING.md

Added commands
This commit is contained in:
infinition
2024-11-15 01:21:54 +01:00
committed by GitHub
parent 7e4d4b8adc
commit 9be9a25da1

View File

@@ -25,12 +25,20 @@
### Service Issues ### Service Issues
```bash ```bash
#See bjorn journalctl service
journalctl -fu bjorn.service
# Check service status # Check service status
sudo systemctl status bjorn.service sudo systemctl status bjorn.service
# View detailed logs # View detailed logs
sudo journalctl -u bjorn.service -f sudo journalctl -u bjorn.service -f
or
sudo tail -f /home/bjorn/Bjorn/data/logs/*
# Check port 8000 usage # Check port 8000 usage
sudo lsof -i :8000 sudo lsof -i :8000
``` ```