CentOS7安装mariadb
1、mariadb官网地址:https://mariadb.org/
2、编辑仓库配置文件
vim CentOS-Base.repo
3、查看yum源
yum repolist
4、安装mariadb
yum install mariadb-server
5、启动服务
systemctl start mariadb
6、登陆mysql
mysql
7、显示数据库
show databases;
8、设置mysql安全性
mysql_secure_installation
9、登陆mysql
mysql -uroot -p
10、查看用户权限表
use mysql;
select host,user,password from user;