diff options
author | Daniel Black <grooverdan@users.sourceforge.net> | 2015-03-12 07:26:04 +1100 |
---|---|---|
committer | Daniel Black <daniel@mariadb.org> | 2021-03-28 13:53:55 +1100 |
commit | 460d480c7496e670686c01a1a1d707fb4d412ece (patch) | |
tree | a0e2cdcd128c952c89d4c4cc5795120a47c12ece /cmake | |
parent | fa0ad2fb11859fdeec93bbf3c4a6fc418eb372ac (diff) | |
download | mariadb-git-460d480c7496e670686c01a1a1d707fb4d412ece.tar.gz |
MDEV-5536: add systemd socket activation
Systemd has a socket activation feature where a mariadb.socket
definition defines the sockets to listen to, and passes those
file descriptors directly to mariadbd to use when a connection
occurs.
The new functionality is utilized when starting as follows:
systemctl start mariadb.socket
The mariadb.socket definition only needs to contain the network
information, ListenStream= directives, the mariadb.service
definition is still used for service instigation.
When mariadbd is started in this way, the socket, port, bind-address
backlog are all assumed to be self contained in the mariadb.socket
definition and as such the mariadb settings and command line
arguments of these network settings are ignored.
See man systemd.socket for how to limit this to specific ports.
Extra ports, those specified with extra_port in socket activation
mode, are those with a FileDescriptorName=extra. These need
to be in a separate service name like mariadb-extra.socket and
these require a Service={mariadb.service} directive to map to the
original service. Extra ports need systemd v227 or greater
(not RHEL/Centos7 - v219) when FileDescriptorName= was added,
otherwise the extra ports are treated like ordinary ports.
The number of sockets isn't limited when using systemd socket activation
(except by operating system limits on file descriptors and a minimal
amount of memory used per file descriptor). The systemd sockets passed
can include any ownership or permissions, including those the
mariadbd process wouldn't normally have the permission to create.
This implementation is compatible with mariadb.service definitions.
Those services started with:
systemctl start mariadb.service
does actually start the mariadb.service and used all the my.cnf
settings of sockets and ports like it previously did.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/systemd.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmake/systemd.cmake b/cmake/systemd.cmake index 84d0cba94d9..c223716faeb 100644 --- a/cmake/systemd.cmake +++ b/cmake/systemd.cmake @@ -37,6 +37,7 @@ MACRO(CHECK_SYSTEMD) ENDIF() SET(CMAKE_REQUIRED_LIBRARIES ${LIBSYSTEMD}) CHECK_LIBRARY_EXISTS(systemd sd_listen_fds "" HAVE_SYSTEMD_SD_LISTEN_FDS) + CHECK_LIBRARY_EXISTS(systemd sd_listen_fds_with_names "" HAVE_SYSTEMD_SD_LISTEN_FDS_WITH_NAMES) CHECK_INCLUDE_FILES(systemd/sd-daemon.h HAVE_SYSTEMD_SD_DAEMON_H) CHECK_FUNCTION_EXISTS(sd_notify HAVE_SYSTEMD_SD_NOTIFY) CHECK_FUNCTION_EXISTS(sd_notifyf HAVE_SYSTEMD_SD_NOTIFYF) |