diff --git a/docs/guides/databases/mariadb/how-to-install-mariadb-on-debian-9/Installing_MariaDB_on_Debian9.png b/docs/guides/databases/mariadb/how-to-install-mariadb-on-debian-12/Installing_MariaDB_on_Debian9.png similarity index 100% rename from docs/guides/databases/mariadb/how-to-install-mariadb-on-debian-9/Installing_MariaDB_on_Debian9.png rename to docs/guides/databases/mariadb/how-to-install-mariadb-on-debian-12/Installing_MariaDB_on_Debian9.png diff --git a/docs/guides/databases/mariadb/how-to-install-mariadb-on-debian-12/index.md b/docs/guides/databases/mariadb/how-to-install-mariadb-on-debian-12/index.md new file mode 100644 index 00000000000..6c1110a2edd --- /dev/null +++ b/docs/guides/databases/mariadb/how-to-install-mariadb-on-debian-12/index.md @@ -0,0 +1,305 @@ +--- +slug: how-to-install-mariadb-on-debian-12 +title: "Installing MariaDB on Debian 12" +title_meta: "How to Install MariaDB on Debian 12" +description: "This guide shows how to install and configure the MariaDB server on Debian 12." +og_description: "MariaDB is a robust, scalable and reliable SQL Server that can serve as a drop-in replacement for MySQL. This guide shows how to install and configure it on Debian 12 (Bookworm)." +authors: ["Ryan Syracuse"] +contributors: ["Diana Hoober"] +published: 2020-01-31 +modified: 2025-08-15 +keywords: ["mariadb", "Debian 12", "debian", "database", "bookworm", "mysql"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +aliases: ['/databases/mariadb/how-to-install-mariadb-on-debian-12/','/databases/mariadb/mariadb-setup-debian/'] +image: Installing_MariaDB_on_Debian9.png +external_resources: + - '[MariaDB Knowledge Base](https://mariadb.com/kb/en)' + - '[MariaDB FAQ](https://mariadb.com/kb/en/mariadb-mariadb-faq/)' + - '[MariaDB SQL commands](https://mariadb.com/kb/en/sql-commands/)' +relations: + platform: + key: how-to-install-mariadb + keywords: + - distribution: Debian 12 +tags: ["debian","mariadb","database"] +deprecated: false +--- + +MariaDB is a fork of the popular cross-platform MySQL database management system and is considered a full [drop-in replacement](https://mariadb.com/kb/en/mariadb/mariadb-vs-mysql-features/) for MySQL. MariaDB was created by one of MySQL's original developers in 2009 after MySQL was acquired by Oracle during the Sun Microsystems merger. Today MariaDB is maintained and developed by the [MariaDB Foundation](https://mariadb.org/en/foundation/) and it remain's GNU GPL software. + +{{< note >}} +This guide is written for a non-root user. Commands that require elevated privileges are prefixed with `sudo`. If you're not familiar with the `sudo` command, you can check our [Users and Groups](/docs/guides/linux-users-and-groups/) guide. +{{< /note >}} + +## Before You Begin + +1. If you have not already done so, create a Linode account and Compute Instance. See our [Get Started](/docs/products/platform/get-started/) with Linode and [Creating a Linode (Compute Instance)](/docs/products/compute/compute-instances/guides/create/) guides. + +1. Follow our [Setting Up and Securing a Compute Instance](/docs/products/compute/compute-instances/guides/set-up-and-secure/) guide to update your system and configure your hostname. You can also set the timezone, create a limited user account, and harden SSH access. + + To check your hostname run: +```command + hostname + hostname -f +``` + The first command should show your short hostname, and the second should show your fully qualified domain name (FQDN) if you have one assigned. + +## Install and Setup MariaDB + +Install MariaDB using the package manager: +```command + sudo apt install mariadb-server +``` +MariaDB will bind to localhost (127.0.0.1) by default. For information on connecting to a remote database using SSH, see our [MySQL remote access](/docs/guides/create-an-ssh-tunnel-for-mysql-remote-access/) guide, which also applies to MariaDB. + +{{< note >}} +Allowing unrestricted access to MariaDB on a public IP is not advised but you may change the address it listens on by modifying the `bind-address` parameter in `/etc/mysql/mariadb.conf.d/50-server.cnf`. If you decide to bind MariaDB to your public IP, you should implement firewall rules that restrict access to specific IP addresses. +{{< /note >}} + +### MariaDB Client + +The standard tool for interacting with MariaDB is the `mariadb` client, which is installed with the `mariadb-server` package. You can access the MariaDB client in the terminal using the `mysql` command. + +### Root Login + +1. Log into MariaDB as the root user: +```command + sudo mysql -u root -p +``` +{{< note >}} + On Debian 12, MariaDB uses the `unix_socket` plugin by default. This means that if you're logged into the system as a user with root privileges, you can press **Enter* at the password prompt and still gain access--no password is required. +{{< /note >}} + +You'll then be presented with a welcome header and the MariaDB prompt as shown below: + +Output +```output +Welcome to the MariaDB monitor. Commands end with ; or \g. +Your MariaDB connection id is 31 +Server version: 10.11.11-MariaDB-0+deb12u1 Debian 12 + +Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. + +Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. +``` + +To view a list of available commands, type '\h' at the prompt. You then see: + +Output +```output +General information about MariaDB can be found at +http://mariadb.org + +List of all MySQL commands: +Note that all text commands must be first on line and end with ';' +? (\?) Synonym for `help'. +clear (\c) Clear the current input statement. +connect (\r) Reconnect to the server. Optional arguments are db and host. +delimiter (\d) Set statement delimiter. +edit (\e) Edit command with $EDITOR. +ego (\G) Send command to mysql server, display result vertically. +exit (\q) Exit mysql. Same as quit. +go (\g) Send command to mysql server. +help (\h) Display this help. +nopager (\n) Disable pager, print to stdout. +notee (\t) Don't write into outfile. +pager (\P) Set PAGER [to_pager]. Print the query results via PAGER. +print (\p) Print current command. +prompt (\R) Change your mysql prompt. +quit (\q) Quit mysql. +rehash (\#) Rebuild completion hash. +source (\.) Execute an SQL script file. Takes a file name as an argument. +status (\s) Get status information from the server. +system (\!) Execute a system shell command. +tee (\T) Set outfile [to_outfile]. Append everything into given outfile. +use (\u) Use another database. Takes database name as argument. +charset (\C) Switch to another charset. Might be needed for processing binlog with multi-byte charsets. +warnings (\W) Show warnings after every statement. +nowarning (\w) Don't show warnings after every statement. + +For server side help, type 'help contents' +MariaDB [(none)]> +``` + +### Securing the Installation + +1. After accessing MariaDB as the root user, you can switch from socket-based authentication to password-based authentication by enabling the `mysql_native_password` plugin: + +```command + USE mysql; + UPDATE user SET plugin='mysql_native_password' WHERE user='root'; + FLUSH PRIVILEGES; + exit; +``` + +**New in MariaDB 10.11 on Debian 12** + +The `mysql_secure_installation` script now offers the option to *set a root password,* which automatically switches the authentication method from `unix_socket` to `mysql_native_password`. This is a change from earlier versions where socket-based authentication was the default and required manual reconfiguration. + +Next, run the `mysql_secure_installation` script to address several security concerns in a default MariaDB installation. + +```command + sudo mysql_secure_installation +``` + +This script will guide you through several options, including: +- Setting a root password (if you haven't already). +- Removing anonymous user accounts. +- Disabling remote root logins. +- Removing the test database. +<<<<<<< HEAD +- +======= + +>>>>>>> 5e19ed07d5f03c7bd3e6b0cbd7611e19324d8716 +It's recommended that you answer `yes` to these prompts for a more secure setup (to harden your MariaDB installation against unauthorized access). You can read more about the script in the [MariaDB Knowledge Base](https://mariadb.com/kb/en/mariadb/mysql_secure_installation/). + +## Using MariaDB + +### Create a New MariaDB User and Database + +1. Log in to the database again. When your're prompted to log in to MariaDB again, you should enter the password only if you previously set one during an earlier step. + +```command +sudo mysql -u root -p +``` + +1. In the example below, `testdb` is the name of the database, `testuser` is the user, and `password` is the user's password. You should replace `password` with a secure password: + +```sql +CREATE DATABASE testdb; +CREATE user 'testuser'@localhost IDENTIFIED BY 'password'; +GRANT ALL ON testdb.* TO 'testuser' IDENTIFIED BY 'password'; +``` + + You can shorten this process by creating the user *while* assigning database permissions: + +```sql +n CREATE DATABASE testdb; +GRANT ALL ON testdb.* TO 'testuser' IDENTIFIED BY 'password'; +``` + +1. Then exit MariaDB: + +```sql +exit +``` + +### Create a Sample Table + +1. Log back in as `testuser`, entering the password when prompted: + +```sql +sudo mysql -u testuser -p +``` + +1. Create a sample table called `customers`: + +```sql +USE testdb; +CREATE TABLE customers (customer_id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, first_name TEXT, last_name TEXT); +``` + + - This creates a table with a `customer_id` field of the type `INT` for integer. + - This field is auto-incremented for new records and used as the primary key. + - Two other fields are created, `first_name` and `last_name` for storing the customer's name. + +1. View the new table: + +```sql +SHOW TABLES; +``` +Output: + +```output + +------------------+ + | Tables_in_testdb | + +------------------+ + | customers | + +------------------+ + 1 row in set (0.00 sec) +``` + +1. Add some data: + +```sql +INSERT INTO customers (first_name, last_name) VALUES ('John', 'Doe'); +``` +1. View the data: + +```sql +SELECT * FROM customers; +``` +Output: + +```output + +-------------+------------+-----------+ + | customer_id | first_name | last_name | + +-------------+------------+-----------+ + | 1 | John | Doe | + +-------------+------------+-----------+ + 1 row in set (0.00 sec) + ``` + +1. Then exit MariaDB: + +```sql +exit; +``` + +## Reset the MariaDB Root Password + +If you forget your root MariaDB password, it can be reset. + +1. Stop the current MariaDB server instance. + +```command +sudo systemctl stop mariadb +``` + +1. Then execute the following command which allows the database to start without loading the grant tables or networking. + +```command +sudo systemctl set-environment MYSQLD_OPTS="--skip-grant-tables --skip-networking" +``` + +{{< note>}} +This method disables grant tables and networking. While it still works in Debian 12, it is temporary and insecure--use only in emergency recovery situations. +{{< /note >}} + +1. Restart MariaDB: + +```command +sudo systemctl start mariadb +``` + +1. Log in to the MariaDB server with the root account, this time without supplying a password: + +```command +sudo mysql -u root +``` + +1. Use the following commands to reset root's password. Replace `password` with a strong password: + +```sql +FLUSH PRIVILEGES; +ALTER USER'root'@'localhost' IDENTIFIED BY 'your_new_password'; +exit; +``` + +1. Revert the environment settings to allow the database to start with grant tables and networking: + +```command +sudo systemctl unset-environment MYSQLD_OPTS +``` + +1. Then restart MariaDB: + +```command +sudo systemctl start mariadb +``` +1. You should now be able to log into the database with your new root password: + +```command +sudo mysql -u root -p +``` diff --git a/docs/guides/databases/mariadb/how-to-install-mariadb-on-debian-9/index.md b/docs/guides/databases/mariadb/how-to-install-mariadb-on-debian-9/index.md deleted file mode 100644 index ef423d0d9b3..00000000000 --- a/docs/guides/databases/mariadb/how-to-install-mariadb-on-debian-9/index.md +++ /dev/null @@ -1,238 +0,0 @@ ---- -slug: how-to-install-mariadb-on-debian-9 -title: "Installing MariaDB on Debian 9" -title_meta: "How to Install MariaDB on Debian 9" -description: "This guide shows how to install and configure the MariaDB server on Debian 9." -og_description: "MariaDB is a robust, scalable and reliable SQL Server that can serve as a drop-in replacement for MySQL. This guide shows how to install and configure it on Debian 9." -authors: ["Ryan Syracuse"] -contributors: ["Ryan Syracuse"] -published: 2020-01-31 -keywords: ["mariadb", "Debian 9", "debian", "database", "mysql"] -license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -aliases: ['/databases/mariadb/how-to-install-mariadb-on-debian-9/','/databases/mariadb/mariadb-setup-debian/'] -image: Installing_MariaDB_on_Debian9.png -external_resources: - - '[MariaDB Knowledge Base](https://mariadb.com/kb/en)' - - '[MariaDB FAQ](https://mariadb.com/kb/en/mariadb-mariadb-faq/)' - - '[MariaDB SQL commands](https://mariadb.com/kb/en/sql-commands/)' -relations: - platform: - key: how-to-install-mariadb - keywords: - - distribution: Debian 9 -tags: ["debian","mariadb","database"] -deprecated: true ---- - -MariaDB is a fork of the popular cross-platform MySQL database management system and is considered a full [drop-in replacement](https://mariadb.com/kb/en/mariadb/mariadb-vs-mysql-features/) for MySQL. MariaDB was created by one of MySQL's original developers in 2009 after MySQL was acquired by Oracle during the Sun Microsystems merger. Today MariaDB is maintained and developed by the [MariaDB Foundation](https://mariadb.org/en/foundation/) and community contributors with the intention of it remaining GNU GPL software. - -{{< note >}} -This guide is written for a non-root user. Commands that require elevated privileges are prefixed with `sudo`. If you're not familiar with the `sudo` command, you can check our [Users and Groups](/docs/guides/linux-users-and-groups/) guide. -{{< /note >}} - -## Before You Begin - -1. If you have not already done so, create a Linode account and Compute Instance. See our [Getting Started with Linode](/docs/products/platform/get-started/) and [Creating a Compute Instance](/docs/products/compute/compute-instances/guides/create/) guides. - -1. Follow our [Setting Up and Securing a Compute Instance](/docs/products/compute/compute-instances/guides/set-up-and-secure/) guide to update your system and configure your hostname. You may also wish to set the timezone, create a limited user account, and harden SSH access. - - To check your hostname run: - - hostname - hostname -f - - The first command should show your short hostname, and the second should show your fully qualified domain name (FQDN) if you have one assigned. - -## Install and Setup MariaDB - -Install MariaDB using the package manager. - - sudo apt install mariadb-server - -MariaDB will bind to localhost (127.0.0.1) by default. For information on connecting to a remote database using SSH, see our [MySQL remote access guide](/docs/guides/create-an-ssh-tunnel-for-mysql-remote-access/), which also applies to MariaDB. - -{{< note >}} -Allowing unrestricted access to MariaDB on a public IP not advised but you may change the address it listens on by modifying the `bind-address` parameter in `/etc/my.cnf`. If you decide to bind MariaDB to your public IP, you should implement firewall rules that only allow connections from specific IP addresses. -{{< /note >}} - -### MariaDB Client - -The standard tool for interacting with MariaDB is the `mariadb` client, which installs with the `mariadb-server` package. The MariaDB client is used through a terminal using the `mysql` command. - -### Root Login - -1. Log into MariaDB as the root user: - - sudo mysql -u root -p - -1. When prompted for login credentials, hit enter. By default MariaDB will authenticate you via the **unix_socket plugin** and credentials are not required. - - You'll then be presented with a welcome header and the MariaDB prompt as shown below: - - {{< output >}} -MariaDB [(none)]> -{{}} - -1. To generate a list of commands for the MariaDB prompt, enter `\h`. You'll then see: - - {{< output >}} -General information about MariaDB can be found at -http://mariadb.org - -List of all MySQL commands: -Note that all text commands must be first on line and end with ';' -? (\?) Synonym for `help'. -clear (\c) Clear the current input statement. -connect (\r) Reconnect to the server. Optional arguments are db and host. -delimiter (\d) Set statement delimiter. -edit (\e) Edit command with $EDITOR. -ego (\G) Send command to mysql server, display result vertically. -exit (\q) Exit mysql. Same as quit. -go (\g) Send command to mysql server. -help (\h) Display this help. -nopager (\n) Disable pager, print to stdout. -notee (\t) Don't write into outfile. -pager (\P) Set PAGER [to_pager]. Print the query results via PAGER. -print (\p) Print current command. -prompt (\R) Change your mysql prompt. -quit (\q) Quit mysql. -rehash (\#) Rebuild completion hash. -source (\.) Execute an SQL script file. Takes a file name as an argument. -status (\s) Get status information from the server. -system (\!) Execute a system shell command. -tee (\T) Set outfile [to_outfile]. Append everything into given outfile. -use (\u) Use another database. Takes database name as argument. -charset (\C) Switch to another charset. Might be needed for processing binlog with multi-byte charsets. -warnings (\W) Show warnings after every statement. -nowarning (\w) Don't show warnings after every statement. - -For server side help, type 'help contents' - -MariaDB [(none)]> -{{}} - -### Securing the Installation - -1. After accessing MariaDB as the root user of your database, enable the **mysql_native_password** -plugin to enable root password authentication: - - USE mysql; - UPDATE user SET plugin='mysql_native_password' WHERE user='root'; - FLUSH PRIVILEGES; - exit; - -1. Run the `mysql_secure_installation` script to address several security concerns in a default MariaDB installation: - - sudo mysql_secure_installation - -You will be given the choice to change the MariaDB root password, remove anonymous user accounts, disable root logins outside of localhost, and remove test databases. It is recommended that you answer `yes` to these options. You can read more about the script in the [MariaDB Knowledge Base](https://mariadb.com/kb/en/mariadb/mysql_secure_installation/). - -## Using MariaDB - -### Create a New MariaDB User and Database - -1. Login to the database again. This time, if you set a password above, enter it at the prompt. - - sudo mysql -u root -p - -1. In the example below, `testdb` is the name of the database, `testuser` is the user, and `password` is the user's password. You should replace `password` with a secure password: - - CREATE DATABASE testdb; - CREATE user 'testuser'@localhost IDENTIFIED BY 'password'; - GRANT ALL ON testdb.* TO 'testuser' IDENTIFIED BY 'password'; - - You can shorten this process by creating the user *while* assigning database permissions: - - CREATE DATABASE testdb; - GRANT ALL ON testdb.* TO 'testuser' IDENTIFIED BY 'password'; - -1. Then exit MariaDB: - - exit; - -### Create a Sample Table - -1. Log back in as `testuser`, entering the password when prompted: - - sudo mysql -u testuser -p - -1. Create a sample table called `customers`: - - USE testdb; - CREATE TABLE customers (customer_id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, first_name TEXT, last_name TEXT); - - - This creates a table with a `customer_id` field of the type `INT` for integer. - - This field is auto-incremented for new records and used as the primary key. - - Two other fields are created, `first_name` and `last_name` for storing the customer's name. - -1. View the new table: - - SHOW TABLES; - - {{< output >}} -+------------------+ -| Tables_in_testdb | -+------------------+ -| customers | -+------------------+ -1 row in set (0.00 sec) -{{}} - -1. Add some data: - - INSERT INTO customers (first_name, last_name) VALUES ('John', 'Doe'); - -1. View the data: - - SELECT * FROM customers; - - {{< output >}} -+-------------+------------+-----------+ -| customer_id | first_name | last_name | -+-------------+------------+-----------+ -| 1 | John | Doe | -+-------------+------------+-----------+ -1 row in set (0.00 sec) -{{}} - -1. Then exit MariaDB: - - exit; - -## Reset the MariaDB Root Password - -If you forget your root MariaDB password, it can be reset. - -1. Stop the current MariaDB server instance. - - sudo systemctl stop mariadb - -1. Then execute the following command which will allow the database to start without loading the grant tables or networking. - - sudo systemctl set-environment MYSQLD_OPTS="--skip-grant-tables --skip-networking" - -1. Restart MariaDB: - - sudo systemctl start mariadb - -1. Login to the MariaDB server with the root account, this time without supplying a password: - - sudo mysql -u root - -1. Use the following commands to reset root's password. Replace `password` with a strong password: - - FLUSH PRIVILEGES; - UPDATE mysql.user SET password = PASSWORD('password') WHERE user = 'root'; - exit; - -1. Revert the environment settings to allow the database to start with grant tables and networking: - - sudo systemctl unset-environment MYSQLD_OPTS - -1. Then restart MariaDB: - - sudo systemctl start mariadb - -1. You should now be able to log into the database with your new root password: - - sudo mysql -u root -p \ No newline at end of file diff --git a/docs/guides/databases/mysql/list-tables-in-mysql-and-mariadb/index.md b/docs/guides/databases/mysql/list-tables-in-mysql-and-mariadb/index.md index 0ec5336f9c9..c66f3a689c2 100644 --- a/docs/guides/databases/mysql/list-tables-in-mysql-and-mariadb/index.md +++ b/docs/guides/databases/mysql/list-tables-in-mysql-and-mariadb/index.md @@ -19,7 +19,7 @@ This guide provides the commands you can use to list tables in MySQL and MariaDB 1. Follow our [Setting Up and Securing a Compute Instance](/docs/products/compute/compute-instances/guides/set-up-and-secure/) guide to update your system. You may also wish to set the timezone, configure your hostname, create a limited user account, and harden SSH access. -1. Install MySQL or MariaDB on your server. You can follow our guide on [How to Install MySQL](/docs/guides/how-to-install-mysql-on-debian-8/) or on [How to Install MariaDB](/docs/guides/how-to-install-mariadb-on-debian-9/). Use the **Distribution** drop down at the top of each guide to select the Linux distribution you want to install on. +1. Install MySQL or MariaDB on your server. You can follow our guide on [How to Install MySQL](/docs/guides/how-to-install-mysql-on-debian-8/) or on [How to Install MariaDB](/docs/guides/how-to-install-mariadb-on-debian-12/). Use the **Distribution** drop down at the top of each guide to select the Linux distribution you want to install on. {{< note >}} The steps in this guide are written for non-root users. Commands that require elevated privileges are prefixed with `sudo`. If you’re not familiar with the `sudo` command, see the [Linux Users and Groups](/docs/guides/linux-users-and-groups/) guide.