2024-03-23 16:06:28 +11:00
|
|
|
[Unit]
|
|
|
|
Description=MariaDB database server
|
|
|
|
After=syslog.target
|
|
|
|
After=network.target
|
|
|
|
|
|
|
|
[Service]
|
2025-03-07 22:32:45 -05:00
|
|
|
#allow to run as root pre and post
|
2024-04-06 00:48:58 -04:00
|
|
|
PermissionsStartOnly=true
|
2024-03-23 16:06:28 +11:00
|
|
|
|
|
|
|
#reset
|
|
|
|
ExecStartPre=
|
2025-03-07 22:58:08 -05:00
|
|
|
ExecStartPre=/usr/bin/install -d /run/mariadb -o mysql -g mysql -m 0755
|
2025-03-07 22:32:45 -05:00
|
|
|
|
|
|
|
# add mariadb >=10.6 specifics
|
|
|
|
ExecStartPre=/bin/sh -c "systemctl unset-environment _WSREP_START_POSITION"
|
|
|
|
ExecStartPre=/bin/sh -c "[ ! -e /usr/bin/galera_recovery ] && VAR= || \
|
|
|
|
VAR=`/usr/bin/galera_recovery`; [ $? -eq 0 ] \
|
|
|
|
&& systemctl set-environment _WSREP_START_POSITION=$VAR || exit 1"
|
|
|
|
|
2024-03-23 16:06:28 +11:00
|
|
|
#ours : we need root user as + and ! are not yet supported
|
2025-03-07 22:32:45 -05:00
|
|
|
#ExecStartPre=/usr/libexec/mysql-check-socket
|
2024-03-23 16:06:28 +11:00
|
|
|
ExecStartPre=-/sbin/e-smith/service-status mariadb
|
2024-04-06 00:48:58 -04:00
|
|
|
ExecStartPre=-/sbin/e-smith/expand-template /var/lib/mysql.private/set.password
|
2024-03-23 16:06:28 +11:00
|
|
|
ExecStartPre=-/sbin/e-smith/expand-template /root/.my.cnf
|
|
|
|
ExecStartPre=-/sbin/e-smith/expand-template /etc/my.cnf
|
2025-03-07 22:32:45 -05:00
|
|
|
# create db here if needed
|
2024-03-23 16:06:28 +11:00
|
|
|
ExecStartPre=/sbin/e-smith/systemd/mariadb-initialize
|
|
|
|
|
|
|
|
#reset
|
|
|
|
ExecStart=
|
|
|
|
#ours
|
2025-03-07 22:32:45 -05:00
|
|
|
ExecStart=/usr/sbin/mariadbd \
|
2024-03-23 16:06:28 +11:00
|
|
|
--defaults-file=/etc/my.cnf \
|
|
|
|
--basedir=/usr \
|
|
|
|
--datadir=/var/lib/mysql \
|
|
|
|
--user=mysql \
|
2025-03-07 22:58:08 -05:00
|
|
|
--pid-file=/run/mariadb/mariadb.pid
|
2024-03-23 16:06:28 +11:00
|
|
|
|
2024-04-06 00:48:58 -04:00
|
|
|
ExecStartPost=-/sbin/e-smith/systemd/mariadb-post
|
2024-03-23 16:06:28 +11:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=sme-server.target
|
|
|
|
|