Resolving services that are running outdated executables

Hugo Aguiar

Member
Apr 5, 2018
14
1
3
brasil
cPanel Access Level
Root Administrator
Hello, I am new to cpanel and linux, and I would like a help with an email that always arrives to the min of processes that I do not know how it ends.

Code:
Detected 10 services that are running outdated executables: httpd.service lvestats.service atd.service dbus.service auditd.service [email protected] systemd-udevd.service xvhealth.service polkit.service systemd-logind.service You must take one of the following actions to ensure the system is up-to-date:

    Restart the listed services using “systemctl restart”; then click “Scan Again” to check non-service processes.

I would like to know how I can give the right commands in the terminal, thanks for the help of all.
 

cPanelLauren

Product Owner II
Staff member
Nov 14, 2017
13,266
1,304
363
Houston
Hi @Hugo Aguiar

To restart the services you'll just run one of the following - here I'm using httpd as an example:

The script if it's available:
Code:
/scripts/restartsrv_httpd
or if not available:
Code:
systemctl restart httpd.service
Admittedly not many of the services listed in your case do have a /scripts/ script for them so you'd need to use systemctl to restart them or restart the server.

Thanks!