Skip to content

Commit

Permalink
docs: troubleshoot webserver services (#1961)
Browse files Browse the repository at this point in the history
  • Loading branch information
jooola committed Jul 14, 2022
1 parent a8cb625 commit 236d5e8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/admin-manual/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ In the web interface, go to **Settings** > **Status** to see the state of the se

![](./troubleshooting-status-page.png)

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:

Expand All @@ -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:
Expand Down

0 comments on commit 236d5e8

Please sign in to comment.