curl https://exampleconfig.com/api/v1/config/original/c08358d02a853b1dda4bcc4a56f5f798?hint=debian-start
wget -O debian-start https://exampleconfig.com/api/v1/config/original/c08358d02a853b1dda4bcc4a56f5f798?hint=debian-start
#!/bin/bash # # This script is executed by both SysV init /etc/init.d/mariadb and # systemd mariadb.service on every (re)start. # # Changes to this file will be preserved when updating the Debian package. # # shellcheck source=debian/additions/debian-start.inc.sh source /usr/share/mysql/debian-start.inc.sh # Read default/mysql first and then default/mariadb just like the init.d file does if [ -f /etc/default/mysql ] then # shellcheck source=/dev/null . /etc/default/mysql fi if [ -f /etc/default/mariadb ] then # shellcheck source=/dev/null . /etc/default/mariadb fi MARIADB="/usr/bin/mariadb --defaults-extra-file=/etc/mysql/debian.cnf" MYADMIN="/usr/bin/mariadb-admin --defaults-extra-file=/etc/mysql/debian.cnf" # Don't run full mariadb-upgrade on every server restart, use --version-check to do it only once MYUPGRADE="/usr/bin/mariadb-upgrade --defaults-extra-file=/etc/mysql/debian.cnf --version-check --silent" MYCHECK_SUBJECT="WARNING: mariadb-check has found corrupt tables" MYCHECK_RCPT="${MYCHECK_RCPT:-root}" ## Checking for corrupt, not cleanly closed (only for MyISAM and Aria engines) and upgrade needing tables. # The following commands should be run when the server is up but in background # where they do not block the server start and in one shell instance so that # they run sequentially. They are supposed not to echo anything to stdout. # If you want to disable the check for crashed tables comment # "check_for_crashed_tables" out. # (There may be no output to stdout inside the background process!) # Need to ignore SIGHUP, as otherwise a SIGHUP can sometimes abort the upgrade # process in the middle. trap "" SIGHUP ( upgrade_system_tables_if_necessary; check_root_accounts; check_for_crashed_tables; ) >&2 & exit 0
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
Use this original configuration file when you need to restore MariaDB to its default state after misconfiguration, during fresh installations, or as a baseline for customization. It's particularly useful for troubleshooting when your current config isn't working properly.
Download this file and replace your current configuration at /etc/mysql/debian-start
. Make sure to backup your existing configuration first, then restart the MariaDB service to apply the changes.
This is the factory-default configuration that ships with MariaDB on Ubuntu 24.04 LTS (Noble Numbat). While it provides a secure baseline, you should review and customize security settings based on your specific production requirements and compliance needs.
This configuration is specifically from Ubuntu 24.04 LTS (Noble Numbat). Different operating systems and versions may have slightly different default settings, security patches, or feature availability. Check the compatibility section above for other OS versions.
Yes, this original configuration is excellent for troubleshooting. Compare it with your current settings to identify modifications that might be causing issues, or temporarily replace your config with this one to isolate problems.