2022-08-27 08:30:18 +00:00
|
|
|
# Linux systemd notes
|
2021-06-08 18:24:43 +00:00
|
|
|
|
|
|
|
Edit the *sysmon-client.service* file and change the sysmon-server URL accordingly to your environment.
|
|
|
|
|
|
|
|
Setup as systemd service to start automatically at boot:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
cp sysmon-client.service /etc/systemd/system/
|
|
|
|
systemctl daemon-reload
|
|
|
|
systemctl enable sysmon-client
|
|
|
|
systemctl restart sysmon-client
|
2022-08-27 08:30:18 +00:00
|
|
|
```
|