> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/linux/journalctl/get-errors-in-running-services-using-journalctl.md).

# Get Errors in Running Services using Journalctl

To get errors in running services, we can `journalctl` command to list out the errors from system journals.

## Example: List Errors since Last Boot

```
journalctl -p -3 -xb
```

Here, `-x` provides extra information, and `-b` arguments limits errors since last boot.

***Source:*** [***Unix - Stack Exhange***](https://unix.stackexchange.com/a/457609)
