System has not been booted with systemd as init system (PID 1). Can't operate. Failed to connect to bus: Host is down
时间: 2023-07-06 10:30:31 浏览: 106
不能正常启动
出现这个错误的原因是当前系统使用的 init 系统不是 systemd,而 systemctl 命令需要 systemd 才能正常工作。如果你在使用一个不支持 systemd 的系统(如 CentOS 6),则应该使用其他方式来启动和管理 Mariadb 服务。
对于 CentOS 6 等不支持 systemd 的系统,可以使用以下命令来启动 Mariadb 服务:
```
service mariadb start
```
如果你想让 Mariadb 服务在系统启动时自动启动,可以使用以下命令:
```
chkconfig mariadb on
```
这样,Mariadb 服务就会在系统启动时自动启动。
阅读全文