12/04/2016

FIX "Cannot connect to the docker daemon. Is the docker daemon running on this host?" + "ERRO[0000] [graphdriver] prior storage driver "aufs" failed: invalid argument"

[ITA]


Docker funzionava correttamente su una macchina sulla quale stavo lavorando, ma dopo un apt-get upgrade qualsiasi comando docker lanciassi ricevevo:
 Cannot connect to the docker daemon. Is the docker daemon running on this host? 

Lanciando docker daemon invece, ricevevo un errore vero e proprio:
 ERRO[0000] [graphdriver] prior storage driver "aufs" failed: invalid argument 

Alla fine è uscito fuori che lanciando apt-get upgrade, il package extra è rimasto fuori, e quel package conteneva aufs!
Il problema si è risolto con il comando:
 apt-get -y install linux-image-extra-$(uname -r) 

In seguito, con un docker start tutto è tornato alla normalità.


[ENG]


Docker was working fine on a dev machine until an apt-get upgrade came in... No matter which docker command I'd launch, it just replied:
 Cannot connect to the docker daemon. Is the docker daemon running on this host? 

Running docker daemon instead, gave me a more detailed error:
 ERRO[0000] [graphdriver] prior storage driver "aufs" failed: invalid argument 

At the end it turned out that apt-get upgrade leaves out the extra package that contains aufs!
Here's our problem solver:
 apt-get -y install linux-image-extra-$(uname -r) 

Next, with a docker start, everything was ok.

Nessun commento: