XAMPP: Couldn't start Apache (Windows 10)

前端 未结 25 2034
长情又很酷
长情又很酷 2020-11-30 19:26

I\'m using XAMPP, and I can start Apache, but, MySQL (phpMyAdmin) start!

When I start, I get this error;

10:07         


        
25条回答
  •  时光说笑
    2020-11-30 19:49

    Change the port number which port are available in your system By following ways

    1. First open the Apache “httpd.conf” file:

    #Listen 12.34.56.78:80
    Listen 80
    ServerName localhost:80
    

    to

    #Listen 12.34.56.78:8080
    Listen 8080
    ServerName localhost:8080
    

    2. Open httpd-ssl.conf:

    Listen 443
    
    

    to

    Listen 441
    
    

    3. Follow the trick. Now “Start” Apache and if everything goes well, your Apache server should start up.

提交回复
热议问题