Detailed troubleshooting of docker.service startup errors

Detailed troubleshooting of docker.service startup errors

Execute the following command to report an error

systemctl restart docker

View error messages

systemctl status docker -l

The error message is as follows:

● docker.service - Docker Application Container Engine
  Loaded: loaded (/usr/lib/systemd/system/docker.service; disabled; vendor preset: disabled)
 Drop-In: /etc/systemd/system/docker.service.d
      └─kolla.conf
  Active: failed (Result: exit-code) since Wednesday 2018-08-01 16:32:27 CST; 52 minutes ago
   Docs: https://docs.docker.com
 Process: 3833722 ExecStart=/usr/bin/docker daemon --insecure-registry 172.16.59.153 (code=exited, status=1/FAILURE)
 Main PID: 3833722 (code=exited, status=1/FAILURE)
  Memory: 8.0K
  CGroup: /system.slice/docker.service

Aug 01 16:32:26 czwei004 systemd[1]: Starting Docker Application Container Engine...
August 01 16:32:26 czwei004 docker[3833722]: time="2018-08-01T16:32:26.527063936+08:00" level=info msg="libcontainerd: new containerd process, pid: 3833733"
Aug 01 16:32:27 czwei004 docker[3833722]: time="2018-08-01T16:32:27.532317497+08:00" level=warning msg="devmapper: Usage of loopback devices is strongly discouraged for production use. Please use `--storage-opt dm.thinpooldev` or use `man docker` to refer to dm.thinpooldev section."
Aug 01 16:32:27 czwei004 docker[3833722]: time="2018-08-01T16:32:27.560010414+08:00" level=warning msg="devmapper: Base device already exists and has filesystem xfs on it. User specified filesystem will be ignored."
August 01 16:32:27 czwei004 docker[3833722]: time="2018-08-01T16:32:27.577758251+08:00" level=fatal msg="Error starting daemon: error initializing graphdriver: \"/var/lib/docker\" contains several valid graphdrivers: devicemapper, overlay2; Please cleanup or explicitly choose storage driver (-s <DRIVER>)"
Aug 01 16:32:27 czwei004 systemd[1]: docker.service: main process exited, code=exited, status=1/FAILURE
Aug 01 16:32:27 czwei004 systemd[1]: Failed to start Docker Application Container Engine.
Aug 01 16:32:27 czwei004 systemd[1]: Unit docker.service entered failed state.
Aug 01 16:32:27 czwei004 systemd[1]: docker.service failed.

Note that in the above error message

msg="Error starting daemon: error initializing graphdriver: \"/var/lib/docker\" contains several valid graphdrivers: devicemapper, overlay2; Please cleanup or explicitly choose storage driver (-s <DRIVER>)"

Go to the docker directory and check, there are directories for devicemapper and overlay2

The reason is that I installed a higher version of docker-engine before, and the default storage driver is overlay2. When I uninstalled it, the overlay2 folder remained in the docker directory. Later, I installed a lower version of docker, and the default was devicemapper, so there were multiple storage drivers.

After restarting the machine, delete the overlay2 directory and you can start it.

Additional knowledge: CentOS7 modifies the default storage location of Docker images

Stop the Docker service

# systemctl stop docker

Modify the docker service startup file

# vim /etc/sysconfig/docker

OPTIONS='--selinux-enabled --log-driver=journald --graph=/docker --signature-verification=false --insecure-registry 192.168.1.1'
#--insecure-registry 192.168.1.1 This is the warehouse address and can be ignored. # The /docker directory is what I use to replace the default /var/lib/docker. After the directory is created, remember to "mv /var/lib/docker/* /docker/" to move all the original

Copy all the files and directories in the first directory to the new directory.

Reload the configuration and start

# systemctl daemon-reload

# systemctl start docker

Check docker information

# docker info

The above detailed troubleshooting of the docker.service startup error is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of Docker service command (summary)
  • docker.service failed to start: Causes and solutions for Unit not found
  • Detailed explanation of overlay network in Docker
  • Docker online and offline installation and common command operations
  • Use docker to build kong cluster operation
  • How to change the domestic image source for Docker

<<:  Native JS to achieve drag photo wall

>>:  Summary of commonly used SQL in MySQL operation tables

Recommend

Use the njs module to introduce js scripts in nginx configuration

Table of contents Preface 1. Install NJS module M...

How to determine if the Linux system is installed on VMware

How to determine whether the current Linux system...

How to monitor array changes in Vue

Table of contents Preface Source code Where do I ...

Briefly understand the MYSQL database optimization stage

introduction Have you ever encountered a situatio...

Detailed explanation of MySQL cumulative calculation implementation method

Table of contents Preface Demand Analysis Mysql u...

Detailed steps to start the Django project with nginx+uwsgi

When we develop a web project with Django, the te...

How to use the vue timeline component

This article example shares the specific implemen...

Install Docker for Windows on Windows 10 Home Edition

0. Background Hardware: Xiaomi Notebook Air 13/In...

Linux operation and maintenance basics httpd static web page tutorial

Table of contents 1. Use the warehouse to create ...

Solve the problem of forgetting password in MySQL 5.7 under Linux

1. Problem Forgot password for mysql5.7 under lin...

Descending Index in MySQL 8.0

Preface I believe everyone knows that indexes are...

JavaScript to achieve simple drag effect

This article shares the specific code of JavaScri...

How to solve the problem of clicking tomcat9.exe crashing

A reader contacted me and asked why there were pr...

XHTML Tutorial: XHTML Basics for Beginners

<br />This site’s original content, please i...

How to use JavaScript to get the most repeated characters in a string

Table of contents topic analyze Objects of use So...