在docker容器中启动服务失败,错误:无法获得D-Bus连接:没有与服务管理器的连接

前端之家收集整理的这篇文章主要介绍了在docker容器中启动服务失败,错误:无法获得D-Bus连接:没有与服务管理器的连接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我安装了docker image并成功构建了一个图像.

当我ssh到容器并运行命令service xxx start时,弹出一个错误

service nginfra start

Redirecting to /bin/systemctl start nginfra.service /sbin/service:@H_301_11@ line 79: /bin/systemctl: No such file or directory

实际上,fakesystemd安装在容器中而不是systemd中.

所以我删除了fakesystemd并使用以下命令安装了systemd:@H_301_11@    yum swap – 删除fakesystemd – 安装systemd systemd-libs

但我还是无法启动服务:

service nginfra start

Redirecting to /bin/systemctl start nginfra.service Failed to get@H_301_11@ D-Bus connection: No connection to service manager.

有没有人见过并解决了这个问题?

我已经设法在CentOS:7 Docker容器中解决了这个问题.@H_301_11@我跟着主要是the Guide on CentOS Docker image project.

FROM centos:7

ENV container docker
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == \
systemd-tmpfiles-setup.service ] || rm -f $i; done); \
rm -f /lib/systemd/system/multi-user.target.wants/*;\
rm -f /etc/systemd/system/*.wants/*;\
rm -f /lib/systemd/system/local-fs.target.wants/*; \
rm -f /lib/systemd/system/sockets.target.wants/*udev*; \
rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
rm -f /lib/systemd/system/basic.target.wants/*;\
rm -f /lib/systemd/system/anaconda.target.wants/*;

# Install anything. The service you want to start must be a SystemD service.

CMD ["/usr/sbin/init"]

现在,构建映像,并至少使用以下参数运行它到docker run命令:-v / run -v / sys / fs / cgroup:/ sys / fs / cgroup:ro

那么主要的一点是/usr/sbin / init必须是Docker容器中的第一个进程.

因此,如果要在运行/usr/sbin / init之前使用执行某些命令的自定义脚本,请使用exec /usr/sbin / init(在bash脚本中)在脚本末尾启动它.

这是一个例子:

ADD cmd.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/cmd.sh

CMD ["/usr/local/bin/cmd.sh"]

这是cmd.sh的内容

#!/bin/bash

# Do some stuffs

exec /usr/sbin/init # To correctly start D-Bus thanks to https://forums.docker.com/t/any-simple-and-safe-way-to-start-services-on-centos7-systemd/5695/8

你可以让System启动.如果您使用PAM系统,请参阅pam_nologin(8),在这种情况下,删除Dockerfile中的/usr/lib/tmpfiles.d/systemd-nologin.conf,因为它会创建生成此特定错误文件/ var / run / nologin .

原文链接:https://www.f2er.com/docker/436948.html

猜你在找的Docker相关文章