Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
5.5.32
-
None
-
None
Description
MariaDB's binary mysqld respects [mariadb] and [mariadb-5.5] sections in my.cnf. Then, inside mysqld_safe script, settings in the sections above can be read using (read #1)
/usr/bin/my_print_defaults --loose-verbose --mysqld
|
After that mysqld_safe specific settings is read using (read #2)
/usr/bin/my_print_defaults --loose-verbose mysqld_safe safe_mysqld
|
Imagine the following my.cnf:
[mysqld_safe]
|
log-error=/var/log/mysqld.log
|
[mariadb]
|
log-error=/var/log/mariadb/mariadb.log
|
As a result, after log-error setting was read in [mariadb] section (read #1), it is overloaded by mysqld_safe section after that (read #2). Generally, there is no way how to define mysqld_safe settings differently in mariadb.
So what I'm proposing is to introduce mariadb specific settings for mysqld_safe, which would mean basically to introduce new section with name for example [mariadb_mysqld_safe].
A patch could be very simple:
diff -up mariadb-5.5.32/scripts/mysqld_safe.sh.mariasection mariadb-5.5.32/scripts/mysqld_safe.sh
|
--- mariadb-5.5.32/scripts/mysqld_safe.sh.mariasection 2013-09-02 14:08:16.523188070 +0200
|
+++ mariadb-5.5.32/scripts/mysqld_safe.sh 2013-09-02 14:15:28.710908632 +0200
|
@@ -509,7 +509,7 @@ then
|
SET_USER=0
|
fi
|
|
-parse_arguments `$print_defaults $defaults --loose-verbose mysqld_safe safe_mysqld`
|
+parse_arguments `$print_defaults $defaults --loose-verbose mysqld_safe safe_mysqld mariadb_mysqld_safe`
|
parse_arguments PICK-ARGS-FROM-ARGV "$@"
|
|