centos7 yum安装 mariadb

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 yum安装 mariadb相关的知识,希望对你有一定的参考价值。

从最新版本centos7开始,默认的是 Mariadb而不是mysql

使用系统自带的repos安装很简单:

yum install mariadb mariadb-server

systemctl start mariadb ==> 启动mariadb

systemctl enable mariadb ==> 开机自启动

firewall-cmd --permanent --add-port=3306/tcp ==> 开放端口,允许远程访问

systemctl restart firewalld==> 重启防火墙

mysql_secure_installation ==> 设置 root密码等相关

mysql -uroot -p密码 ==> 测试登录!

授权root远程任何机器都能登陆

use mysql;

update mysql set host=‘%‘ where user=‘root‘ and host=‘localhost‘;

flush privileges;

grant all privileges on *.* to ‘[email protected]%‘ identified by ‘密码‘ with grant option; 

flush privileges;

本文出自 “蓝色的天空” 博客,请务必保留此出处http://shurk.blog.51cto.com/1134443/1745524

以上是关于centos7 yum安装 mariadb的主要内容,如果未能解决你的问题,请参考以下文章

Centos7 下定义MariaDB源Yum安装最新版本的MariaDB

centos7 yum安装 mariadb

centos7 yum 安装mariadb

centos7 yum 安装 MariaDB

CentOS7.3yum安装MariaDB报错[Errno 256]

CentOS7下使用yum安装MariaDB