Docker service startup error: Job for docker.service failed because the control process exited with error

tags: Docker

Error message: Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.
Solution:The kernel of CentOS7 system is not compatible with Docker version, update the kernel version of CentOS7 system

The native environment is CentOS7 installed on VirtualBox.

1. Check the kernel version <Docker requires the kernel version of the CentOS system to be higher than 3.10>

uname -r

2. Update yum package

yum update

3. Install Docker

yum install docker

 

4. Start Docker

[root@localhost ~]# systemctl start docker
//View Docker version
[root@localhost ~]# docker ‐v

5. Start docker on boot

[root@localhost ~]# systemctl enable docker

 

Intelligent Recommendation

Job for docker.service failed because the control process exited with error code. See

Use Docker in Liunx, Note: Liunx uses the centOS7 version under the virtual machine. There was no error when I first started installing Docker, but in the follow-upDuring the docker startup process, t...

Job for docker.service failed because the control process exited with error

Since docker does not support image kernel drivers: SELinux does not support OrthALA2 graphics driver on this kernel Docker re-edit the configuration file: vi /etc/sysconfig/docker Last recompile: sys...

Job for docker.service failed because the control process exited with error code...

Restarting docker after modifying the /etc/docker/daemon.json file raises the following exception At the time, my /etc/docker/daemon.json file was as follows solution: Delete the comment, and then res...

Dockers Job for docker.service failed because the control process exited with error code

Zero, problem description Job for docker.service failed because the control process exited with error code. See “systemctl status docker.service” and “journalctl -xe” for detai...

Job for docker.service failed because the control process exited with error code

Job for docker.service failed because the control process exited with error code. See “systemctl status docker.service” and “journalctl -xe” for details Solution Perform the fo...

More Recommendation

【centOS7】Job for docker.service failed because the control process exited with error code

Job for docker.service failed because the control process exited with error code Start the docker error Command line promptsjournalctl -xeLook at the wrong details, but I don't see a large string of s...

"Job for docker.service failed because the control process exited with error code."

Docker the day before is OK, and start the next day with the systemctl start docker command. It took me two hours to find the problem, and I searched it all over the place, read blogs online, wasted a...

Job for docker.service failed because the control process exited with error code.

This problem is purely a cheating person~~~ First, let me introduce whether the server used is Huawei Kirin v10 server or an arm architecture. I used a one-click installation to package docker+k8s, bu...

Yum install docker error: Job for docker.service failed because the control process exited with error code

I. Check the Linux kernel version, CenterOS7 install docker requires the kernel version is above 3.10: uname -r 2. Use the yum command to install: yum install docker Start Docker: systemctl start dock...

Job for docker.service failed because the control process exited with error code error when docker starts

problem analysis The Ethereum environment needs to use docker, and then many times the virtual machine does not have docker self-starting, so when restarting docker, it often appears: Job for docker.s...

Copyright  DMCA © 2018-2026 - All Rights Reserved - www.programmersought.com  User Notice

Top