dnf -y install mariadb mariadb-server
(如果安装后开启报错的话 请使用下方的命令 :
yum install mariadb-server --allowerasing)
systemctl start mariadb.service # 开启服务 systemctl enable mariadb.service # 开机启动2.mariadb服务运维命令。
systemctl status mariadb.service # 查看服务状态 systemctl stop mariadb.service # 关闭服务3.数据库安装设置,重置数据库root账号密码,执行该命令前必须开启mariadb服务。
mysql_secure_installation Enter current password for root (enter for none): 输入当前root账号密码,刚安装默认为空,直接回车即可 Set root password? [Y/n] 是否输入root密码,输入y 回车 New password: 输入密码 Re-enter new password: 重复输入 Remove anonymous users? [Y/n] 删除其他用户 y Disallow root login remotely? [Y/n] 允许root账号远程登录 y Remove test database and access to it? [Y/n] 删除测试表 y Reload privilege tables now? [Y/n] 重新加载配置表 y4.登陆测试,执行如下命令并输入密码。
mysql -uroot -p
安装成功后如下图: