美文网首页
centos mysql安装

centos mysql安装

作者: Sophie12138 | 来源:发表于2016-11-15 14:12 被阅读98次

centos下yum暂时没有mysql-server直接安装包;

MariaDB是MySQL社区开发的分支,也是一个增强型的替代品;

安装MariaDB

yum-y  install mariadb-server mariadb mariadb-devel

systemctl start mariadb

systemctl enable mariadb

mysql_secure_installation

firewall-cmd --permanent --add-service mysql

systemctl restart firewalld.service

iptables -L -n|grep 3306

登录数据库查看下是否有变好

msyql -uroot -p

show databases

相关文章

网友评论

      本文标题:centos mysql安装

      本文链接:https://www.haomeiwen.com/subject/qwnkpttx.html