[Fri Nov 01 04:02:03.881629 2013] [auth_digest:notice] [pid 1631] AH01757: generating secret for digest authentication ...
[Fri Nov 01 04:02:04.102834 2013] [mpm_prefork:notice] [pid 1631] AH00163: Apache/2.4.4 (Unix) PHP/5.4.19 configured -- resuming normal operations
[Fri Nov 01 04:02:04.102917 2013] [core:notice] [pid 1631] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Fri Nov 01 04:02:04.217217 2013] [mpm_prefork:notice] [pid 1631] AH00171: Graceful restart requested, doing restart
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message
[Fri Nov 01 04:02:04.322557 2013] [auth_digest:notice] [pid 1631] AH01757: generating secret for digest authentication ...
[Fri Nov 01 04:02:05.046285 2013] [mpm_prefork:notice] [pid 1631] AH00163: Apache/2.4.4 (Unix) PHP/5.4.19 configured -- resuming normal operations
[Fri Nov 01 04:02:05.046351 2013] [core:notice] [pid 1631] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Fri Nov 01 06:41:17.565662 2013] [core:notice] [pid 1631] AH00052: child pid 22379 exit signal Segmentation fault (11)
[Fri Nov 01 06:42:00.400760 2013] [mpm_prefork:notice] [pid 1631] AH00170: caught SIGWINCH, shutting down gracefully
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message
[Fri Nov 01 06:42:02.085394 2013] [auth_digest:notice] [pid 23919] AH01757: generating secret for digest authentication ...
[Fri Nov 01 06:42:03.076773 2013] [mpm_prefork:notice] [pid 23919] AH00163: Apache/2.4.4 (Unix) PHP/5.4.19 configured -- resuming normal operations
[Fri Nov 01 06:42:03.076921 2013] [core:notice] [pid 23919] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
doktor5000 wrote:As you didn't state it explitly yet, did you check all the various crontab locations and maybe even at jobs?
#!/bin/sh
# Updates the timestamp of last monthly run for anacron
date +%Y%m%d > /var/spool/anacron/cron.monthly
#!/bin/sh
#
# check if there is a new microcode for your CPU and update it
# Intel 686 and above, AMD family 16 and above
vendor=`grep "^vendor_id" /proc/cpuinfo | head -n1 | awk -F ": " '{ print $2 }'`
family=`grep "^cpu family" /proc/cpuinfo | head -n1 | awk -F ": " '{ print $2 }'`
if [ "$vendor" = "GenuineIntel" ] && [ $family -ge 6 ]; then
/usr/sbin/update-intel-microcode
elif [ "$vendor" = "AuthenticAMD" ] && [ $family -ge 16 ]; then
minor=`uname -r | cut -d . -f 3 | cut -d - -f 1`
if [ $minor -ge 29 ]; then
/usr/sbin/update-amd-microcode
fi
fi
crontab -l root
/etc/crontab
/etc/anacrontab
find /etc/cron* -type f
or the contents of
- Code: Select all
/etc/crontab
or
- Code: Select all
/etc/anacrontab
What does
- Code: Select all
find /etc/cron* -type f
show?
KnightMB wrote:doktor5000 wrote:Are that the only cronjobs you checked?
What about
- Code: Select all
crontab -l root
KnightMB wrote:or the contents of
- Code: Select all
/etc/crontab
bash: cd: /etc/crontab: Not a directory
doktor5000 wrote:Well, it was only crontab -l - Did you read the usage?
# crontab -l
no crontab for root
#cat /etc/crontab
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/
# run-parts
01 * * * * root nice -n 19 run-parts --report /etc/cron.hourly
02 4 * * * root nice -n 19 run-parts --report /etc/cron.daily
22 4 * * 0 root nice -n 19 run-parts --report /etc/cron.weekly
42 4 1 * * root nice -n 19 run-parts --report /etc/cron.monthly
# cat /etc/anacrontab
# /etc/anacrontab: configuration file for anacron
# See anacron(8) and anacrontab(5) for details.
SHELL=/bin/sh
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
# the maximal random delay added to the base delay of the jobs
RANDOM_DELAY=45
# the jobs will be started during the following hours only
START_HOURS_RANGE=6-22
#period in days delay in minutes job-identifier command
1 5 cron.daily nice -n 19 run-parts /etc/cron.daily
7 25 cron.weekly nice -n 19 run-parts /etc/cron.weekly
@monthly 45 cron.monthly nice -n 19 run-parts /etc/cron.monthly
For the other crontab files you found, you should probably take a look inside them.
I've given you pointers where to look, you need to figure this out for yourself.
filip wrote:I would try running jobs listed in /etc/cron.monthly manually.
jiml8 wrote:You should also look in /var/spool/cron. You may find some crontabs there.
KnightMB wrote:I checked all the cron dates, none of them overlap.
[Wed Jan 01 04:02:03.350884 2014] [mpm_prefork:notice] [pid 2070] AH00171: Graceful restart requested, doing restart
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message
[Wed Jan 01 04:02:03.704711 2014] [auth_digest:notice] [pid 2070] AH01757: generating secret for digest authentication ...
[Wed Jan 01 04:02:04.838923 2014] [mpm_prefork:notice] [pid 2070] AH00163: Apache/2.4.4 (Unix) PHP/5.4.19 configured -- resuming normal operations
[Wed Jan 01 04:02:04.839004 2014] [core:notice] [pid 2070] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Wed Jan 01 04:02:08.862654 2014] [core:notice] [pid 2070] AH00052: child pid 28695 exit signal Segmentation fault (11)
[Wed Jan 01 05:20:21.314645 2014] [core:notice] [pid 2070] AH00052: child pid 28694 exit signal Segmentation fault (11)
[Wed Jan 01 05:20:24.321166 2014] [core:notice] [pid 2070] AH00052: child pid 28693 exit signal Segmentation fault (11)
[Wed Jan 01 05:20:34.336042 2014] [core:notice] [pid 2070] AH00052: child pid 28691 exit signal Segmentation fault (11)
[Wed Jan 01 05:22:28.571947 2014] [mpm_prefork:notice] [pid 2070] AH00170: caught SIGWINCH, shutting down gracefully
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message
[Wed Jan 01 05:22:30.092606 2014] [auth_digest:notice] [pid 30092] AH01757: generating secret for digest authentication ...
[Wed Jan 01 05:22:31.162031 2014] [mpm_prefork:notice] [pid 30092] AH00163: Apache/2.4.4 (Unix) PHP/5.4.19 configured -- resuming normal operations
[Wed Jan 01 05:22:31.162172 2014] [core:notice] [pid 30092] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Wed Jan 01 06:27:19.759375 2014] [mpm_prefork:notice] [pid 24675] AH00171: Graceful restart requested, doing restart
[Wed Jan 01 06:27:19.987618 2014] [auth_digest:notice] [pid 24675] AH01757: generating secret for digest authentication ...
[Wed Jan 01 06:27:20.438882 2014] [mpm_prefork:notice] [pid 24675] AH00163: Apache/2.4.4 (Unix) OpenSSL/1.0.1e PHP/5.4.19 configured -- resuming normal operations
[Wed Jan 01 06:27:20.438907 2014] [core:notice] [pid 24675] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Wed Jan 01 06:27:20.476375 2014] [mpm_prefork:notice] [pid 24675] AH00171: Graceful restart requested, doing restart
[Wed Jan 01 06:27:20.518603 2014] [auth_digest:notice] [pid 24675] AH01757: generating secret for digest authentication ...
[Wed Jan 01 06:27:21.077690 2014] [mpm_prefork:notice] [pid 24675] AH00163: Apache/2.4.4 (Unix) OpenSSL/1.0.1e PHP/5.4.19 configured -- resuming normal operations
[Wed Jan 01 06:27:21.077718 2014] [core:notice] [pid 24675] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Wed Jan 01 06:27:21.077746 2014] [core:notice] [pid 24675] AH00052: child pid 27251 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:21.078656 2014] [core:notice] [pid 24675] AH00052: child pid 27252 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:21.079592 2014] [core:notice] [pid 24675] AH00052: child pid 27253 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:21.080576 2014] [core:notice] [pid 24675] AH00052: child pid 27254 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:21.082380 2014] [core:notice] [pid 24675] AH00052: child pid 27255 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:21.087158 2014] [core:notice] [pid 24675] AH00052: child pid 27256 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:21.087196 2014] [core:notice] [pid 24675] AH00052: child pid 27257 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:21.087210 2014] [core:notice] [pid 24675] AH00052: child pid 27363 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:21.087222 2014] [core:notice] [pid 24675] AH00052: child pid 27364 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:21.087236 2014] [core:notice] [pid 24675] AH00052: child pid 27365 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:21.087248 2014] [core:notice] [pid 24675] AH00052: child pid 27366 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:22.090640 2014] [core:notice] [pid 24675] AH00052: child pid 27367 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:23.093979 2014] [core:notice] [pid 24675] AH00052: child pid 27407 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:23.094039 2014] [core:notice] [pid 24675] AH00052: child pid 27408 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:24.096929 2014] [core:notice] [pid 24675] AH00052: child pid 27409 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:24.097017 2014] [core:notice] [pid 24675] AH00052: child pid 27410 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:25.100087 2014] [core:notice] [pid 24675] AH00052: child pid 27411 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:25.100158 2014] [core:notice] [pid 24675] AH00052: child pid 27412 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:26.102446 2014] [core:notice] [pid 24675] AH00052: child pid 27413 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:26.102502 2014] [core:notice] [pid 24675] AH00052: child pid 27414 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:27.104996 2014] [core:notice] [pid 24675] AH00052: child pid 27450 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:27.105051 2014] [core:notice] [pid 24675] AH00052: child pid 27451 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:28.108331 2014] [core:notice] [pid 24675] AH00052: child pid 27584 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:28.108406 2014] [core:notice] [pid 24675] AH00052: child pid 27589 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:29.111239 2014] [core:notice] [pid 24675] AH00052: child pid 28059 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:29.111284 2014] [core:notice] [pid 24675] AH00052: child pid 28060 exit signal Segmentation fault (11)
[Wed Jan 01 06:27:30.114444 2014] [core:notice] [pid 24675] AH00052: child pid 28255 exit signal Segmentation fault (11)
..........................
[Wed Jan 01 08:40:34.815761 2014] [core:notice] [pid 24675] AH00052: child pid 24392 exit signal Segmentation fault (11)
[Wed Jan 01 08:40:34.815770 2014] [core:notice] [pid 24675] AH00052: child pid 24400 exit signal Segmentation fault (11)
[Wed Jan 01 08:40:34.815901 2014] [core:notice] [pid 24675] AH00052: child pid 24401 exit signal Segmentation fault (11)
[Wed Jan 01 08:40:34.815912 2014] [core:notice] [pid 24675] AH00052: child pid 24402 exit signal Segmentation fault (11)
[Wed Jan 01 08:40:34.815921 2014] [core:notice] [pid 24675] AH00052: child pid 24403 exit signal Segmentation fault (11)
[Wed Jan 01 08:40:34.815928 2014] [core:notice] [pid 24675] AH00052: child pid 24404 exit signal Segmentation fault (11)
[Wed Jan 01 08:40:35.615193 2014] [core:notice] [pid 24675] AH00052: child pid 24405 exit signal Segmentation fault (11)
[Wed Jan 01 08:40:35.615265 2014] [core:notice] [pid 24675] AH00052: child pid 24406 exit signal Segmentation fault (11)
[Wed Jan 01 08:40:35.615273 2014] [core:notice] [pid 24675] AH00052: child pid 24408 exit signal Segmentation fault (11)
[Wed Jan 01 08:40:35.615334 2014] [mpm_prefork:notice] [pid 24675] AH00170: caught SIGWINCH, shutting down gracefully
[Wed Jan 01 08:40:37.132632 2014] [auth_digest:notice] [pid 24616] AH01757: generating secret for digest authentication ...
[Wed Jan 01 08:40:38.094225 2014] [mpm_prefork:notice] [pid 24616] AH00163: Apache/2.4.4 (Unix) OpenSSL/1.0.1e PHP/5.4.19 configured -- resuming normal operations
[Wed Jan 01 08:40:38.094330 2014] [core:notice] [pid 24616] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Wed Jan 01 06:41:55.954521 2014] [mpm_prefork:notice] [pid 27705] AH00171: Graceful restart requested, doing restart
[Wed Jan 01 06:41:56.561629 2014] [auth_digest:notice] [pid 27705] AH01757: generating secret for digest authentication ...
[Wed Jan 01 06:41:57.612990 2014] [mpm_prefork:notice] [pid 27705] AH00163: Apache/2.4.4 (Unix) OpenSSL/1.0.1e PHP/5.4.19 configured -- resuming normal operations
[Wed Jan 01 06:41:57.613048 2014] [core:notice] [pid 27705] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Wed Jan 01 06:41:57.636383 2014] [core:notice] [pid 27705] AH00052: child pid 11047 exit signal Segmentation fault (11)
[Wed Jan 01 06:41:57.636453 2014] [core:notice] [pid 27705] AH00052: child pid 11048 exit signal Segmentation fault (11)
[Wed Jan 01 06:41:57.670088 2014] [mpm_prefork:notice] [pid 27705] AH00171: Graceful restart requested, doing restart
[Wed Jan 01 06:41:57.788093 2014] [auth_digest:notice] [pid 27705] AH01757: generating secret for digest authentication ...
[Wed Jan 01 06:41:58.072115 2014] [mpm_prefork:notice] [pid 27705] AH00163: Apache/2.4.4 (Unix) OpenSSL/1.0.1e PHP/5.4.19 configured -- resuming normal operations
[Wed Jan 01 06:41:58.072155 2014] [core:notice] [pid 27705] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Wed Jan 01 06:41:58.072185 2014] [core:notice] [pid 27705] AH00052: child pid 11046 exit signal Segmentation fault (11)
[Wed Jan 01 06:41:58.073615 2014] [core:notice] [pid 27705] AH00052: child pid 11049 exit signal Segmentation fault (11)
[Wed Jan 01 06:41:58.076334 2014] [core:notice] [pid 27705] AH00052: child pid 11050 exit signal Segmentation fault (11)
[Wed Jan 01 06:41:58.078804 2014] [core:notice] [pid 27705] AH00052: child pid 11051 exit signal Segmentation fault (11)
[Wed Jan 01 06:41:58.086791 2014] [core:notice] [pid 27705] AH00052: child pid 11064 exit signal Segmentation fault (11)
[Wed Jan 01 06:41:58.089276 2014] [core:notice] [pid 27705] AH00052: child pid 11066 exit signal Segmentation fault (11)
[Wed Jan 01 06:41:58.215423 2014] [mpm_prefork:notice] [pid 27705] AH00171: Graceful restart requested, doing restart
[Wed Jan 01 06:41:58.314932 2014] [auth_digest:notice] [pid 27705] AH01757: generating secret for digest authentication ...
[Wed Jan 01 06:41:59.053476 2014] [mpm_prefork:notice] [pid 27705] AH00163: Apache/2.4.4 (Unix) OpenSSL/1.0.1e PHP/5.4.19 configured -- resuming normal operations
[Wed Jan 01 06:41:59.053518 2014] [core:notice] [pid 27705] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Wed Jan 01 06:41:59.053653 2014] [core:notice] [pid 27705] AH00052: child pid 11065 exit signal Segmentation fault (11)
[Wed Jan 01 06:41:59.055276 2014] [core:notice] [pid 27705] AH00052: child pid 11067 exit signal Segmentation fault (11)
[Wed Jan 01 06:41:59.058051 2014] [core:notice] [pid 27705] AH00052: child pid 11068 exit signal Segmentation fault (11)
[Wed Jan 01 06:41:59.060458 2014] [core:notice] [pid 27705] AH00052: child pid 11069 exit signal Segmentation fault (11)
[Wed Jan 01 06:41:59.063513 2014] [core:notice] [pid 27705] AH00052: child pid 11093 exit signal Segmentation fault (11)
[Wed Jan 01 06:41:59.068588 2014] [core:notice] [pid 27705] AH00052: child pid 11095 exit signal Segmentation fault (11)
[Wed Jan 01 06:42:00.071305 2014] [core:notice] [pid 27705] AH00052: child pid 11094 exit signal Segmentation fault (11)
[Wed Jan 01 06:42:00.071402 2014] [core:notice] [pid 27705] AH00052: child pid 11096 exit signal Segmentation fault (11)
[Wed Jan 01 06:42:00.071649 2014] [core:notice] [pid 27705] AH00052: child pid 11097 exit signal Segmentation fault (11)
[Wed Jan 01 06:42:01.074137 2014] [core:notice] [pid 27705] AH00052: child pid 11192 exit signal Segmentation fault (11)
[Wed Jan 01 06:42:02.076406 2014] [core:notice] [pid 27705] AH00052: child pid 11193 exit signal Segmentation fault (11)
[Wed Jan 01 06:42:03.078976 2014] [core:notice] [pid 27705] AH00052: child pid 11194 exit signal Segmentation fault (11)
[Wed Jan 01 06:42:04.082269 2014] [core:notice] [pid 27705] AH00052: child pid 11195 exit signal Segmentation fault (11)
[Wed Jan 01 06:42:05.085299 2014] [core:notice] [pid 27705] AH00052: child pid 11216 exit signal Segmentation fault (11)
[Wed Jan 01 06:42:06.088397 2014] [core:notice] [pid 27705] AH00052: child pid 11236 exit signal Segmentation fault (11)
[Wed Jan 01 06:42:07.090995 2014] [core:notice] [pid 27705] AH00052: child pid 11237 exit signal Segmentation fault (11)
...........................................................
[Wed Jan 01 08:36:45.226272 2014] [core:notice] [pid 27705] AH00052: child pid 2355 exit signal Segmentation fault (11)
[Wed Jan 01 08:36:45.226303 2014] [core:notice] [pid 27705] AH00052: child pid 2358 exit signal Segmentation fault (11)
[Wed Jan 01 08:36:45.226386 2014] [mpm_prefork:notice] [pid 27705] AH00170: caught SIGWINCH, shutting down gracefully
[Wed Jan 01 08:36:47.216329 2014] [auth_digest:notice] [pid 2572] AH01757: generating secret for digest authentication ...
[Wed Jan 01 08:36:48.131619 2014] [mpm_prefork:notice] [pid 2572] AH00163: Apache/2.4.4 (Unix) OpenSSL/1.0.1e PHP/5.4.19 configured -- resuming normal operations
[Wed Jan 01 08:36:48.131731 2014] [core:notice] [pid 2572] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
KnightMB wrote:What you notice is common between all of them besides being Mageia 3 is that the "AH00171: Graceful restart requested, doing restart" which I am hoping will give a clue to finding out what is causing this.
[doktor5000@Mageia3 ~]$ urpmf /etc/logrotate.d | sort -u | grep apache
apache:/etc/logrotate.d/httpd
apache-mod_security:/etc/logrotate.d/mod_security
[Wed Jan 01 04:02:03.350884 2014] [mpm_prefork:notice] [pid 2070] AH00171: Graceful restart requested, doing restart
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message
[Wed Jan 01 03:36:39.417590 2014] [cgi:error] [pid 3355] [client 192.241.146.164:56874] script not found or unable to stat: /var/www/cgi-bin/php
[Wed Jan 01 03:36:39.530072 2014] [cgi:error] [pid 31950] [client 192.241.146.164:56898] script not found or unable to stat: /var/www/cgi-bin/php5
[Wed Jan 01 03:36:39.628475 2014] [cgi:error] [pid 4202] [client 192.241.146.164:56915] script not found or unable to stat: /var/www/cgi-bin/php-cgi
[Wed Jan 01 03:36:39.727677 2014] [cgi:error] [pid 27893] [client 192.241.146.164:56929] script not found or unable to stat: /var/www/cgi-bin/php.cgi
[Wed Jan 01 03:36:39.828519 2014] [cgi:error] [pid 25936] [client 192.241.146.164:56951] script not found or unable to stat: /var/www/cgi-bin/php4
[Wed Jan 01 06:27:19.759375 2014] [mpm_prefork:notice] [pid 24675] AH00171: Graceful restart requested, doing restart
[Wed Jan 01 01:34:46.914779 2014] [:error] [pid 11655] [client 213.186.127.10:55228] script '/var/www/html/index.php' not found or unable to stat
[Wed Jan 01 03:36:39.360683 2014] [cgi:error] [pid 21684] [client 192.241.146.164:47617] script not found or unable to stat: /var/www/cgi-bin/php
[Wed Jan 01 03:36:39.457281 2014] [cgi:error] [pid 22177] [client 192.241.146.164:47642] script not found or unable to stat: /var/www/cgi-bin/php5
[Wed Jan 01 03:36:39.558182 2014] [cgi:error] [pid 18639] [client 192.241.146.164:47657] script not found or unable to stat: /var/www/cgi-bin/php-cgi
[Wed Jan 01 03:36:39.654239 2014] [cgi:error] [pid 24494] [client 192.241.146.164:47673] script not found or unable to stat: /var/www/cgi-bin/php.cgi
[Wed Jan 01 03:36:39.752752 2014] [cgi:error] [pid 25675] [client 192.241.146.164:47690] script not found or unable to stat: /var/www/cgi-bin/php4
[Wed Jan 01 05:24:30.880643 2014] [:error] [pid 23429] [client 213.186.127.3:33044] script '/var/www/html/index.php' not found or unable to stat
[Wed Jan 01 06:41:55.954521 2014] [mpm_prefork:notice] [pid 27705] AH00171: Graceful restart requested, doing restart
[Wed Jan 01 06:41:56.561629 2014] [auth_digest:notice] [pid 27705] AH01757: generating secret for digest authentication ...
[Wed Jan 01 06:41:57.612990 2014] [mpm_prefork:notice] [pid 27705] AH00163: Apache/2.4.4 (Unix) OpenSSL/1.0.1e PHP/5.4.19 configured -- resuming normal operations
[Wed Jan 01 06:41:57.613048 2014] [core:notice] [pid 27705] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Wed Jan 01 06:41:57.636383 2014] [core:notice] [pid 27705] AH00052: child pid 11047 exit signal Segmentation fault (11)
[Wed Jan 01 06:41:57.636453 2014] [core:notice] [pid 27705] AH00052: child pid 11048 exit signal Segmentation fault (11)
[Wed Jan 01 06:41:57.670088 2014] [mpm_prefork:notice] [pid 27705] AH00171: Graceful restart requested, doing restart
doktor5000 wrote:KnightMB wrote:What you notice is common between all of them besides being Mageia 3 is that the "AH00171: Graceful restart requested, doing restart" which I am hoping will give a clue to finding out what is causing this.
What would be interesting is what are the last 50-100 lines before the graceful restart?
And what do you run on top of that apache, what does it serve?
Do you maybe have logrotate installed, which can also ask Apache to gracefully restart so that it can process the logs?
- Code: Select all
[doktor5000@Mageia3 ~]$ urpmf /etc/logrotate.d | sort -u | grep apache
apache:/etc/logrotate.d/httpd
apache-mod_security:/etc/logrotate.d/mod_security
Some related links:
http://forums.cpanel.net/f5/apache-perf ... ost1093141
http://www.gossamer-threads.com/lists/g ... ded#235829
http://www.serverschool.com/server-soft ... log-files/
Users browsing this forum: No registered users and 1 guest