- docker中安裝完httpd服務后,使用命令
systemctl start httpd.service
,發現報錯,錯誤信息:Failed to get D-Bus connection: Operation not permitted
- 解決方法:使用命令
docker run -d --name centos7 --privileged=true centos:7 /usr/sbin/init
創建容器,然后使用docker exec -it centos7 /bin/bash
進入容器