通过官网查看
https://mariadb.org/
或
https://yum.mariadb.org/
最新版为 10.5.x
fox.风
设置数据源
这里使用的是国内源 http://mirrors.aliyun.com/mariadb/yum/10.5/centos8-amd64/
cat <<EOF > /etc/yum.repos.d/mariadb.repo
[mariadb]
name = mariadb
baseurl=http://mirrors.aliyun.com/mariadb/yum/10.5/centos8-amd64/
gpgkey=https://mirrors.aliyun.com/mariadb/yum/RPM-GPG-KEY-MariaDB
#enabled=1
gpgcheck=1
EOF
复制到 终端直接执行
更新缓存
dnf clean all
dnf makecache
dnf repolist
显示可安装的版本
# 这个可以看版本号
dnf search mariadb --showduplicates --disablerepo=AppStream
或
dnf search mariadb
--disablerepo=AppStream
禁用仓库标识为 AppStream 的主软件仓库
安装
现在安装的就是 最新的版本了
dnf -y install MariaDB-server MariaDB-client --disablerepo=AppStream
--disablerepo=AppStream
禁用仓库标识为 AppStream 的主软件仓库
命令
设置密码
mysql_secure_installation
设置开机启动
systemctl enable mariadb --now
启动 mariadb
systemctl start mariadb
创建新超级管理用户 fox
在 shell 中输入
mysql -uroot -p
#输入 root 的 管理密码
下面 每次执行一条
use mysql;
#创建用户 并设置密码
create user 'fox'@'%' identified by '123456';
#授权 fox 拥有 所有权限
grant all privileges on *.* to 'fox'@'%' identified by '123456' WITH GRANT OPTION;
# 刷新权限
flush privileges;
#退出
exit;
允许 root 远程登录
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
flush privileges;