copied from: http://blog.163.com/s2006203387@126/blog/static/533199572015111703735423/this
Ubuntu 14.04
第一次安裝Docker,運行hello-world 是能夠的,
重啓系統以後,運行hello-world 出現以下報錯:
Cannot connect to the Docker daemon. Is the docker daemon running on this host?
多方查找,解決以下:
sudo su - //切換到root
service docker start //啓動docker service
docker images //顯示全部images
docker run hello-world //從新運行
恩,是權限問題,當前用戶沒權限,root用戶能夠運行