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

Posted 晴空万里

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7安装mysql后无法启动服务,提示Unit not found相关的知识,希望对你有一定的参考价值。

1、最近在centos7上面进行mysql安装完成后,无法启动,报如下错误:

Failed to start mysql.server.service: Unit not found.

2、这个是知乎上面找到的无法启动的答案:https://www.zhihu.com/question/41832866

3、解决办法一:使用MariaDB代替mysql数据库(MariaDB数据库管理系统是MySQL的一个分支,主要由开源社区在维护,采用GPL授权许可。开发这个分支的原因之一是:甲骨文公司收购了MySQL后,有将MySQL闭源的潜在风险,因此社区采用分支的方式来避开这个风险。)

# yum install mariadb-server -y //如果已安装可以省略
# systemctl start mariadb.service //启动服务
# systemctl enable mariadb.service //开机启动服务
# mysql -u root -p //登录mysql

  解决办法二:这个方法就是在 /etc/systemd/system/mysqld.service 添加Unit,既然错误提示找不到Unit那我们添加一个就好了。在 /etc/systemd/system/mysqld.service下添加如下内容

[Unit]
Description=MySQL Server
After=network.target
 
[Service]
ExecStart=/usr/bin/mysqld --defaults-file=/etc/mysql/my.cnf --datadir=/var/lib/mysql --socket=/var/run/mysqld/mysqld.sock User=mysql
Group=mysql
WorkingDirectory=/usr
 
[Install]
WantedBy=multi-user.target

然后运行

systemctl daemon-reload
使用重启命令:

systemctl start mysql.service

以上是关于CentOS7安装mysql后无法启动服务,提示Unit not found的主要内容,如果未能解决你的问题,请参考以下文章

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

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

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

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

U盘安装CentOS7 1503 时无法识别U盘,直接进入dracut#

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