skip to Main Content

Problem detected! 3:19:55 AM [Apache] Port 80 in use by “Unable to open process” with PID 4! 3:19:55 AM [Apache] Apache WILL NOT start without the configured ports free! 3:19:55 AM [Apache] You need to uninstall/disable/reconfigure the blocking application 3:19:55 AM [Apache] or configure Apache and the Control Panel to listen on a different port

How can i solve the php control panel PID problem.

2

Answers


  1. can you tell me about your envirenment please ?

    if you are running on localhost use the 8080 port instead of 80

    if you are running on linux such as ubuntu
    try to run this cmd
    fuser -n tcp -k 80
    it’s will close all the process on the 80 port

    Login or Signup to reply.
  2. Using Powershell you can find a process by port:

    Get-Process -Id (Get-NetTCPConnection -LocalPort 80).OwningProcess
    

    If System is the process opening that port then usually another service has requested this. Here is a list of possible processes:

    • SQL Server Reporting Services (ReportServer)
    • Web Deployment Agent Service (MsDepSvc)
    • BranchCache (PeerDistSvc)
    • Sync Share Service (SyncShareSvc)
    • World Wide Web Publishing Service (W3SVC)
    • Internet Information Server (WAS, IISADMIN)
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search