欢迎投稿

今日深度:

centos7 yum安装 mariadb,centos安装yum

centos7 yum安装 mariadb,centos安装yum


从最新版本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 'root@%' identified by '密码' with grant option; 

flush privileges;




     本文转自whshurk 51CTO博客,原文链接:http://blog.51cto.com/shurk/1745524,如需转载请自行联系原作者



www.htsjk.Com true http://www.htsjk.com/mariadb/37766.html NewsArticle centos7 yum安装 mariadb,centos安装yum 从最新版本centos7开始,默认的是 Mariadb而不是mysql! 使用系统自带的repos安装很简单: yum install mariadb mariadb-server systemctl start mariadb == 启动mariadb system...
评论暂时关闭