首页 > 技术文章 > CentOS8安装MySQL报错,解决Failed to start mysqld.service: Unit not found

fyusac 2021-04-08 15:15 原文

#启动mysql时会提示找不到对应的服务
[root@ceph-104 ~]# service mysqld restart
Redirecting to /bin/systemctl restart mysqld.service
Failed to restart mysqld.service: Unit mysqld.service not found.
[root@ceph-104 ~]# /bin/systemctl restart mysqld.service

原因是centos8不支持mysql,需要更换成MariaDB

首先需要安装mariadb-server

[root@ceph-104 ~]# yum install mariadb-server -y

启动服务

[root@ceph-104 ~]# systemctl start mariadb.service

添加到开机启动

[root@ceph-104 ~]# systemctl enable mariadb.service

推荐阅读