Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting the error "Apache port:443 is being used by another application" after installing AMPPS

Tags:

apache

wamp

After installing AMPPS for Windows, while trying to launch Apache I get an error saying,

Apache port:443 is being used by another application.

I do not have any other programs (that I know of) such as Skype that are currently running. How can I monitor my 443 port or change the port for Apache?

By the way, I have McAfee as an anti-virus.

like image 306
markmiller Avatar asked Feb 02 '13 02:02

markmiller


People also ask

Does Apache use port 443?

Relevance of Apache port 443 By default, Apache uses port 80 for normal web traffic. But, when it has to deal with secure web transactions, it uses the port 443. This secure transaction works using the SSL certificate.


2 Answers

Open command prompt(start -> run -> cmd) and type the following command :

C:\> netstat -aon | findstr 0.0:443

Last column of the output is the PID of the application using port 443.

You can find the application name in Task Manager. Go to Process Tab then in Menu Bar of Task Manager go to View -> Select Column -> Check "PID" and press Ok. Search for the PID in the list(Click Below "Show processes from all users" in case if you don't find the PID), corresponding process is the application which is using port 443. Stop or Uninstall it to make your AMPPS Apache work.

like image 123
Jigar Avatar answered Sep 17 '22 15:09

Jigar


I was facing the same issue as on port 443, vmware service was running, i went to task manager and stopped the service and then started apache and it worked fine.

like image 43
user3444999 Avatar answered Sep 17 '22 15:09

user3444999