CentOS8安装MySQL报错,解决Failed to start mysqld.service: Unit not found

#启动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

上一篇:ceph基本部署


下一篇:kubernetes存储之ceph-csi