Symptoms
When performing a reboot, a service does not start automatically and can start manually.
Description
This typically occurs when a service is disabled in systemd.
Workaround
Determine if the service is enabled in systemd by running the following in SSH or WHM >> Terminal as root (replace $SERVICE with the service that is not automatically started when performing a reboot):
systemctl is-enabled $SERVICE
If the service is disabled and you want the service to start automatically when performing a reboot, you can enable the service in systemd by running the following in SSH or WHM >> Terminal as root (replace $SERVICE with the service that is not automatically started when performing a reboot):
systemctl enable $SERVICE
Example:
# systemctl is-enabled mariadb
disabled
# systemctl enable mariadb
# systemctl is-enabled mariadb
enabled