Linux

如何擺脫處於 FIN_WAIT1 狀態的套接字?

  • July 9, 2019

我有一個埠被我需要殺死的程序阻塞。(一個崩潰的小 telnet 守護程序)。該程序已成功終止,但埠仍處於“FIN_WAIT1”狀態。它並沒有出現,它的超時似乎設置為“十年”。

我發現釋放埠的唯一方法是重新啟動整個機器,這當然是我不想做的事情。

$ netstat -tulnap | grep FIN_WAIT1 
tcp        0  13937 10.0.0.153:4000         10.0.2.46:2572          FIN_WAIT1  -

有誰知道如何在不重新啟動的情況下解鎖此埠?

# record what tcp_max_orphans's current value
original_value=$(cat /proc/sys/net/ipv4/tcp_max_orphans)

#set the tcp_max_orphans to 0 temporarily
echo 0 > /proc/sys/net/ipv4/tcp_max_orphans

# watch /var/log/messages
# it will split out "kernel: TCP: too many of orphaned sockets"
# it won't take long for the connections to be killed

# restore the value of tcp_max_orphans whatever it was before. 
echo $original_value > /proc/sys/net/ipv4/tcp_max_orphans

# verify with 
netstat -an|grep FIN_WAIT1

您應該可以使用 設置超時/proc/sys/net/ipv4/tcp_fin_timeout

似乎沒有任何方法可以手動清除套接字。

引用自:https://serverfault.com/questions/7689