How can I check if the port is occupied by that program?

Source: Internet
Author: User

Start the applicationProgramThe required port has been occupied and the startup fails. How can I check that the application occupies this port? You can use netstat in the command line to View Details:

Netstat-a-n indicates port usage
Netstat-ano displays the port occupation and process PID

Start -- run -- cmd OK or press enter to enter the Command Prompt window. Type netstat-ano to view the port usage and PID of all connections, find the program corresponding to the PID in the task manager. If the PID is not found in the task manager, you can select "View"-"Select column"-"PID" in the task manager and check it.

You can also use the following method to determine that the program occupies the Port:

Enter the command prompt and type netstat-Aon | findstr "3306" (for example, I want to check that port 3306 is occupied by that application)

C: \ Documents ents and Settings \ Administrator> netstat-Aon | findstr "3306"
TCP 0.0.0.0: 3306 0.0.0.0: 0 listening 252

C: \ Documents ents and Settings \ Administrator> tasklist | findstr "252"
Mysqld. EXE 252 console 0 4,820 K

It can be seen that MySQL occupies port 3306.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.