XAMPP apache server is not starting after Skype installation

后端 未结 8 2163
别跟我提以往
别跟我提以往 2020-11-30 06:44

I am getting following console logs:

1:14:33 PM  [apache]    Possible problem detected! 
1:14:33 PM  [apache]    Port 80 in use by \"c:\\program files (x86)\         


        
相关标签:
8条回答
  • 2020-11-30 06:47

    got skype>>tools>>options>>advanced and remove the check on (use ports 80 & 443).

    0 讨论(0)
  • 2020-11-30 06:57

    This happened to me while collaborating with someone over Skype, so closing Skype was not an option.

    One possible solution is changing the port XAMPP is using for Apache.

    1. Change Apache (httpd.conf)

    Go to the XAMPP Control Panel, click Config for the Apache module and then Apache (httpd.conf).

    XAMPP Control Panel -> Click Config for the Apache module

    Click Apache (httpd.conf) in the new window

    This will now open the configuration file in the editor that is configured in the XAMPP settings (Windows default is notepad.exe). Open the search tool and search for 80. There should be two lines containing 80 as in the port number 80:

    Listen 80
    
    ServerName localhost:80
    

    Now replace 80 with an open port. I used 8080.

    Listen 8080
    
    ServerName localhost:8080
    

    2. Change Apache (httpd-ssl.conf)

    The same procedure needs to be repeated with the SSL configuration. Repeat the steps above but go to Apache (httpd-ssl.conf). Replace the port numbers in the following lines:

    Listen 443
    
    <VirtualHost _default_:443>
    
    ServerName www.example.com:443
    

    I choose 4433.


    Done. Click Start for Apache and Apache should start fine. On my end, the errors would still show up, though.

    0 讨论(0)
  • 2020-11-30 06:59

    Since Skype 2019, they are not using port 80, so it no effects on Xampp. If this problem happened on your computer, try to disable World Wide Web Publishing service by this way:

    1. Open CMD
    2. Enter services.msc
    3. Stop this service: World Wide Web Publishing service

    Restart Apache

    0 讨论(0)
  • 2020-11-30 07:05

    Please update your post with output of the following command, don't forget to correct the path :

    C:\> path\to\xampp\apache\bin\httpd.exe
    

    I think now its not the port conflict issue as you have changed the port.

    By the way you can change the settings in skype for not using port 80 and 443, in new version there should be some changes but you should be able to find it. :)

    0 讨论(0)
  • 2020-11-30 07:07

    go in skype->tools->options->advanced and UN-check use ports 80 & 443.

    0 讨论(0)
  • 2020-11-30 07:07

    Goto Skype -> Tools -> Options -> Advanced -> Connection

    After that, restart your Skype.

    0 讨论(0)
提交回复
热议问题