当前位置:   article > 正文

Docker容器centos、unbuntu 无法使用 systemctl 命令_ubuntu启动centos容器后systemctl无法使用

ubuntu启动centos容器后systemctl无法使用

报错内容:

   System has not been booted with systemd as init system (PID 1). Can't operate.
   Failed to connect to bus: Host is down
  • 1
  • 2

意思是 : 1号进程不是 init ,而是其他例如 /bin/bash ,所以导致缺少相关文件无法运行。

解决方法:

  docker run -itd   --privileged --name myCentos centos /usr/sbin/init
  • 1

创建完成后: 请使用以下命令进入容器

  docker exec -it myCentos /bin/bash
  • 1

/bin/bash 要特别注意,不能遗忘

默认情况下,在第一步执行的是 /bin/bash,而因为docker中的bug,无法使用systemctl

所以我们使用了 /usr/sbin/init 同时 --privileged 这样就能够使用systemctl了,但覆盖了默认的 /bin/bash

因此我们如果想进入容器 就不能再使用

 docker attach myCentos 
  • 1

而只能使用

 docker exec -it myCentos /bin/bash
  • 1

因为 exec 可以让我们执行被覆盖掉的默认命令 /bin/bash 同时 -it 也是必须的。

对于ubuntu 也类似,可能init 目录不太相同

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/664220
推荐阅读
相关标签
  

闽ICP备14008679号