> 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/systemd/watch-systemd-service-status.md).

# Watch Systemd Service Status

Running `sudo systemctl status {A_SERVICE}` again and again to watch latest logs of a web server can be cumbersome. Instead we can watch its status continously using `watch` command.

## Example

```bash
sudo watch systemctl status caddy
```

***Source:*** [***Unix - StackExchange***](https://unix.stackexchange.com/questions/555176/watch-systemd-service-status-with-systemctl)
