centos 7.0 怎么启动mysql

前端之家收集整理的这篇文章主要介绍了centos 7.0 怎么启动mysql前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
centos7自带是mariadb,一个MysqL的变种。

查看有没有安装过:
yum list installed MysqL*
rpm -qa | grep MysqL*
安装MysqL软件(mariadb)
yum install MysqL*
启动MysqL
systemctl start mariadb.service 或者 systemctl start MysqLd.service
结束
systemctl stop mariadb.service 或者 systemctl stop MysqLd.service
重启
systemctl restart mariadb.service 或者 systemctl restart MysqLd.service
开机自启
systemctl enable mariadb.service 或者 systemctl enable MysqLd.service 原文链接:https://www.f2er.com/centos/379103.html

猜你在找的CentOS相关文章