systemctl start mariadb.service //然后发现下面的问题
job for mariadb.service failed because the control process exited with error code .
See "systemctl status mariadb.service" and "journalctl -xe" for details
第一种情况 : // 按照上面的 查看 一无所获 但是看见了 "journalctl -xe"里面在启动 mariadb的时候 有Logging to '/var/log/mariadb/mariadb.log' 然后就去查看了这个 log
找到最后下面在Aborting 上面有 一行 Character set 'utf8' is not a compiled
在/etc/mycnf.d 里面有一个 server.cnf 在 [mysqld] 下面 添加
character-set-server=utf8 保存
然后 systemctl start mariadb.service