MariaDB 是 MySQL 的直接替代品。它易于安装,提供许多速度和性能改进,并且易于集成到大多数 MySQL 部署中。兼容性问题的答案可以在以下位置找到:MariaDB 与 MySQL – 兼容性。MariaDB 提供比 MySQL 更多的存储引擎,包括 Cassandra(NoSQL,在 MariaDB 版本 10 中)、XtraDB(InnoDB 的替代品)和 OQGRAPH(在 MariaDB 版本 10 中)。
检测
- 这些说明旨在用于在单个 CentOS 7 节点上安装 MariaDB。
- 我将在 Liquid Web Self Managed CentOS 7 服务器上工作,我将以 root身份登录。
安装 MySQL / MariaDB
安装 MariaDB 就像只运行一个命令一样简单:
yum -y install mariadb-server mariadb
然后启动 MySQL,现在是 MariaDB:
systemctl start mariadb
确保 MySQL/MariaDB 在启动时启动:
systemctl enable mariadb
检查 MySQL/MariaDB 的状态:
systemctl status mariadb
置顶 MySQL/MariaDB:
systemctl stop mariadb
使用命令客户端检查安装:
mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 3
Server version: 5.5.40-MariaDB MariaDB Server
版权所有 (c) 2000、2014、Oracle、Monty Program Ab 等。
输入“帮助”;或 ‘\h’ 寻求帮助。键入 ‘\c’ 以清除当前输入语句。
MariaDB [(无)]>