📅  最后修改于: 2023-12-03 15:39:05.161000             🧑  作者: Mango
MariaDB 是 MySQL 的一个分支,提供了更好的性能和一些新功能。这里介绍在 Ubuntu 16.04 上安装 MariaDB 10.2 的步骤。
sudo apt-get install software-properties-common
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xF1656F24C74CD1D8
sudo add-apt-repository 'deb [arch=amd64,i386,ppc64el] http://mirror.jaleco.com/mariadb/repo/10.2/ubuntu xenial main'
以上命令用于添加 MariaDB 源。
sudo apt-get update
sudo apt-get install mariadb-server
以上命令用于更新源并安装 MariaDB。
安装 MariaDB 后,需要进行一些配置。可以使用以下命令进行基础配置:
sudo mysql_secure_installation
输出:
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none):
按照提示输入当前 MySQL 的 root 用户密码或者直接回车。
接着会要求你设置 root 密码:
Set root password? [Y/n] Y
接着会要求你输入密码并确认:
New password:
Re-enter new password:
使用以下命令验证 MariaDB 安装是否成功:
sudo systemctl status mariadb
如果 MariaDB 服务正在运行,则输出类似以下信息:
● mariadb.service - MariaDB 10.2.19 database server
Loaded: loaded (/lib/systemd/system/mariadb.service; enabled; vendor preset: enabled)
Drop-In: /etc/systemd/system/mariadb.service.d
└─migrated-from-my.cnf-settings.conf
Active: active (running) since Tue 2019-09-10 16:32:16 CST; 2h 45min ago
Docs: man:mysqld(8)
https://mariadb.com/kb/en/library/systemd/
Main PID: 23656 (mysqld)
Status: "Taking your SQL requests now..."
CGroup: /system.slice/mariadb.service
└─23656 /usr/sbin/mysqld
Sep 10 16:32:15 ubuntu systemd[1]: Starting MariaDB 10.2.19 database server...
Sep 10 16:32:16 ubuntu mysqld[23656]: 2019-09-10 16:32:16 140132548364288 [Note] /usr/sbin/mysqld (mysqld 10.2.19-MariaDB-1ubuntu1) starting as process 23656 ...
Sep 10 16:32:16 ubuntu systemd[1]: Started MariaDB 10.2.19 database server.
MariaDB 安装成功。
安装成功后可以使用以下命令登陆 MariaDB:
sudo mysql -u root -p
然后输入密码即可开始使用 MariaDB。
以上就是在 Ubuntu 16.04 上安装 MariaDB 10.2 的步骤。