CentOS7安装MySQL报错,解决Failed to start mysqld.service: Unit not found
当输入命令
~]# systemctl start mysql.service
要启动MySQL数据库是却是这样的提示
Failed to start mysqld.service: Unit not found
解决方法如下:
首先需要安装mariadb-server
~]# yum install -y mariadb-server
启动服务
~]# systemctl start mariadb.service
添加到开机启动
~]# systemctl enable mariadb.service
CentOS7安装MySQL报错,解决Failed to start mysqld.service: Unit not found