Solution to Docker's failure to release ports

Solution to Docker's failure to release ports

Today I encountered a very strange situation. After updating the docker image, I ran docker-compose up -d and the message Bind for 0.0.0.0:xxxx failed: port is already allocated appeared. After netstat -ap | grep xxxx, I found that a docker process had been occupying this port and the service could not be restarted.

Through a series of solutions:

For example, killing the process and restarting Docker did not succeed. I will then share a method that I hope will provide a solution to students who encounter the same problem.

sudo cp /var/lib/docker/network/files/local-kv.db /var/lib/docker/network/files/local-kv.db_bk
sudo rm /var/lib/docker/network/files/local-kv.db
sudo docker-compose up -d

Supplement: Solution to the docker port being occupied "port is already allocated"

The Docker launcher displays "port is already allocated". I tried the following methods:

1. By restarting Docker

2. Restart your computer

3. Check the program corresponding to the occupied port and kill it

4. stop and rm all docker programs

None of them work.

Solution

The problem can be solved by finding the docker-compose.yml file in the corresponding working directory and changing the occupied port to another port.

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:
  • Docker file storage path, modify port mapping operation mode
  • How to add docker port and get dockerfile
  • Docker primary network port mapping configuration
  • How to modify the port mapping of a running Docker container
  • How to dynamically modify container port mapping in Docker
  • Docker port mapping and external inaccessibility issues
  • Docker image access to local elasticsearch port operation

<<:  A detailed analysis and processing of MySQL alarms

>>:  HTML 5 Reset Stylesheet

Recommend

Summary of some reasons why crontab scheduled tasks are not executed

Preface I recently encountered some problems at w...

Nginx uses Lua+Redis to dynamically block IP

1. Background In our daily website maintenance, w...

MySQL case when group by example

A mysql-like php switch case statement. select xx...

In-depth explanation of the locking mechanism in MySQL InnoDB

Written in front A database is essentially a shar...

Vue-cli framework implements timer application

Technical Background This application uses the vu...

MySQL 8.0.11 Installation Tutorial under Windows

This article records the installation tutorial of...

Analysis of the advantages of path.join() in Node.js

You might be wondering why you should use the pat...

Nginx cache configuration example

When developing and debugging a web application, ...

Steps to install GRUB on Linux server

How to Install GRUB for Linux Server You cannot u...

Realize three-level linkage of year, month and day based on JavaScript

This article shares the specific code for JavaScr...

MySQL 8.0.18 stable version released! Hash Join is here as expected

MySQL 8.0.18 stable version (GA) was officially r...

How to uninstall MySQL 5.7.19 under Linux

1. Find out whether MySQL was installed before Co...

Web Theory: Don't make me think Reading Notes

Chapter 1 <br />The most important principl...

Steps to create your own YUM repository

To put it simply, the IP of the virtual machine u...