Differences in MariaDB in Debian (and Ubuntu)

The .deb packages provided by MariaDB Foundation's and MariaDB Corporation's repositories are not identical to the official .deb packages provided by Debian's and Ubuntu's default repositories.

The packages provided by MariaDB Foundation's and MariaDB Corporation's repositories are generated using the Debian packaging in MariaDB's official source code. The Debian packaging scripts are specifically in the debian/ directory.

The packages provided by Debian's and Ubuntu's default repositories are generated using the Debian packaging in Debian's mirror of MariaDB's source code, which contains some custom changes. The source tree can be found here:

As a consequence, MariaDB behaves a bit differently if it is installed from Debian's and Ubuntu's default repositories.

Option File Locations

  • The option file located at /etc/mysql/my.cnf is handled by the update-alternatives mechanism when the mysql-common package is installed. It is a symbolic link that references either mysql.cnf or mariadb.cnf depending on whether MySQL or MariaDB is installed. Most of the MariaDB option files are therefore actually located in /etc/mysql/mariadb.d/.

System Variables

Since MariaDB 11.6 there is no system variable difference from the Standard MariaDB.

Variable
MariaDB in Debian
Standard MariaDB
Notes

Variable

MariaDB in Debian

Standard MariaDB

Notes

utf8mb4

latin1 (for <= MariaDB 11.5)

MariaDB 11.6 also defaults to utf8mb4 hence no difference for this version and greater

utf8mb4_general_ci (for < MariaDB 11.5.2)

latin1_swedish_ci

character_set_collations has dominant effect hence removal from Debian default settings

Options

Option
MariaDB in Debian
Standard MariaDB
Notes

Option

MariaDB in Debian

Standard MariaDB

Notes

auth_socket.so

-

Before MariaDB 10.4.3, MariaDB did not enable the unix_socket authentication plugin by default.This is default in Debian, allowing passwordless login.

TLS

Authentication

  • The unix_socket authentication plugin is installed by default in new installations that use the .deb packages provided by Debian's default repositories in Debian 9 and later and Ubuntu's default repositories in Ubuntu 15.10 and later.

  • The root@localhost created by mariadb-install-db will also be created to authenticate via the unix_socket authentication plugin in these builds.

See Also

More Information

For details, check out the Debian and Ubuntu official repositories:

This page is licensed: CC BY-SA / Gnu FDL

Last updated

Was this helpful?