1. 安装
CentOS-8.4默认安装的是mariadb-10.3
yum -y install mariadb-server
注 :设置 官方镜像源 安装指定版本, 或适用阿里云的镜像源
先找到自己需要的版本,点击进去,选择 MariaDB Repositories ,选择好即可出现镜像源
编辑镜像源地址文件,把镜像信息放进去保存好,重新yum即可
vi /etc/yum.repos.d/MariaDB.repo
阿里云镜像源内容如下
# MariaDB 10.10 CentOS repository for aliyun
# https://mariadb.org/download/
[mariadb]
name = MariaDB
baseurl = https://mirrors.aliyun.com/mariadb/yum/10.10/centos/$releasever/$basearch
gpgkey=https://mirrors.aliyun.com/mariadb/yum/RPM-GPG-KEY-MariaDB
gpgcheck=1
2. 数据库相关配置
2.1 启动数据库并设定开机启动
systemctl start mariadb
systemctl enable mariadb
2.2 数据库初始化
mysql_secure_installation 或 mariadb-secure-installation
回车
y
y
n
y
y
2.3 远程连接数据库
firewall-cmd --zone=public --add-port=3306/tcp --permanent
mysql -u root -p
use mysql;
select host, user from user;
Mariadb 10.4之前, user是一个视图, 而不是表, 故下述
update user set host='%' where host='localhost.localdomain';
flush privileges;
Mariadb 10.4及之后
UPDATE mysql.global_priv SET Host='%' WHERE User='root';
flush privileges;
建议: 最好是新建一个用户用于外部连接, 自行解决
exit
重新启动虚拟机,并通过Navicat连接