Kristyna Streitova changed bug 943723
What Removed Added
Status NEW RESOLVED
Resolution --- DUPLICATE

Comment # 1 on bug 943723 from
This is a duplicate of the bug#943096.

The problem is that you should shutdown mysql/mariadb by sending a SIGTERM.
However with the mysql-systemd-helper script that we use the mysqld only sees a
SIGKILL.

The following patch should fix this issue:

```
Index: mysql-systemd-helper
===================================================================
--- mysql-systemd-helper        (revision 41)
+++ mysql-systemd-helper        (working copy)
@@ -144,7 +144,7 @@
 }

 mysql_start() {
-       /usr/sbin/mysqld --user="$mysql_daemon_user" $opts 
+       exec /usr/sbin/mysqld --user="$mysql_daemon_user" $opts 
 }

 # We rely on output in english at some points
```


The fix was commited to our mysql-packaging git [1] and a fixed package will be
available in openSUSE 13.1 & 13.2 in the next mysql/mariadb update. 

[1]
https://github.com/openSUSE/mysql-packaging/commit/54d0b4a8d4f0df843b3b631d3ef92bda1790c4e1

*** This bug has been marked as a duplicate of bug 943096 ***


You are receiving this mail because: