Author |
|
test_lab01
Joined: 27 May 2025 Posts: 4 Location: Germany, Ralingen
|
Posted: Wed 28 May '25 9:29 Post subject: Aoache does not start after upgrade!! |
|
|
Hi guys,
I need your help.
Yesterday we tried to update our XAMPP server with the latest httpd version.
So we have download it. and put it on our webserver.
Then we renamed the current apache folder to apache_old and drag and drop the new apace folder in the root. Then we have copied the conf folder of the _old folder in to the new one.
And tried to start the XAMPP apache server. But now it giving us an error:
Quote: | 17:14:55 [Apache] Port 443 in use by ""C:\Program Files\VisualSVN Server\bin\vsvnhttpsvc.exe" -k runservice -C "LoadModule log_visualsvn_module bin/mod_log_visualsvn.so" -E nul" with PID 2592!
17:14:55 [Apache] Apache WILL NOT start without the configured ports free!
17:14:55 [Apache] You need to uninstall/disable/reconfigure the blocking application
17:14:55 [Apache] or reconfigure Apache and the Control Panel to listen on a different port |
But when we rename the current new folder to for example apache_new and rename the apache_old folder again to apache then the Apache server works.
Or we did make a wrong copy/paste or something else is not working[/img] |
|
Back to top |
|
tangent Moderator
Joined: 16 Aug 2020 Posts: 377 Location: UK
|
Posted: Wed 28 May '25 17:52 Post subject: Re: Aoache does not start after upgrade!! |
|
|
test_lab01 wrote: | 17:14:55 [Apache] Apache WILL NOT start without the configured ports free!
|
Sounds like the port(s) that your Apache configuration uses are still active. Did you shutdown the previous server instance before attempting the upgrade?
You can confirm the port is currently in listen mode using the netstat command, viz:
Code: | C:\>netstat -an | findstr /r ":443.*LISTEN"
TCP 0.0.0.0:443 0.0.0.0:0 LISTENING |
(change 443 to your configured Apache port as needbe)
Alternatively, your can use the GUI Resource Monitor utility "resmon", which will also show you the process using the listen port.
Then shutdown/kill the old process. |
|
Back to top |
|
test_lab01
Joined: 27 May 2025 Posts: 4 Location: Germany, Ralingen
|
Posted: Wed 28 May '25 18:02 Post subject: |
|
|
we did shutdown indeed the XAMPP server before doing this..
and just copy pased from the old folder to the new apache folder nothing else, you should think it is working right? |
|
Back to top |
|
tangent Moderator
Joined: 16 Aug 2020 Posts: 377 Location: UK
|
Posted: Thu 29 May '25 14:52 Post subject: |
|
|
I would expect it to work, providing the configured ports are currently free. Your error message suggests otherwise.
Presume you've confirmed the ports are not still attached to a running process? |
|
Back to top |
|
test_lab01
Joined: 27 May 2025 Posts: 4 Location: Germany, Ralingen
|
Posted: Fri 30 May '25 0:41 Post subject: |
|
|
tangent wrote: | I would expect it to work, providing the configured ports are currently free. Your error message suggests otherwise.
Presume you've confirmed the ports are not still attached to a running process? |
Is there a possibility to see in Xampp, and how to solve the problem in this case. As we always use SVN on 443 port. |
|
Back to top |
|
test_lab01
Joined: 27 May 2025 Posts: 4 Location: Germany, Ralingen
|
Posted: Fri 30 May '25 10:45 Post subject: |
|
|
Hi all,
somehow now i get the following problem:
Quote: | [Tue May 27 16:47:47.613538 2025] [ssl:emerg] [pid 4076:tid 376] AH02562: Failed to configure certificate www.example.com:8443:0 (with chain), check E:/xampp/apache/conf/ssl.crt/server.crt
[Tue May 27 16:47:47.614537 2025] [ssl:emerg] [pid 4076:tid 376] SSL Library Error: error:0A00018F:SSL routines::ee key too small |
this came after the change to 8443 |
|
Back to top |
|