Linux Program Has Exited but Port is Still Occupied

2019年12月7日 16点热度 1人点赞 1条评论
内容目录

After the program is closed, the port is already in use. Using

netstat -npla | grep {port_number}

you can see the occupied port and process ID, but using kill prompts that the process cannot be found.

1. Forcefully kill the process occupying the port

      sudo fuser -k -n tcp 80

2. Close a specific occupied port based on PID

      netstat -tunlp | grep 80
      lsof -i:80
      sudo kill -9 PID

痴者工良

高级程序员劝退师

文章评论