File tree Expand file tree Collapse file tree 8 files changed +70
-4
lines changed Expand file tree Collapse file tree 8 files changed +70
-4
lines changed Original file line number Diff line number Diff line change 12
12
# Run program with --help to get a list of available options and with
13
13
# --print-defaults to see which it would actually understand and use.
14
14
15
+ #
16
+ # This group is read both both by the client and the server
17
+ # use it for options that affect everything
18
+ #
19
+ [client-server]
20
+
15
21
# Import all .cnf files from configuration directory
16
22
!includedir /etc/mysql/conf.d/
17
23
!includedir /etc/mysql/mariadb.conf.d/
Original file line number Diff line number Diff line change
1
+ #
2
+ # This group is read by the client library
3
+ # Use it for options that affect all clients, but not the server
4
+ #
5
+
1
6
[client]
2
7
# Default is Latin1, if you need UTF-8 set this (also in server section)
3
8
default-character-set = utf8mb4
4
9
5
- [mysql]
6
- default-character-set = utf8mb4
7
-
10
+ # This group is *never* read by mysql client library, though this
11
+ # /etc/mysql/mariadb.cnf.d/client.cnf file is not read by Oracle MySQL
12
+ # client anyway.
13
+ # If you use the same .cnf file for MySQL and MariaDB,
14
+ # use it for MariaDB-only client options
15
+ [client-mariadb]
Original file line number Diff line number Diff line change
1
+ #
2
+ # These groups are read by MariaDB command-line tools
3
+ # Use it for options that affect only one utility
4
+ #
5
+
6
+ [mysql]
7
+ # Default is Latin1, if you need UTF-8 set this (also in server section)
8
+ default-character-set = utf8mb4
9
+
10
+ [mysql_upgrade]
11
+
12
+ [mysqladmin]
13
+
14
+ [mysqlbinlog]
15
+
16
+ [mysqlcheck]
17
+
18
+ [mysqldump]
19
+
20
+ [mysqlimport]
21
+
22
+ [mysqlshow]
23
+
24
+ [mysqlslap]
Original file line number Diff line number Diff line change
1
+ #
2
+ # These groups are read by MariaDB server.
3
+ # Use it for options that only the server (but not clients) should see
4
+ #
5
+ # See the examples of server my.cnf files in /usr/share/mysql/
6
+ #
7
+
8
+ # this is read by the standalone daemon and embedded servers
9
+ [server]
10
+
11
+ # this is only for the mysqld standalone daemon
1
12
[mysqld]
13
+
2
14
#
3
15
# * Basic Settings
4
16
#
@@ -100,3 +112,16 @@ collation-server = utf8mb4_general_ci
100
112
# Also available for other users if required.
101
113
# See https://mariadb.com/kb/en/unix_socket-authentication-plugin/
102
114
plugin-load-add = auth_socket.so
115
+
116
+ # this is only for embedded server
117
+ [embedded]
118
+
119
+ # This group is only read by MariaDB servers, not by MySQL.
120
+ # If you use the same .cnf file for MySQL and MariaDB,
121
+ # you can put MariaDB-only options here
122
+ [mariadb]
123
+
124
+ # This group is only read by MariaDB-10.0 servers.
125
+ # If you use the same .cnf file for MariaDB of different versions,
126
+ # use this group for options that older servers don't understand
127
+ [mariadb-10.0]
Original file line number Diff line number Diff line change 1
1
debian/additions/innotop/innotop usr/bin/
2
+ debian/additions/mariadb.conf.d/client.cnf etc/mysql/mariadb.conf.d
2
3
debian/additions/mysqlreport usr/bin/
3
4
usr/bin/mysql_find_rows
4
5
usr/bin/mysql_fix_extensions
Original file line number Diff line number Diff line change
1
+ etc/mysql/mariadb.conf.d
Original file line number Diff line number Diff line change 1
1
debian/additions/mariadb.cnf etc/mysql/
2
- debian/additions/mariadb.conf.d etc/mysql/
Original file line number Diff line number Diff line change 1
1
debian/additions/debian-start etc/mysql
2
2
debian/additions/debian-start.inc.sh usr/share/mysql
3
3
debian/additions/echo_stderr usr/share/mysql
4
+ debian/additions/mariadb.conf.d/server.cnf etc/mysql/mariadb.conf.d
5
+ debian/additions/mariadb.conf.d/mysqld_safe.cnf etc/mysql/mariadb.conf.d
4
6
etc/apparmor.d/usr.sbin.mysqld
5
7
usr/bin/aria_chk
6
8
usr/bin/aria_dump_log
You can’t perform that action at this time.
0 commit comments