Mariadb是一款高效的数据库。因为其来源于MySQL,因此它对于Mysql具有较好的兼容性。这篇文章将介绍如何在Debian 11操作系统上安装MariaDB数据库。
- 安装依赖包并升级系统,命令:
apt-get install software-properties-common dirmngr gnupg2 apt-transport-https wget curl -y
apt update -y
2. 执行安装mariadb-server包:
apt install mariadb-server -y
** 在mariadb-server中自带有mariadb-client。
3. 设置立即启动以及开机启动
systemctl enable mariadb
systemctl start mariadb
4. 初始化设置
mysql_secure_installation
到这里,一切已经完成,且MySQL已经成功监听于3306/tcp端口。
📮Comments