Centos7安装mysql后无法启动,提示 Unit mysql.service failed to load:No such file or directory

Posted 友缘聚友

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7安装mysql后无法启动,提示 Unit mysql.service failed to load:No such file or directory相关的知识,希望对你有一定的参考价值。

不想装Oracle,心想装个MySQL轻便一点,我用的Linux版本是Fedora24.执行完yum安装命令后发现竟然无法启动错误提示如下

  1. [root@localhost ~]# systemctl start mysql.service  
  2. Failed to start mysql.service: Unit mysql.service not found.  
查了半天资料,终于了解到MariaDB代替了mysql数据库,MariaDB数据库管理系统是MySQL的一个分支,主要由开源社区在维护,采用GPL授权许可。开发这个分支的原因之一是:甲骨文公司收购了MySQL后,有将MySQL闭源的潜在风险,因此社区采用分支的方式来避开这个风险。

因此用上述命令启动不起来,正确的方法如下
  1. # yum install mariadb-server -y //如果已安装可以省略  
  2. # systemctl start mariadb.service //启动服务  
  3. # systemctl enable mariadb.service //开机启动服务  
  4. # mysql -u root -p //登录mysql  


以上是关于Centos7安装mysql后无法启动,提示 Unit mysql.service failed to load:No such file or directory的主要内容,如果未能解决你的问题,请参考以下文章

CentOS7安装mysql后无法启动服务,提示Unit not found

Centos7安装mysql后无法启动,提示 Unit mysql.service failed to load:No such file or directory

CentOS7安装mysql后无法启动服务,提示Failed to start mysqld.service: Unit not found

CentOS7系统安装完MySQL后启动MySQL提示无服务

centos通过yum安装mariadb(mysql)无法启动服务或者找不到mysql.sock

centos7怎么安装mysql