mariadb安装
Posted xiaoxiannvblog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mariadb安装相关的知识,希望对你有一定的参考价值。
1.配置yum源
基本源 wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
扩展源 wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
2.安装
yum install -y mariadb-server mariadb
3.启动
systemctl start mariadb
4.登录 (因为没有设置密码 直接就可以登进去)
5.修改密码
mysqladmin -u root password 123
6.此时登录就需要密码
mysql -u root -p123
7.退出
exit
以上是关于mariadb安装的主要内容,如果未能解决你的问题,请参考以下文章