我在OVH上有一个带有proxmox 2.3的kimsufi服务器和一个ipfailover当我启动时,服务器在网络上;另一方面,如果我启动网络和/或apache2:
vzctl enter 100
/etc/init.d/networking restart
Restarting networking (via systemctl): networking.service Failed to get D-Bus connection: No such file or directory
/etc/init.d/apache2 restart
Restarting apache2 (via systemctl): apache2.serviceFailed to get D-Bus connection: No such file or directory
with ping google.com i have :
ping: unknown host google.com
你有一个主意吗?感谢您的帮助
debian ist systemd控制的操作系统。在容器中,PID-1上没有Systemd守护程序。
将旧的init-scripts"重新启动"转发到" systemctl restart",而systemctl则希望与Systemd守护程序进行交谈。这就是错误消息的来源。
解决方案将是
- 使用不是SystemD控制的容器操作系统
- 在容器中运行系统D或将请求转发到主机Systemd
- 使用docker-systemctl-替换在没有Systemd的情况下处理SystemCtl