Introduction
Systemd is a management and configuration platform available in all major Linux distributions. It provides infrastructure for service start, stop, restart and several other novel functionalities to manage services. Systemd replaces SysV and upstart initialization systems and is the default init system in most modern Linux distributions including Red Hat Enterprise Linux, Oracle Linux, Debian, Ubuntu, Fedora, SLES and openSUSE.
Preliminary support for systemd was introduced in earlier versions of MySQL. However, it had the following limitations and disadvantages:
- Use of ping tricks to check whether mysqld is ready to serve client connections.
- Though systemd had superior process control for automatic restarts, mysqld_safe was still used to identify abnormal mysqld termination and do automatic restarts. …