1. 程式人生 > >Failed to get D-Bus connection: Operation not permitted

Failed to get D-Bus connection: Operation not permitted

在Centos7的docker裡裝好了httpd,執行報錯:

systemctl start httpd.service  
Failed to get D-Bus connection: Operation not permitted  

真無語啊,必須提權才可以:

docker run --privileged -d -p 10080:80 centos /sbin/init  

記下來,備查。