DEV Community

Discussion on: How to properly close a port?

Collapse
 
mayankjoshi profile image
mayank joshi

When a process is killed, the ports are automatically Freed.

When I was doing TCP up connection I Freed same port for reuse using this method itself.

Collapse
 
ajnasz profile image
Lajos Koszti • Edited

Luckily, if you stop the application, the port will be released. The title says How to properly close a port?, not how to kill a process. What if you want the keep the process running but don't want to listen on that port anymore?

Thread Thread
 
mayankjoshi profile image
mayank joshi

I don't think it is possible to free a port held by a process without killing the same process.