Apache server Installation failed(Port 80 or 443 already in use)

前端 未结 7 1210
无人及你
无人及你 2021-02-10 02:13

I have a question related to PHP. I am .net developer. I usually work on asp.net and c#.I installed Visual Studio and SQL Server in my laptop.Now I am trying to Install Xampp se

7条回答
  •  太阳男子
    2021-02-10 02:31

    Another solution without changing skype: ( for port 443 )

    First, port 443 is the HTTPS default port. you need to change that on the server to something else ( ex 4433 ). But in this case , you must specify that new port every time you want to use HTTPS requests ex :

    "https://localhost:4433"   .just typing "https://localhost" will NOT work. 
    

    So to change the port , go to folder "htdocs" in the Apache server , and use something like "notepad++" to replace all :443 by :4433. These ports should be in "httpd-sni.conf" and 'httpd-ssl.conf"

    I think it is ok to make the change as you are in a development environment.

提交回复
热议问题