Click here to Skip to main content
15,895,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
When starting my apache server with port number 80. i am using XAMPP. on my conputer not installed IIS. when i am trying diffrent port number XAMPP control panel opened, but phpMyadmin is not working properlly. guys plz tell me that where is actually engaged that port 80


4:13:16 PM [Apache] Problem detected!

4:13:16 PM [Apache] Port 80 in use by "Unable to open process" with PID 4!

4:13:16 PM [Apache] Apache WILL NOT start without the configured ports free!

4:13:16 PM [Apache] You need to uninstall/disable/reconfigure the blocking ap plication

4:13:16 PM [Apache] or reconfigure Apache and the Control Panel to listen on a different port

4:13:16 PM [Apache] Attempting to start Apache app...

4:13:17 PM [Apache] Status change detected: running

4:13:20 PM [Apache] Attempting to stop Apache (PID: 2784)

4:13:20 PM [Apache] Attempting to stop Apache (PID: 6376)

4:13:20 PM [Apache] Status change detected: stopped
Posted
Comments
Kornfeld Eliyahu Peter 10-Feb-14 9:54am    
Run
tasklist /fi "PID eq 4"
to find which process locks port 80

1 solution

Hi,

It means that some other process is already using port 80.

Here is how to check what is using port 80:
1. Open Command Prompt window.
2. Type netstat -aon
3. Look for the one ending in :80 and notice PID number.
4. Open Task Manager.
5. Click on Processes tab.
6. View -> Select Columns... Check the PID and press OK.
7. Now you should be able to see which process matches up with the PID number you noted earlier.

BTW, Skype might be using port 80. :)
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900