From 6410fd8d58e250a877a0bcdab06184e45e707c65 Mon Sep 17 00:00:00 2001
From: Georg
Date: Wed, 21 Jul 2021 12:34:32 +0200
Subject: Initial Systemd Service Run: 1/3

Signed-off-by: Georg <georg@lysergic.dev>
---
 systemd/mysqld_percona.service | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 systemd/mysqld_percona.service

(limited to 'systemd/mysqld_percona.service')

diff --git a/systemd/mysqld_percona.service b/systemd/mysqld_percona.service
new file mode 100644
index 0000000..7f98750
--- /dev/null
+++ b/systemd/mysqld_percona.service
@@ -0,0 +1,15 @@
+[Unit]
+Description=Percona XtraDB Cluster Server
+After=syslog.target network.target
+
+[Service]
+User=mysql
+Group=mysql
+Type=simple
+PIDFile=/run/mysql/mysqld.pid
+ExecStart=/opt/mysql/bin/mysqld --defaults-file=/etc/my.cnf -h /var/lib/mysql --socket=/run/mysql/mysql.sock --pid-file=/run/mysql/mysqld.pid
+#ExecStop=/usr/bin/kill $MAINPID
+RuntimeDirectory=mysql
+
+[Install]
+WantedBy=multi-user.target
-- 
cgit v1.2.3