devxlogo

Find Which Port Is Being Used by a Process

There are many instances when we struggle to find out which port is being used by our applications.

On Windows, you can use the same netstat command, where the filtering is performed by findstr

netstat -an | findstr :80

Sample output on Windows:

C:Userssridharnetstat -an | findstr :80  TCP    0.0.0.0:8081           0.0.0.0:0              LISTENING  TCP    [::]:8081              [::]:0                 LISTENING  UDP    0.0.0.0:8082           *:*  UDP    [::]:8082              *:*

On Linux, you can use the following command. grep is basically a filter and in the below command, it filters the results with the keyword :80

netstat -an | grep :80

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  14 Best Practices and Implementation Tips for Effective Security Policies

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.