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