XAMPP - Apache error

This is the error I get when I try to start Apache.

enter image description hereenter image description here

Error logs:

 [ssl:warn] [pid 7132:tid 392] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
 [ssl:warn] [pid 7132:tid 392] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
 [mpm_winnt:notice] [pid 7132:tid 392] AH00455: Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.5.15 configured -- resuming normal operations
 [mpm_winnt:notice] [pid 7132:tid 392] AH00456: Apache Lounge VC11 Server built: Jul 17 2014 11:50:08
 [core:notice] [pid 7132:tid 392] AH00094: Command line: 'C:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
 [mpm_winnt:notice] [pid 7132:tid 392] AH00418: Parent: Created child process 540
 [ssl:warn] [pid 540:tid 408] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
 [ssl:warn] [pid 540:tid 408] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
 [mpm_winnt:notice] [pid 540:tid 408] AH00354: Child: Starting 150 worker threads.

      

I do not understand what the problem is. Can anyone please help?

I changed Ports in the below lines in my httpd.conf file

Listen 80
ServerName localhost:80

      

Are there other files where I need to change these values?

+3


source to share


2 answers


It worked when I ran the XAMPP control panel with admin rights.



+3


source


You only need to change the port in httpd.conf
try:

netstat -ano 

      



and check if port 80 is being used by another program. Close the program that is using port 80 and try to start apache again.

0


source







All Articles