Solution to the failure of entering the container due to full docker space

Solution to the failure of entering the container due to full docker space

Since the problem occurred rather suddenly and the business was pressing, I didn't have time to take screenshots of the scene, so the on-site screenshots are of the normal environment later.

Go to work on Monday, log into the server as usual, and enter the docker container

>>> docker exec -i -t xxx /bin/bash
Docker error: no space left on device

No space?

I immediately thought of checking the system space.

>>> df -h
Filesystem Size Used Avail Use% Mounted on
devtmpfs 3.9G 0 3.9G 0% /dev
tmpfs 3.9G 0 3.9G 0% /dev/shm
tmpfs 3.9G 984K 3.9G 1% /run
tmpfs 3.9G 0 3.9G 0% /sys/fs/cgroup
/dev/vda1 50G 50G 0G 100% /
overlay 50G 5.9G 41G 13% /var/lib/docker/overlay2/4d0941b78fa413f3b77111735e06045b41351748bcea7964205bcfbf9d4ec0b6/merged
overlay 50G 5.9G 41G 13% /var/lib/docker/overlay2/54a7a7b66d9c12d7e42158d177a6b67321f7da1f223b301e838e9bc109a2bda4/merged
shm 64M 0 64M 0% /var/lib/docker/containers/712f65baea85d898f6c948e7149f84f2f5eaf3b1934540603f32ab278f9acec4/mounts/shm
shm 64M 0 64M 0% /var/lib/docker/containers/a5fa673086c8f46ba98fc4425b353ed2e12de3277a5fe2dc5b8b7affa63b4518/mounts/shm
overlay 50G 5.9G 41G 13% /var/lib/docker/overlay2/7fbbc8a29119a1eaa1f212c50b75405a1f16fd68e3ae3949cc0c963d0727a9ab/merged
shm 64M 0 64M 0% /var/lib/docker/containers/011a83deceacecbacb4ef7eb06eb5b812babf9e83914a4fb33d4925cc1ad375b/mounts/shm
tmpfs 783M 0 783M 0% /run/user/0

It turns out that the root directory is full

Find more

>>> cd /
>>> du -h --max-depth=1
984K ./run
16K ./opt
13M ./root
4.0K ./media
du: cannot access './proc/4382/task/4382/fd/4': No such file or directory
du: cannot access './proc/4382/task/4382/fdinfo/4': No such file or directory
du: cannot access './proc/4382/fd/3': No such file or directory
du: cannot access './proc/4382/fdinfo/3': No such file or directory
0 ./proc
204M ./boot
12K ./redis
39M ./etc
16K ./lost+found
4.0K ./srv
0 ./sys
47G ./var
2.8G ./usr
4.0K ./mnt
36K ./tmp
0 ./dev
4.0K ./home
50G .
>>> cd var
>>> du -h --max-depth=1
116M ./cache
8.0K ./empty
4.0K ./games
4.0K ./opt
24K ./db
46G ./lib
4.0K ./gopher
4.0K ./adm
4.0K ./crash
12K ./kerberos
4.0K ./preserve
4.0K ./nis
16K ./tmp
4.0K ./yp
4.0K ./local
104K ./spool
374M ./log
47G .
>>> cd lib
>>> du -h --max-depth=1
76K ./systemd
24K ./NetworkManager
4.0K ./tuned
4.0K ./games
248K ./cloud
215M ./rpm
8.0K ./plymouth
46G ./docker
248K ./containerd
4.0K ./dbus
4.0K ./initramfs
4.0K ./os-prober
8.0K ./rsyslog
24K ./alternatives
8.0K ./authconfig
12K ./stateless
4.0K ./misc
4.0K ./ntp
8.0K ./dhclient
4.0K ./selinux
8.0K ./chrony
4.0K ./rpm-state
12M ./yum
8.0K ./postfix
28K ./polkit-1
4.0K ./machines
8.0K ./logrotate
46G .
>>> cd docker
>>> du -h --max-depth=1
84K ./network
108K ./buildkit
4.0K ./trust
4.0K ./runtimes
5.7M ./image
42G ./volumes
24K ./plugins
4.0K ./tmp
20K ./builder
180K ./containers
3.3G ./overlay2
4.0K ./swarm
46G .
>>> cd volume
>>> du -h --max-depth=1
172K ./kudu_to_jdy_kudu_to_jdy
42G ./jdy_extensions_logs
748K ./bot_etl_bot_etl
42G .

It turned out that the jdy_extensions_logs volume was full, and then I found the code bug.

postscript:

In fact, Docker provides many commands to manage container images, among which docker system df is a more useful command

