红联Linux门户
Linux帮助

centos7 docker容器报docker Failed to get D-Bus connection错

发布时间:2017-06-30 10:44:06来源:linux网站作者:shenzhen_zsw
在centos7的Docker容器里面不能用service启动服务。
systemctl start httpd
 
报错内容:Failed to get D-Bus connection: Operation not permitted。
 
网上查询资料,说在docker run容器的时候加上 --privileged 参数,然而并无什么用。
 
报这个错的原因是dbus-daemon没能启动。systemctl并不是不能使用。将CMD或者entrypoint设置为/usr/sbin/init即可。docker容器会自动将dbus等服务启动起来。如下:
docker run --privileged -ti --name test  docker.io/centos:7  /usr/sbin/init
 
本文永久更新地址:http://www.linuxdiyf.com/linux/31804.html