Apache webserver

FreeBSD 13.4, Apache 2.4.63

Not sure what is going on here but every time I update PHP Apache will not restart automatically at midnight. This would result in no website for around 7-8 hours before I noticed it wasn't working. Checking the Apache error log shows no errors at midnight ...

Code:
[Sun Feb 16 00:00:01.011384 2025] [mpm_prefork:notice] [pid 45540] AH00171: Graceful restart requested, doing restart
[Sun Feb 16 00:00:01.048542 2025] [ssl:info] [pid 45540] AH01883: Init: Initialized OpenSSL library
[Sun Feb 16 00:00:01.048590 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(414): AH00821: shmcb_init allocated 128000 bytes of shared memory
[Sun Feb 16 00:00:01.048596 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(428): AH00822: for 127912 bytes (128000 including header), recommending 4 subcaches, 21 indexes each
[Sun Feb 16 00:00:01.048599 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(465): AH00824: shmcb_init_memory choices follow
[Sun Feb 16 00:00:01.048602 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(467): AH00825: subcache_num = 4
[Sun Feb 16 00:00:01.048604 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(469): AH00826: subcache_size = 31976
[Sun Feb 16 00:00:01.048607 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(471): AH00827: subcache_data_offset = 520
[Sun Feb 16 00:00:01.048610 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(473): AH00828: subcache_data_size = 31456
[Sun Feb 16 00:00:01.048612 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(475): AH00829: index_num = 21
[Sun Feb 16 00:00:01.048621 2025] [socache_shmcb:info] [pid 45540] AH00830: Shared memory socache initialised
[Sun Feb 16 00:00:01.048627 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(414): AH00821: shmcb_init allocated 512000 bytes of shared memory
[Sun Feb 16 00:00:01.048630 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(428): AH00822: for 511912 bytes (512000 including header), recommending 32 subcaches, 88 indexes each
[Sun Feb 16 00:00:01.048633 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(465): AH00824: shmcb_init_memory choices follow
[Sun Feb 16 00:00:01.048635 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(467): AH00825: subcache_num = 32
[Sun Feb 16 00:00:01.048638 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(469): AH00826: subcache_size = 15992
[Sun Feb 16 00:00:01.048640 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(471): AH00827: subcache_data_offset = 2128
[Sun Feb 16 00:00:01.048643 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(473): AH00828: subcache_data_size = 13864
[Sun Feb 16 00:00:01.048645 2025] [socache_shmcb:debug] [pid 45540] mod_socache_shmcb.c(475): AH00829: index_num = 88
[Sun Feb 16 00:00:01.048711 2025] [socache_shmcb:info] [pid 45540] AH00830: Shared memory socache initialised
[Sun Feb 16 00:00:01.048715 2025] [ssl:info] [pid 45540] AH01887: Init: Initializing (virtual) servers for SSL
[Sun Feb 16 00:00:01.051346 2025] [ssl:info] [pid 45540] AH01876: mod_ssl/2.4.63 compiled against Server: Apache/2.4.63, Library: OpenSSL/1.1.1w-freebs

I always Stop Apache then Start it after PHP has updated itself just to make sure all is well. However prior to this one I tried not doing so and it still didn't restart gracefully.

Any ideas here?
 
Okay this seems to be related to my previous thread ...


and I had to re-apply the moving of LoadModule php_module libexec/apache24/libphp.so to the top of httpd.conf.

which has stopped this error ...

Code:
Feb 16 17:28:36 myserver kernel: pid 10399 (httpd), jid 0, uid 0: exited on signal 11 (core dumped)

every time I issue service apache24 graceful.

I can only assume updating FreeBSD to 13.4 has caused this.
 
Back
Top