


TCP port occupation: Why is the port still occupied after the server program exits and how to solve it?
Python TCP server port occupation problem: The port is still occupied after the program exits and the solution
When developing a TCP server in Python, a common problem is that after the server program is closed, the target port is still in an occupied state, resulting in the inability to restart the server immediately. This article will explore this problem in depth and provide effective solutions.
Problem: Developers use socket.socket()
to create a TCP server and combine multiprocessing.pool
to process client requests. After the server terminated unexpectedly, lsof -i :6001
does not show that port 6001 is occupied, but OSError: [Errno 98] Address already in use
error occurred during restart. However, netstat -anp | grep 6001
shows a large number of connections in TIME_WAIT
state.
Cause: This is caused by the TIME_WAIT
status of the TCP connection. When the server exits abnormally, some TCP connections may not be closed correctly and enter TIME_WAIT
state. The operating system retains these ports for a period of time (mins to tens of minutes) to ensure data transmission reliability. lsof
focuses on the association between the process and the file, while the TIME_WAIT
connection is not directly held by any process, so lsof
cannot be detected; netstat
can display the network connection status, so you can see the TIME_WAIT
connection.
Solution: Set the SO_REUSEADDR
option before the server program binds the port. This option allows the port to be bound immediately when it is in the TIME_WAIT
state. The modified code is as follows:
serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) serversocket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) # Add serversocket.bind before bind(('0.0.0.0', port)) # ...Other codes...
Adding serversocket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
can solve the port occupation problem caused by TIME_WAIT
status. Linux 3.9 and later kernels have added the SO_REUSEPORT
option, which is more refined than SO_REUSEADDR
. It is recommended to set these two options at the same time. Windows systems may also need to set the SO_EXCLUSIVEADDRUSE
option.
The above is the detailed content of TCP port occupation: Why is the port still occupied after the server program exits and how to solve it?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











Bitcoin’s price ranges from $20,000 to $30,000. 1. Bitcoin’s price has fluctuated dramatically since 2009, reaching nearly $20,000 in 2017 and nearly $60,000 in 2021. 2. Prices are affected by factors such as market demand, supply, and macroeconomic environment. 3. Get real-time prices through exchanges, mobile apps and websites. 4. Bitcoin price is highly volatile, driven by market sentiment and external factors. 5. It has a certain relationship with traditional financial markets and is affected by global stock markets, the strength of the US dollar, etc. 6. The long-term trend is bullish, but risks need to be assessed with caution.

The top ten cryptocurrency trading platforms in the world include Binance, OKX, Gate.io, Coinbase, Kraken, Huobi Global, Bitfinex, Bittrex, KuCoin and Poloniex, all of which provide a variety of trading methods and powerful security measures.

The top ten digital currency exchanges such as Binance, OKX, gate.io have improved their systems, efficient diversified transactions and strict security measures.

The top ten cryptocurrency exchanges in the world in 2025 include Binance, OKX, Gate.io, Coinbase, Kraken, Huobi, Bitfinex, KuCoin, Bittrex and Poloniex, all of which are known for their high trading volume and security.

Currently ranked among the top ten virtual currency exchanges: 1. Binance, 2. OKX, 3. Gate.io, 4. Coin library, 5. Siren, 6. Huobi Global Station, 7. Bybit, 8. Kucoin, 9. Bitcoin, 10. bit stamp.

ABI compatibility in C refers to whether binary code generated by different compilers or versions can be compatible without recompilation. 1. Function calling conventions, 2. Name modification, 3. Virtual function table layout, 4. Structure and class layout are the main aspects involved.

Measuring thread performance in C can use the timing tools, performance analysis tools, and custom timers in the standard library. 1. Use the library to measure execution time. 2. Use gprof for performance analysis. The steps include adding the -pg option during compilation, running the program to generate a gmon.out file, and generating a performance report. 3. Use Valgrind's Callgrind module to perform more detailed analysis. The steps include running the program to generate the callgrind.out file and viewing the results using kcachegrind. 4. Custom timers can flexibly measure the execution time of a specific code segment. These methods help to fully understand thread performance and optimize code.

DMA in C refers to DirectMemoryAccess, a direct memory access technology, allowing hardware devices to directly transmit data to memory without CPU intervention. 1) DMA operation is highly dependent on hardware devices and drivers, and the implementation method varies from system to system. 2) Direct access to memory may bring security risks, and the correctness and security of the code must be ensured. 3) DMA can improve performance, but improper use may lead to degradation of system performance. Through practice and learning, we can master the skills of using DMA and maximize its effectiveness in scenarios such as high-speed data transmission and real-time signal processing.
