mariadb: switch init to mysqld_safe and mysqladmin 12147/head
authorSebastian Kemper <sebastian_ml@gmx.net>
Mon, 11 May 2020 20:55:24 +0000 (22:55 +0200)
committerSebastian Kemper <sebastian_ml@gmx.net>
Mon, 11 May 2020 22:13:11 +0000 (00:13 +0200)
commitfa6ea0b137df501d742ec053b0af4861f69b03df
tree488c40f180e5db0a105084f1f33a63f2ed8a1389
parenta61c97203f509d626667f1d031450932ecd650eb
mariadb: switch init to mysqld_safe and mysqladmin

mysqld_safe is the recommended way to start the server on non-systemd
systems ([1]). For instance, it has a crash detection with auto-restart
function, can update ulimits, setup core files, set the niceness of the
server etc. It looks like it could also be helpful when trying to set up
clusters. It's maintained upstream and adding it means we don't need to
add these features into our init script.

mysqld_safe is a script itself, so it's added to conffiles in case users
want to edit it.

It can't be run under procd, so the init script is converted to a normal
System V type. To stop the server and to reload the privileges tables
mysqladmin is used. To that end mysqladmin is moved into the server
package.

While changing the init script, the Debian init script was used for
ideas. It wasn't copied verbatim and adapted a bit here and there.
Thanks to whoever wrote it!

This commit removes the support for starting the service as a user other
than "mariadb". This makes the init script simpler. If anybody wants to
play around with the user then it's up to them to fix the permissions.

[1] https://mariadb.com/kb/en/mysqld_safe/

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
utils/mariadb/Makefile
utils/mariadb/files/mysqld.config
utils/mariadb/files/mysqld.init
utils/mariadb/patches/190-replace-hostname-in-mysqld_safe.patch [new file with mode: 0644]