什么时候该用这个 debian.cnf?
用来恢复缺失的默认文件、确认发行版本带了什么,或拿你的 MariaDB config 做 diff。
# THIS FILE IS OBSOLETE. STOP USING IT IF POSSIBLE. # This file exists only for backwards compatibility for # tools that run '--defaults-file=/etc/mysql/debian.cnf' # and have root level access to the local filesystem. # With those permissions one can run 'mariadb' directly # anyway thanks to unix socket authentication and hence # this file is useless. See package README for more info. [client] host = localhost user = root [mysql_upgrade] host = localhost user = root # THIS FILE WILL BE REMOVED IN A FUTURE DEBIAN RELEASE.
curl https://exampleconfig.com/api/v1/config/original/df477b524b3adfdcc5f765ebfa17a6e7?hint=debian.cnf
wget -O debian.cnf https://exampleconfig.com/api/v1/config/original/df477b524b3adfdcc5f765ebfa17a6e7?hint=debian.cnf
<prompt><role>DevOps agent</role><source url='https://exampleconfig.com/api/v1/config/original/df477b524b3adfdcc5f765ebfa17a6e7?hint=debian.cnf' /><config><app>MariaDB</app><os>Debian 12 (Bookworm)</os><location>/etc/mysql/debian.cnf</location><lines>14</lines><md5>df477b524b3adfdcc5f765ebfa17a6e7</md5><sha256>18b2e9f179dabe8762a77b297f803c958a3ed9642aaa5ba184e8d56bc1cfda9a</sha256></config></prompt>
粘贴到 Claude、ChatGPT 或任何 AI 助手里。
sudo apk add mariadb
sudo apt update && sudo apt install mariadb-server
sudo yum install mariadb-server
sudo apt update && sudo apt install mariadb-server
什么时候该用这个 debian.cnf?
用来恢复缺失的默认文件、确认发行版本带了什么,或拿你的 MariaDB config 做 diff。
怎么恢复 MariaDB 的默认配置?
下载文件,把 /etc/mysql/debian.cnf 里的当前配置备份好,替换掉,然后 reload 或 restart MariaDB。
debian.cnf 适合直接上生产吗?
这是 Debian 12 (Bookworm) 的厂商默认配置,只能当基线。上生产前请检查安全和性能设置。
和其他 OS 版本有什么不同?
默认值会随发行版和版本变化,这份对应 Debian 12 (Bookworm)。
我可以用它来排查 MariaDB 吗?
可以。和你的配置做 diff 找出漂移,然后只恢复需要的段落。