mariadb 是一个免费和开源的关系数据库管理系统 (dbms),它被认为是继任者和替代品。 mysql 数据库管理系统。mariadb 与 mysql 数据库完全兼容,被广泛用作 lamp 和 lemp 堆栈中的数据库服务器。
在 上
步骤 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 数据库服务器。如需更多帮助或有用信息,我们建议您查看。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/yun224231.html