centos7.0查看有没有运行mysql
Posted 锋齐叶落
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7.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
以上是关于centos7.0查看有没有运行mysql的主要内容,如果未能解决你的问题,请参考以下文章
centos7中运行ifconfig提示“-bash: ifconfig: command not found”解决方案
centos7.0 没有netstat 和 ifconfig命令问题