MariaDB /etc/mysql/mariadb.cnf

Original 📋 Ubuntu 20.04 LTS (Focal Fossa) 23 Zeilen

Läuft auf

Ansicht:
Ubuntu 20.04 LTS (Focal Fossa)
Gleich auf:
Debian 10 (Buster) Debian 9 (Stretch) Ubuntu 18.04 LTS (Bionic Beaver)
Andere Versionen:

Details

Größe
23 Zeilen
MD5
46a0151b3b022b225cabb97e6d1ad947
SHA256
9ea2014b6a0b2db53352c64b3d6a569ad8bf613e719b84ccc11ff84a37e035af
/etc/mysql/mariadb.cnf
# The MariaDB configuration file
#
# The MariaDB/MySQL tools read configuration files in the following order:
# 1. "/etc/mysql/mariadb.cnf" (this file) to set global defaults,
# 2. "/etc/mysql/conf.d/*.cnf" to set global options.
# 3. "/etc/mysql/mariadb.conf.d/*.cnf" to set MariaDB-only options.
# 4. "~/.my.cnf" to set user-specific options.
#
# If the same option is defined multiple times, the last one will apply.
#
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.

#
# This group is read both both by the client and the server
# use it for options that affect everything
#
[client-server]

# Import all .cnf files from configuration directory
!includedir /etc/mysql/conf.d/
!includedir /etc/mysql/mariadb.conf.d/

Kopieren & Einfügen

curl:
curl https://exampleconfig.com/api/v1/config/original/46a0151b3b022b225cabb97e6d1ad947?hint=mariadb.cnf
wget:
wget -O mariadb.cnf https://exampleconfig.com/api/v1/config/original/46a0151b3b022b225cabb97e6d1ad947?hint=mariadb.cnf

Für KI-Agenten

<prompt><role>DevOps agent</role><source url='https://exampleconfig.com/api/v1/config/original/46a0151b3b022b225cabb97e6d1ad947?hint=mariadb.cnf' /><config><app>MariaDB</app><os>Ubuntu 20.04 LTS (Focal Fossa)</os><location>/etc/mysql/mariadb.cnf</location><lines>23</lines><md5>46a0151b3b022b225cabb97e6d1ad947</md5><sha256>9ea2014b6a0b2db53352c64b3d6a569ad8bf613e719b84ccc11ff84a37e035af</sha256></config></prompt>

Füge es in Claude, ChatGPT oder einen anderen KI-Assistenten ein.

MariaDB installieren

Alpine Linux

sudo apk add mariadb

Debian

sudo apt update && sudo apt install mariadb-server

Red Hat Enterprise Linux

sudo yum install mariadb-server

Ubuntu

sudo apt update && sudo apt install mariadb-server

Ablageort

Pfad
/etc/mysql/mariadb.cnf
Verzeichnis
/etc/mysql/
Bedeutung
Systemweites Konfig-Verzeichnis
Beschreibung
In /etc/ liegen systemweite Einstellungen, die alle Benutzer betreffen.

FAQ

Wann sollte ich mariadb.cnf verwenden?

Nutze sie, um eine fehlende Default-Datei wiederherzustellen, zu prüfen, was ausgeliefert wurde, oder sie gegen deine aktuelle MariaDB-Config zu diffen.

Wie stelle ich die Defaults von MariaDB wieder her?

Lad die Datei runter, sichere die aktuelle in /etc/mysql/mariadb.cnf, ersetze sie und lade MariaDB neu oder starte es neu.

Ist mariadb.cnf für den produktiven Einsatz geeignet?

Das ist der Hersteller-Default für Ubuntu 20.04 LTS (Focal Fossa). Nimm sie als Basis und prüf Security- und Performance-Einstellungen, bevor du sie produktiv nutzt.

Wie unterscheidet sich das von anderen OS-Versionen?

Defaults variieren je nach Distro und Version. Diese Version passt zu Ubuntu 20.04 LTS (Focal Fossa).

Kann ich das fürs Troubleshooting von MariaDB nutzen?

Ja. Diff es gegen deine Version, finde Abweichungen und stell nur die Teile wieder her, die du brauchst.