docs: troubleshoot webserver services (#1961)
This commit is contained in:
parent
a8cb62586e
commit
236d5e8621
|
@ -13,6 +13,12 @@ In the web interface, go to **Settings** > **Status** to see the state of the se
|
|||
|
||||

|
||||
|
||||
Or directly from a terminal:
|
||||
|
||||
```bash
|
||||
sudo systemctl --all --plain | egrep 'libretime|nginx|php.*-fpm'
|
||||
```
|
||||
|
||||
If a service isn't running, you should search for details using the tool running those services.
|
||||
On a common setup, you should use the systemd service status:
|
||||
|
||||
|
@ -35,7 +41,7 @@ The `/var/log/syslog` file contains most of the system logs combined. This log f
|
|||
```bash
|
||||
sudo tail -n 100 -f "/var/log/syslog"
|
||||
# Filter the logs
|
||||
sudo tail -n 100 -f "/var/log/syslog" | grep "libretime-"
|
||||
sudo tail -n 100 -f "/var/log/syslog" | egrep 'libretime|nginx|php.*-fpm'
|
||||
```
|
||||
|
||||
On a common setup, to access LibreTime specific logs you should search for the following files:
|
||||
|
|
Loading…
Reference in New Issue