System has not been booted with systemd as init system (PID 1). Can't operate. Failed to connect to bus: Host is down
时间: 2023-09-25 22:15:23 浏览: 74
这个错误通常是因为您正在尝试在不使用systemd作为init系统的系统上运行systemctl命令。
请注意,systemd是Ubuntu 15.04之后版本的默认init系统。如果您使用的是较早的版本或者已经更改了init系统,则可能无法使用systemctl命令。
您可以尝试使用适合您的init系统的相应命令来管理系统服务。
如果您确实在使用systemd作为init系统,请确保系统已经完全启动,您以root用户或sudo权限运行命令,并且系统没有其他进程占用了DBus系统总线。
如果问题仍然存在,请尝试重新启动系统并再次尝试运行systemctl命令。
相关问题
system has not been booted with systemd as init system (PID 1). Can't operate. Failed to connect to bus: Host is down
这个错误信息通常出现在使用systemd作为init系统Linux发行版中,但当前系统并未使用systemd作为init系统。因此,无法连接到systemd的总线。
systemd是一个用于启动、管理和控制Linux系统的init系统和系统管理器。它提供了一种更现代化和高级的方式来管理系统进程和服务。
如果你遇到了这个错误,可能有以下几种情况:
1. 你的系统确实没有使用systemd作为init系统,而是使用其他的init系统,比如SysV init或Upstart。
2. 你的系统使用了systemd作为init系统,但是systemd服务没有正确启动或运行。
3. 你正在尝试在一个没有安装systemd的系统上运行依赖于systemd的程序。
为了解决这个问题,你可以尝试以下几个步骤:
1. 确认你的系统是否使用了systemd作为init系统。你可以通过运行`ps -p 1 -o comm=`命令来检查init进程的名称。如果输出是`systemd`,则表示你的系统正在使用systemd作为init系统。
2. 如果你的系统确实使用了systemd作为init系统,但是出现了连接总线的错误,可能是因为systemd服务没有正确启动或运行。你可以尝试重新启动systemd服务,命令如下:
```
sudo systemctl restart systemd
```
3. 如果你的系统没有安装systemd,但是你需要运行依赖于systemd的程序,你可以考虑安装systemd或者使用其他兼容的init系统。
希望以上信息对你有帮助!如果你还有其他问题,请继续提问。
Rocky 9 System has not been booted with systemd as init system (PID 1). Can t operate. Failed to connect to bus: Host is down
Rocky 9系统启动时出现“System has not been booted with systemd as init system (PID 1). Can't operate. Failed to connect to bus: Host is down”错误提示,这是因为Rocky 9系统默认使用了systemd作为init系统,而Docker容器中并没有systemd,因此无法使用systemctl命令。解决方法是在Docker容器中添加--privileged参数,并在最后加上/usr/sbin/init命令,这样就可以使用systemctl命令了。
阅读全文