syslogd/doc/readme-service.md

21 lines
419 B
Markdown
Raw Normal View History

# Syslogd as a System Service
## Systemd
2021-01-29 10:18:08 +00:00
Edit the **syslogd.service** and configure required options.
To install as a systemd service, copy the **syslogd.service**
file into */etc/systemd/system/* and enable the service:
```shell
systemctl daemon-reload
systemctl enable syslogd.service
systemctl restart syslogd.service
```
To read log output from the service, use:
```shell
journalctl -f -u syslogd.service
```