MariaDB 是一个免费和开源的关系数据库管理系统 (DBMS),它被认为是继任者和替代品。 MySQL 数据库管理系统。MariaDB 与 MySQL 数据库完全兼容,被广泛用作 LAMP 和 LEMP 堆栈中的数据库服务器。
在 Manjaro 21 上安装 MariaDB
步骤 1. 在运行以下教程之前,请确保我们的系统是最新的:
sudo pacman -Syu sudo pacman -S base-devel
步骤 2. 在 Manjaro 21 上安装 MariaDB。
默认情况下,MariaDB 在 Manjaro 21 基础存储库中可用。现在我们运行以下命令将 Snap 包管理器安装到您的 Manjaro 系统:
sudo pacman -Sy mariadb
在启动 MariaDB 服务之前,使用以下命令初始化数据库:
mariadb-install-db --user=mysql --basedir=/usr --datadir=/var/lib/mysql
安装完成后,现在启用 MariaDB(系统启动时自动启动),启动 MariaDB,并使用以下命令验证状态:
sudo systemctl start mariadb sudo systemctl enable mariadb sudo systemctl status mariadb
步骤 3. 安全 MariaDB 安装。
默认情况下,MariaDB 未加固。mysql_secure_installation
您可以使用脚本保护 MariaDB 。您应该仔细阅读下面的每个步骤,这些步骤将设置 root 密码、删除匿名用户、禁止远程 root 登录、删除测试数据库和访问安全 MariaDB:
mysql_secure_installation
像这样配置它:
- Set root password? [Y/n] y - Remove anonymous users? [Y/n] y - Disallow root login remotely? [Y/n] y - Remove test database and access to it? [Y/n] y - Reload privilege tables now? [Y/n] y
第 4 步:访问 MariaDB。
要访问 MariaDB,您可以在终端中运行以下命令:
mysql -u root -p
输出:
Welcome to the MariaDB monitor. Commands end with ; or g. Your MariaDB connection id is 12 Server version: 10.8.4-MariaDB Manjaro Linux Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or 'h' for help. Type 'c' to clear the current input statement. MariaDB [(none)]>
感谢您使用本教程在 Manjaro 系统上安装最新版本的 MariaDB 数据库服务器。如需更多帮助或有用信息,我们建议您查看MariaDB 官方网站。