# Display docker file system usage >>> docker system df
TYPE TOTAL ACTIVE SIZE RECLAIMABLE
Images 7 3 2.146GB 693.2MB (32%)
Containers 3 3 127.5kB 0B (0%)
Local Volumes 3 3 1.511MB 0B (0%)
Build Cache 0 0 0B 0B
# Display space usage >>> docker system df -v
Images space usage:
REPOSITORY TAG IMAGE ID CREATED SIZE SHARED SIZE UNIQUE SIZE CONTAINERS
jdy_extension 1.7 e3be3be9664a 15 hours ago 627.6MB 73.86MB 553.7MB 1
<none> <none> 4b5825747ae9 19 hours ago 74.02MB 73.86MB 158.8kB 0
redis 6.2.1 f877e80bb9ef 2 weeks ago 105.3MB 0B 105.3MB 0
kudu_to_jdy 2.9 888b72288bca 2 weeks ago 538.1MB 73.86MB 464.3MB 1
jdy_to_db 1.9 c345c4e15c1a 7 months ago 587.7MB 73.86MB 513.9MB 0
bot_etl 2.3 020d41691ec7 7 months ago 508.6MB 73.86MB 434.8MB 1
ubuntu 20.04 adafef2e596e 8 months ago 73.86MB 73.86MB 0B 0
Containers space usage:
CONTAINER ID IMAGE COMMAND LOCAL VOLUMES SIZE CREATED STATUS NAMES
011a83deceac jdy_extension:1.7 "supervisord -n -c /…" 1 17.8kB 15 hours ago Up 15 hours jdy_extension_1.7
712f65baea85 kudu_to_jdy:2.9 "supervisord -n -c /…" 1 36.9kB 2 weeks ago Up 45 hours kudu_to_jdy_2.9
a5fa673086c8 bot_etl:2.3 "supervisord -n -c /…" 1 72.8kB 7 months ago Up 45 hours bot_etl_2.3
Local Volumes space usage:
VOLUME NAME LINKS SIZE
jdy_extensions_logs 1 658.5kB
kudu_to_jdy_kudu_to_jdy 1 128kB
bot_etl_bot_etl 1 724kB
Build cache usage: 0B
CACHE ID CACHE TYPE SIZE CREATED LAST USED USAGE SHARED
# Delete all unused volumes
>>> docker volume rm $(docker volume ls -q)

Supplement: Record a case where the docker disk occupies 100%

When executing git pull origin master, the following error is thrown:

error: RPC failed; HTTP 500 curl 22 The requested URL returned error: 500

fatal: the remote end hung up unexpectedly

After searching on Baidu, many people said that it was due to the nginx file size limit, but after checking the configuration file, the size limit has been set to 500M, so it should not be caused by this reason:

server
{
  listen 80;
  server_name localhost;
  client_max_body_size 500M;
  location / {
    proxy_redirect off;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_pass http://localhost:180;
  }
}

Then use df -h to check the disk status and find that the data2 disk is 100% full (docker is stored here):

Using docker system prune -a freed up a lot of space and the problem was solved.

Note: Using the above command will delete the following content

WARNING! This will remove:
    - all stopped containers
    - All networks not used by at least one container
    - all images without at least one container associated to them
    -all build cache
Are you sure you want to continue? [y/N] y

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • How to solve the Docker container startup failure
  • Solve the problem that some configuration files in /etc are reset after the docker container is restarted
  • Docker View the Mount Directory Operation of the Container
  • docker run -v mounts data volumes abnormally, and the container status is always restarting

<<:  Summary of MySQL character sets

>>:  Vue3.0 handwritten carousel effect

Recommend

Docker time zone issue and data migration issue

Latest solution: -v /usr/share/zoneinfo/Asia/Shan...

Should I abandon JQuery?

Table of contents Preface What to use if not jQue...

Solution to Mysql binlog log file being too large

Table of contents 1. Related binlog configuration...

How to solve the problem of clicking tomcat9.exe crashing

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

Detailed explanation of Object.create instance usage in js

1. Create a new object using the Object.create() ...

Vue recursively implements custom tree components

This article shares the specific code of Vue recu...

Example code of vue + element ui to realize player function

The display without the effect picture is just em...

Let's talk about the issue of passing parameters to React onClick

Background In a list like the one below, clicking...

Detailed tutorial on installing Tomcat8.5 in Centos8.2 cloud server environment

Before installing Tomcat, install the JDK environ...

Summary of using the reduce() method in JS

Table of contents 1. Grammar 2. Examples 3. Other...

Examples of preview functions for various types of files in vue3

Table of contents Preface 1. Preview of office do...