Acho que verificaria se o servidor mariadb estava instalado corretamente - parece conter a definição do serviço:
rpm -qvla mariadb-server | grep service
-rw-r--r-- 1 root root 1697 Nov 14 16:44 /usr/lib/systemd/system/mariadb.service
Você também pode verificar usando o yum:
> yum info mariadb-server
Loaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
* base: centos.mirror.triple-it.nl
* extras: centos.mirror.transip.nl
* updates: centos.ams.host-engine.com
Installed Packages
Name : mariadb-server
Arch : x86_64
Epoch : 1
Version : 5.5.52
Release : 1.el7
Size : 56 M
Repo : installed
Você está procurando a última linha acima para dizer installed
, em vez de base/7/x86_64
.
Acabei de testar seus comandos de instalação em uma nova imagem do centos7 (o container oficial do centos docker) e não consegui replicar o seu problema.
Você pode querer tentar reinstalar o servidor mariadb.
Atualização : acho que o seu problema se deve ao seu pacote MariaDB vindo do repositório webmin, em vez do repositório base.
Desativar isso temporariamente (ou mais permanentemente) pode ajudar: sudo yum install --disablerepo=Webmin mariadb-server
deve resolver seu problema imediato (e / ou obter os arquivos que você precisa).
Em todo o restante, a definição do serviço é bastante simples:
# It's not recommended to modify this file in-place, because it will be
# overwritten during package upgrades. If you want to customize, the
# best way is to create a file "/etc/systemd/system/mariadb.service",
# containing
# .include /lib/systemd/system/mariadb.service
# ...make your changes here...
# or create a file "/etc/systemd/system/mariadb.service.d/foo.conf",
# which doesn't need to include ".include" call and which will be parsed
# after the file mariadb.service itself is parsed.
#
# For more info about custom unit files, see systemd.unit(5) or
# http://fedoraproject.org/wiki/Systemd#How_do_I_customize_a_unit_file.2F_add_a_custom_unit_file.3F
# For example, if you want to increase mariadb's open-files-limit to 10000,
# you need to increase systemd's LimitNOFILE setting, so create a file named
# "/etc/systemd/system/mariadb.service.d/limits.conf" containing:
# [Service]
# LimitNOFILE=10000
# Note: /usr/lib/... is recommended in the .include line though /lib/...
# still works.
# Don't forget to reload systemd daemon after you change unit configuration:
# root> systemctl --system daemon-reload
[Unit]
Description=MariaDB database server
After=syslog.target
After=network.target
[Service]
Type=simple
User=mysql
Group=mysql
ExecStartPre=/usr/libexec/mariadb-prepare-db-dir %n
# Note: we set --basedir to prevent probes that might trigger SELinux alarms,
# per bug #547485
ExecStart=/usr/bin/mysqld_safe --basedir=/usr
ExecStartPost=/usr/libexec/mariadb-wait-ready $MAINPID
# Give a reasonable amount of time for the server to start up/shut down
TimeoutSec=300
# Place temp files in a secure directory, not /tmp
PrivateTmp=true
[Install]
WantedBy=multi-user.target