Send logs to a central syslog-server.
- SSH to the machine or directly at terminal.
- Install rsyslog
sudo apt install rsyslog
sudo systemctl start rsyslog - Edit conf
sudo nano /etc/rsyslog.conf
- Add this text (*.* @@ip/fqdn:portnr)
*.* @@192.168.1.10:1514
- Restart service
sudo systemctl restart rsyslog