Page 1 of 1

rsyslog

Posted: Thu Dec 01, 2022 4:07 pm
by mister_monitor
How do I get rsyslog to start every time I reboot?

Re: rsyslog

Posted: Tue Jun 20, 2023 10:15 am
by weevessels
you can see details how to start rsyslog every time i reboot here: https://unix.stackexchange.com/questio ... r-a-reboot

Re: rsyslog

Posted: Wed Nov 29, 2023 3:28 pm
by ssunga
Hey @weevessels,

Thanks for reaching out. Keep us updated on this - I'd love to see if you got this resolved.

Re: rsyslog

Posted: Wed Nov 29, 2023 3:32 pm
by eloyd
mister_monitor wrote: Thu Dec 01, 2022 4:07 pm How do I get rsyslog to start every time I reboot?
Hire EverWatch to set up a Nagios monitor on your box with an event handler to restart the service if it's not running. :lol:

Re: rsyslog

Posted: Mon Dec 04, 2023 5:51 pm
by kvang
Assuming you have (sudo) super user privileges.

Run this command to enable start at boot

Code: Select all

systemctl enable rsyslog
Reboot and run the following command to check rsyslog status.

Code: Select all

systemctl status rsyslog
Check logs to identify any potential issues.

Code: Select all

journalctl -xe | grep rsyslog
Thanks!