Skip to main content

Find out what's blocking port 80 / 443 on Windows and stopping Qlik services from starting

No ratings
cancel
Showing results for 
Search instead for 
Did you mean: 
Sonja_Bauernfeind
Digital Support
Digital Support

Find out what's blocking port 80 / 443 on Windows and stopping Qlik services from starting

Last Update:

Aug 24, 2020 8:48:02 AM

Updated By:

Sonja_Bauernfeind

Created date:

Jul 30, 2018 9:55:45 AM

It is not always obvious what process is currently using a specific port. This can make identifying why a Qlik service is not starting difficult. 

This is how you find what task that is currently listening on the default HTTP-port 80 or HTTPS-port 443. This can be applied to any port.

Open the Command Prompt (cmd.exe) and execute the following:

Step 1 -  Find PID of program:

netstat -ano | find "443" or netstat -ano | find "80"

The list could be long. Look for something ending with :443 or :80 in the second column. Get the pid from the right most column (e.g. 37400)



Step 2 -  Find the name of the task with the resulting PID:

tasklist /svc /FI "PID eq 37400"

The output should give you the name of the task that is blocking your port.

Step 3 - If the PID turns out to be PID 4 or something else that displays "Can not obtain ownership information" use:

net stop http

This will show you any additional services that are dependent on 80/443


 

Labels (2)
Contributors
Version history
Last update:
‎2020-08-24 08:48 AM
Updated by: