在docker的lcentos7中出现Failed to get D-Bus connection: Operation not permitted
时间: 2023-11-09 18:02:23 浏览: 175
CentOS7环境下docker安装及基于docker的MySQL5.7安装
5星 · 资源好评率100%
这个问题通常是由于docker容器中没有运行systemd导致的。可以尝试在启动容器时加上--privileged参数,或者在Dockerfile中添加以下内容:
```
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/*;
VOLUME [ "/sys/fs/cgroup" ]
CMD ["/usr/sbin/init"]
```
阅读全文