I am trying to run systemctl status docker command and it shows me the error:
● docker.service - Docker Application Container Engine
Loaded: loaded (/lib/systemd/system/docker.service; enabled)
Active: failed (Result: exit-code) since Mon 2016-07-18 14:12:36 EEST; 11min ago
Docs: https://docs.docker.com
Process: 11919 ExecStart=/usr/bin/docker daemon -H fd:// $DOCKER_OPTS (code=exited, status=1/FAILURE)
Main PID: 11919 (code=exited, status=1/FAILURE)
I would like to know if is there any command for activating Docker services?
sudo systemctl start docker)? You'll have to runstatusagain to see what happened, it will probably contain a record of both attempts -- if not check the PID against the one you already have to make sure it actually tried. I'm not a user so I don't know, but I would assume docker requires some configuration to do anything meaningful, so if you have not set it up then perhaps that is the reason. You could also checksudo grep docker /var/log/syslogto see if there is any more information. – goldilocks Jul 18 '16 at 11:34journalctl -xnas it was suggested to you. – Huygens Oct 11 '16 at 12:16