[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#823349: marked as done (Intermittent `systemctl restart apache2` race conditions with Listen)



Your message dated Sat, 28 May 2016 16:35:05 +0000
with message-id <E1b6hCb-00062X-Iw@franck.debian.org>
and subject line Bug#822144: fixed in apache2 2.4.20-2
has caused the Debian Bug report #822144,
regarding Intermittent `systemctl restart apache2` race conditions with Listen
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
822144: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=822144
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: apache2
Version: 2.4.10-10+deb8u4

Hi,

Having apache2 installed on Debian jessie with systemd init, running mpm_event with the default Listen configuration:

$ ls -l /etc/apache2/mods-enabled/mpm*
lrwxrwxrwx 1 root root 32 Jul 18  2015 /etc/apache2/mods-enabled/mpm_event.conf -> ../mods-available/mpm_event.conf
lrwxrwxrwx 1 root root 32 Jul 18  2015 /etc/apache2/mods-enabled/mpm_event.load -> ../mods-available/mpm_event.load
$ sudo rgrep Listen /etc/apache2/
/etc/apache2/ports.conf:Listen 80 http

Running `systemctl restart apache2` will intermittently fail, leading to a broken apache while systemd thinks the service is fine:

May 03 20:49:35 web3 systemd[1]: Stopping LSB: Apache2 web server...
May 03 20:49:35 web3 apache2[28686]: Stopping web server: apache2.
May 03 20:49:35 web3 systemd[1]: Starting LSB: Apache2 web server...
May 03 20:49:35 web3 apache2[28707]: Starting web server: apache2(98)Address already in use: AH00072: make_sock: could not bind to address [::]:80
May 03 20:49:35 web3 apache2[28707]: (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
May 03 20:49:35 web3 apache2[28707]: no listening sockets available, shutting down
May 03 20:49:35 web3 apache2[28707]: AH00015: Unable to open logs
May 03 20:49:35 web3 apache2[28707]: Action 'start' failed.
May 03 20:49:35 web3 apache2[28707]: The Apache error log may have more information.
May 03 20:49:35 web3 apache2[28707]: .
May 03 20:49:35 web3 systemd[1]: Started LSB: Apache2 web server.

Error condition here appears to be that systemd is not waiting for the running apache2 process to close the listening socket and exit before starting a new one.

More details below. It seems like the main apache2 process receiving a SIGTERM is removing its pidfile before closing the listen socket and exiting?

-- Tero Marttila

Using the default sysv-compat systemd service:

$ sudo systemctl cat apache2.service
# /run/systemd/generator.late/apache2.service
# Automatically generated by systemd-sysv-generator

[Unit]
SourcePath=/etc/init.d/apache2
Description=LSB: Apache2 web server
Before=runlevel2.target runlevel3.target runlevel4.target runlevel5.target shutdown.target
After=local-fs.target remote-fs.target network-online.target systemd-journald-dev-log.socket nss-lookup.target
Wants=network-online.target
Conflicts=shutdown.target

[Service]
Type=forking
Restart=no
TimeoutSec=5min
IgnoreSIGPIPE=no
KillMode=process
GuessMainPID=no
RemainAfterExit=yes
SysVStartPriority=3
ExecStart=/etc/init.d/apache2 start
ExecStop=/etc/init.d/apache2 stop
ExecReload=/etc/init.d/apache2 reload

Attached are two `journalctl -u apache2` logs from different restart runs, having instrumented /etc/init.d/apache2 a bit with some `#!/bin/sh -x` and adding an `ss -ltnp | grep :80` right before the `$APACHE2CTL start`. Interesting parts from the bad run:

May 03 22:12:30 web3 systemd[1]: Stopping LSB: Apache2 web server...
May 03 22:12:30 web3 apache2[13321]: + cat /var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13321]: + grep -w 13208

The pidfile exists and has a pid of 13208.

May 03 22:12:30 web3 apache2[13321]: + env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin apache2ctl stop
May 03 22:12:30 web3 apache2[13321]: + apache_wait_stop 0

The apache2 process is sent a SIGTERM signal, and the apache2 init script starts to wait for it to stop.

May 03 22:12:30 web3 apache2[13321]: + pidofproc -p /var/run/apache2/apache2.pid /usr/sbin/apache2
May 03 22:12:30 web3 apache2[13321]: + [ -n /var/run/apache2/apache2.pid ]
May 03 22:12:30 web3 apache2[13321]: + [ -e /var/run/apache2/apache2.pid ]
May 03 22:12:30 web3 apache2[13321]: + [ -x /bin/pidof ]
May 03 22:12:30 web3 apache2[13321]: + [ ! specified ]
May 03 22:12:30 web3 apache2[13321]: + return 3

pidofproc is unable to read the pidfile, and returns immediately...

May 03 22:12:30 web3 systemd[1]: Starting LSB: Apache2 web server...

Systemd's ExecStop= has exited, and systemd runs the ExecStart=. I think the lines in the journal output are misordered here.

May 03 22:12:30 web3 apache2[13341]: + do_start
May 03 22:12:30 web3 apache2[13341]: + pidofproc -p /var/run/apache2/apache2.pid /usr/sbin/apache2
May 03 22:12:30 web3 apache2[13341]: + ss -lntp
May 03 22:12:30 web3 apache2[13341]: + grep :80
May 03 22:12:30 web3 apache2[13341]: LISTEN     0      128                      :::80                      :::*      users:(("apache2",pid=13226,fd=4),("apache2",pid=13208,fd=4))

WTF. The same 13208 proc in the pidfile is still running and listening on the :80 socket.

May 03 22:12:30 web3 apache2[13341]: + env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin apache2ctl start
May 03 22:12:30 web3 apache2[13341]: (98)Address already in use: AH00072: make_sock: could not bind to address [::]:80
May 03 22:12:30 web3 apache2[13341]: (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
May 03 22:12:30 web3 apache2[13341]: no listening sockets available, shutting down

...which causes problems.

May 03 22:12:30 web3 systemd[1]: Started LSB: Apache2 web server.
May 03 22:12:30 web3 apache2[13341]: + exit 0

...and this isn't great either. Systemd thinks the startup was successful and the service is running, even though it isn't (there are no processes in its cgroup).
-- Logs begin at Sat 2016-04-30 06:15:22 EEST, end at Tue 2016-05-03 22:40:40 EEST. --
May 03 22:11:35 web3 systemd[1]: Stopping LSB: Apache2 web server...
May 03 22:11:35 web3 apache2[13154]: + DESC=web server
May 03 22:11:35 web3 apache2[13154]: + NAME=apache2
May 03 22:11:35 web3 apache2[13154]: + DAEMON=/usr/sbin/apache2
May 03 22:11:35 web3 apache2[13154]: + SCRIPTNAME=apache2
May 03 22:11:35 web3 apache2[13154]: + SCRIPTNAME=apache2
May 03 22:11:35 web3 apache2[13154]: + [ -n  ]
May 03 22:11:35 web3 apache2[13154]: + [ apache2 != apache2 ]
May 03 22:11:35 web3 apache2[13154]: + DIR_SUFFIX=
May 03 22:11:35 web3 apache2[13154]: + APACHE_CONFDIR=/etc/apache2
May 03 22:11:35 web3 apache2[13154]: + [ -z  ]
May 03 22:11:35 web3 apache2[13154]: + APACHE_ENVVARS=/etc/apache2/envvars
May 03 22:11:35 web3 apache2[13154]: + export APACHE_CONFDIR APACHE_ENVVARS
May 03 22:11:35 web3 apache2[13154]: + ENV=env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
May 03 22:11:35 web3 apache2[13154]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:11:35 web3 apache2[13154]: + [ /etc/apache2/envvars != /etc/apache2/envvars ]
May 03 22:11:35 web3 apache2[13154]: + HTCACHECLEAN_RUN=auto
May 03 22:11:35 web3 apache2[13154]: + HTCACHECLEAN_MODE=daemon
May 03 22:11:35 web3 apache2[13154]: + HTCACHECLEAN_SIZE=300M
May 03 22:11:35 web3 apache2[13154]: + HTCACHECLEAN_DAEMON_INTERVAL=120
May 03 22:11:35 web3 apache2[13154]: + HTCACHECLEAN_PATH=/var/cache/apache2/mod_cache_disk
May 03 22:11:35 web3 apache2[13154]: + HTCACHECLEAN_OPTIONS=
May 03 22:11:35 web3 apache2[13154]: + [ -f /etc/default/apache2 ]
May 03 22:11:35 web3 apache2[13154]: + . /etc/default/apache2
May 03 22:11:35 web3 apache2[13154]: + HTCACHECLEAN_RUN=auto
May 03 22:11:35 web3 apache2[13154]: + HTCACHECLEAN_MODE=daemon
May 03 22:11:35 web3 apache2[13154]: + HTCACHECLEAN_SIZE=300M
May 03 22:11:35 web3 apache2[13154]: + HTCACHECLEAN_DAEMON_INTERVAL=120
May 03 22:11:35 web3 apache2[13154]: + HTCACHECLEAN_PATH=/var/cache/apache2/mod_cache_disk
May 03 22:11:35 web3 apache2[13154]: + HTCACHECLEAN_OPTIONS=-n
May 03 22:11:35 web3 apache2[13154]: + . /etc/apache2/envvars
May 03 22:11:35 web3 apache2[13154]: + unset HOME
May 03 22:11:35 web3 apache2[13154]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:11:35 web3 apache2[13154]: + SUFFIX=
May 03 22:11:35 web3 apache2[13154]: + export APACHE_RUN_USER=www-data
May 03 22:11:35 web3 apache2[13154]: + export APACHE_RUN_GROUP=www-data
May 03 22:11:35 web3 apache2[13154]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:11:35 web3 apache2[13154]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:11:35 web3 apache2[13154]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:11:35 web3 apache2[13154]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:11:35 web3 apache2[13154]: + export LANG=C
May 03 22:11:35 web3 apache2[13154]: + export LANG
May 03 22:11:35 web3 apache2[13154]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:11:35 web3 apache2[13154]: + echo /var/run/apache2/apache2.pid
May 03 22:11:35 web3 apache2[13154]: + PIDFILE=/var/run/apache2/apache2.pid
May 03 22:11:35 web3 apache2[13154]: + VERBOSE=no
May 03 22:11:35 web3 apache2[13154]: + [ -f /etc/default/rcS ]
May 03 22:11:35 web3 apache2[13154]: + . /etc/default/rcS
May 03 22:11:35 web3 apache2[13154]: + . /lib/lsb/init-functions
May 03 22:11:35 web3 apache2[13154]: + run-parts --lsbsysinit --list /lib/lsb/init-functions.d
May 03 22:11:35 web3 apache2[13154]: + [ -r /lib/lsb/init-functions.d/20-left-info-blocks ]
May 03 22:11:35 web3 apache2[13154]: + . /lib/lsb/init-functions.d/20-left-info-blocks
May 03 22:11:35 web3 apache2[13154]: + [ -r /lib/lsb/init-functions.d/40-systemd ]
May 03 22:11:35 web3 apache2[13154]: + . /lib/lsb/init-functions.d/40-systemd
May 03 22:11:35 web3 apache2[13154]: + _use_systemctl=0
May 03 22:11:35 web3 apache2[13154]: + [ -d /run/systemd/system ]
May 03 22:11:35 web3 apache2[13154]: + [ -n  ]
May 03 22:11:35 web3 apache2[13154]: + [ 1 -ne 1 ]
May 03 22:11:35 web3 apache2[13154]: + export _SYSTEMCTL_SKIP_REDIRECT=true
May 03 22:11:35 web3 apache2[13154]: + [ 0 = 1 ]
May 03 22:11:35 web3 apache2[13154]: + FANCYTTY=
May 03 22:11:35 web3 apache2[13154]: + [ -e /etc/lsb-base-logging.sh ]
May 03 22:11:35 web3 apache2[13154]: + true
May 03 22:11:35 web3 apache2[13154]: + APACHE2CTL=env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin apache2ctl
May 03 22:11:35 web3 apache2[13154]: + HTCACHECLEAN=env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin htcacheclean
May 03 22:11:35 web3 apache2[13154]: + . /etc/apache2/envvars
May 03 22:11:35 web3 apache2[13154]: + unset HOME
May 03 22:11:35 web3 apache2[13154]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:11:35 web3 apache2[13154]: + SUFFIX=
May 03 22:11:35 web3 apache2[13154]: + export APACHE_RUN_USER=www-data
May 03 22:11:35 web3 apache2[13154]: + export APACHE_RUN_GROUP=www-data
May 03 22:11:35 web3 apache2[13154]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:11:35 web3 apache2[13154]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:11:35 web3 apache2[13154]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:11:35 web3 apache2[13154]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:11:35 web3 apache2[13154]: + export LANG=C
May 03 22:11:35 web3 apache2[13154]: + export LANG
May 03 22:11:35 web3 apache2[13154]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:11:35 web3 apache2[13154]: + echo /var/run/apache2/apache2.pid
May 03 22:11:35 web3 apache2[13154]: + PIDFILE=/var/run/apache2/apache2.pid
May 03 22:11:35 web3 apache2[13154]: + APACHE2_INIT_MESSAGE=
May 03 22:11:35 web3 apache2[13154]: + CONFTEST_OUTFILE=
May 03 22:11:35 web3 apache2[13154]: + trap cleanup 0
May 03 22:11:35 web3 apache2[13154]: + [ -x /usr/sbin/apache2 ]
May 03 22:11:35 web3 apache2[13154]: + [ ! -x /usr/sbin/apache2 ]
May 03 22:11:35 web3 apache2[13154]: + [ -z /var/run/apache2/apache2.pid ]
May 03 22:11:35 web3 apache2[13154]: + check_htcacheclean
May 03 22:11:35 web3 apache2[13154]: + [ daemon = daemon ]
May 03 22:11:35 web3 apache2[13154]: + [ auto = yes ]
May 03 22:11:35 web3 apache2[13154]: + . /etc/apache2/envvars
May 03 22:11:35 web3 apache2[13154]: + unset HOME
May 03 22:11:35 web3 apache2[13154]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:11:35 web3 apache2[13154]: + SUFFIX=
May 03 22:11:35 web3 apache2[13154]: + export APACHE_RUN_USER=www-data
May 03 22:11:35 web3 apache2[13154]: + export APACHE_RUN_GROUP=www-data
May 03 22:11:35 web3 apache2[13154]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:11:35 web3 apache2[13154]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:11:35 web3 apache2[13154]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:11:35 web3 apache2[13154]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:11:35 web3 apache2[13154]: + export LANG=C
May 03 22:11:35 web3 apache2[13154]: + export LANG
May 03 22:11:35 web3 apache2[13154]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:11:35 web3 apache2[13154]: + echo
May 03 22:11:35 web3 apache2[13154]: + MODSDIR=
May 03 22:11:35 web3 apache2[13154]: + [ auto = auto -a -e /etc/apache2/mods-enabled/cache_disk.load ]
May 03 22:11:35 web3 apache2[13154]: + return 1
May 03 22:11:35 web3 apache2[13154]: + log_daemon_msg Stopping web server apache2
May 03 22:11:35 web3 apache2[13154]: + [ -z Stopping web server ]
May 03 22:11:35 web3 apache2[13154]: + log_daemon_msg_pre Stopping web server apache2
May 03 22:11:35 web3 apache2[13154]: + log_use_fancy_output
May 03 22:11:35 web3 apache2[13154]: + TPUT=/usr/bin/tput
May 03 22:11:35 web3 apache2[13154]: + EXPR=/usr/bin/expr
May 03 22:11:35 web3 apache2[13154]: + [ -t 1 ]
May 03 22:11:35 web3 apache2[13154]: + FANCYTTY=0
May 03 22:11:35 web3 apache2[13154]: + false
May 03 22:11:35 web3 apache2[13154]: + [ -z apache2 ]
May 03 22:11:35 web3 apache2[13154]: + echo -n Stopping web server: apache2
May 03 22:11:35 web3 apache2[13154]: Stopping web server: apache2+ log_daemon_msg_post Stopping web server apache2
May 03 22:11:35 web3 apache2[13154]: + :
May 03 22:11:35 web3 apache2[13154]: + do_stop stop
May 03 22:11:35 web3 apache2[13154]: + local STOP=stop
May 03 22:11:35 web3 apache2[13154]: + local AP_RET=0
May 03 22:11:35 web3 apache2[13154]: + pidof /usr/sbin/apache2
May 03 22:11:35 web3 apache2[13154]: + [ -e /var/run/apache2/apache2.pid ]
May 03 22:11:35 web3 apache2[13154]: + pidof /usr/sbin/apache2
May 03 22:11:35 web3 apache2[13154]: + tr   \n
May 03 22:11:35 web3 apache2[13154]: + cat /var/run/apache2/apache2.pid
May 03 22:11:35 web3 apache2[13154]: + grep -w 13059
May 03 22:11:35 web3 apache2[13154]: + AP_RET=2
May 03 22:11:35 web3 apache2[13154]: + [ 2 = 0 ]
May 03 22:11:35 web3 apache2[13154]: + [ 2 = 2 ]
May 03 22:11:35 web3 apache2[13154]: + apache_conftest
May 03 22:11:35 web3 apache2[13154]: + [ -z  ]
May 03 22:11:35 web3 apache2[13154]: + mktemp
May 03 22:11:35 web3 apache2[13154]: + CONFTEST_OUTFILE=/tmp/tmp.RBMay94whc
May 03 22:11:35 web3 apache2[13154]: + env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin apache2ctl configtest
May 03 22:11:35 web3 apache2[13154]: + rm -f /tmp/tmp.RBMay94whc
May 03 22:11:35 web3 apache2[13154]: + CONFTEST_OUTFILE=
May 03 22:11:35 web3 apache2[13154]: + return 0
May 03 22:11:35 web3 apache2[13154]: + env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin apache2ctl stop
May 03 22:11:35 web3 apache2[13154]: + apache_wait_stop 0
May 03 22:11:35 web3 apache2[13154]: + local STATUS=0
May 03 22:11:35 web3 apache2[13154]: + [ 0 != 0 ]
May 03 22:11:35 web3 apache2[13154]: + pidofproc -p /var/run/apache2/apache2.pid /usr/sbin/apache2
May 03 22:11:35 web3 apache2[13154]: + local pidfile base status specified pid OPTIND
May 03 22:11:35 web3 apache2[13154]: + pidfile=
May 03 22:11:35 web3 apache2[13154]: + specified=
May 03 22:11:35 web3 apache2[13154]: + OPTIND=1
May 03 22:11:35 web3 apache2[13154]: + getopts p: opt
May 03 22:11:35 web3 apache2[13154]: + pidfile=/var/run/apache2/apache2.pid
May 03 22:11:35 web3 apache2[13154]: + specified=specified
May 03 22:11:35 web3 apache2[13154]: + getopts p: opt
May 03 22:11:35 web3 apache2[13154]: + shift 2
May 03 22:11:35 web3 apache2[13154]: + [ 1 -ne 1 ]
May 03 22:11:35 web3 apache2[13154]: + base=apache2
May 03 22:11:35 web3 apache2[13154]: + [ ! specified ]
May 03 22:11:35 web3 apache2[13154]: + [ -n /var/run/apache2/apache2.pid ]
May 03 22:11:35 web3 apache2[13154]: + [ -e /var/run/apache2/apache2.pid ]
May 03 22:11:35 web3 apache2[13154]: + [ -r /var/run/apache2/apache2.pid ]
May 03 22:11:35 web3 apache2[13154]: + read pid
May 03 22:11:35 web3 apache2[13154]: + [ -n 13059 ]
May 03 22:11:35 web3 apache2[13154]: + kill -0 13059
May 03 22:11:35 web3 apache2[13154]: +
May 03 22:11:35 web3 apache2[13154]: + echo 13059
May 03 22:11:35 web3 apache2[13154]: + return 0
May 03 22:11:35 web3 apache2[13154]: + PIDTMP=13059
May 03 22:11:35 web3 apache2[13154]: + [ -n 13059 ]
May 03 22:11:35 web3 apache2[13154]: + kill -0 13059
May 03 22:11:35 web3 apache2[13154]: + local i=0
May 03 22:11:35 web3 apache2[13154]: + kill -0 13059
May 03 22:11:35 web3 apache2[13154]: + [ 0 = 60 ]
May 03 22:11:35 web3 apache2[13154]: + [ no != no ]
May 03 22:11:35 web3 apache2[13154]: + sleep 1
May 03 22:11:36 web3 apache2[13154]: + i=1
May 03 22:11:36 web3 apache2[13154]: + kill -0 13059
May 03 22:11:36 web3 apache2[13154]: + return 0
May 03 22:11:36 web3 apache2[13154]: + ss -lntp
May 03 22:11:36 web3 apache2[13154]: + grep :80
May 03 22:11:36 web3 apache2[13154]: + return 1
May 03 22:11:36 web3 apache2[13154]: + RET_STATUS=1
May 03 22:11:36 web3 apache2[13154]: + log_success_msg
May 03 22:11:36 web3 apache2[13154]: + [ -n  ]
May 03 22:11:36 web3 apache2[13154]: + log_end_msg 0
May 03 22:11:36 web3 apache2[13154]: + [ -z 0 ]
May 03 22:11:36 web3 apache2[13154]: + local retval
May 03 22:11:36 web3 apache2[13154]: + retval=0
May 03 22:11:36 web3 apache2[13154]: + log_end_msg_pre 0
May 03 22:11:36 web3 apache2[13154]: + log_use_fancy_output
May 03 22:11:36 web3 apache2[13154]: + TPUT=/usr/bin/tput
May 03 22:11:36 web3 apache2[13154]: + EXPR=/usr/bin/expr
May 03 22:11:36 web3 apache2[13154]: + [ -t 1 ]
May 03 22:11:36 web3 apache2[13154]: + FANCYTTY=0
May 03 22:11:36 web3 apache2[13154]: + false
May 03 22:11:36 web3 apache2[13154]: + log_use_fancy_output
May 03 22:11:36 web3 apache2[13154]: + TPUT=/usr/bin/tput
May 03 22:11:36 web3 apache2[13154]: + EXPR=/usr/bin/expr
May 03 22:11:36 web3 apache2[13154]: + [ -t 1 ]
May 03 22:11:36 web3 apache2[13154]: + FANCYTTY=0
May 03 22:11:36 web3 apache2[13154]: + false
May 03 22:11:36 web3 apache2[13154]: + RED=
May 03 22:11:36 web3 apache2[13154]: + YELLOW=
May 03 22:11:36 web3 apache2[13154]: + NORMAL=
May 03 22:11:36 web3 apache2[13154]: + [ 0 -eq 0 ]
May 03 22:11:36 web3 apache2[13154]: + echo .
May 03 22:11:36 web3 apache2[13154]: .
May 03 22:11:36 web3 apache2[13154]: + log_end_msg_post 0
May 03 22:11:36 web3 apache2[13154]: + :
May 03 22:11:36 web3 apache2[13154]: + return 0
May 03 22:11:36 web3 apache2[13154]: + [ no != no ]
May 03 22:11:36 web3 apache2[13154]: + print_error_msg
May 03 22:11:36 web3 apache2[13154]: + [ -z  ]
May 03 22:11:36 web3 apache2[13154]: + [ -n  ]
May 03 22:11:36 web3 apache2[13154]: + check_htcacheclean
May 03 22:11:36 web3 apache2[13154]: + [ daemon = daemon ]
May 03 22:11:36 web3 apache2[13154]: + [ auto = yes ]
May 03 22:11:36 web3 apache2[13154]: + . /etc/apache2/envvars
May 03 22:11:36 web3 apache2[13154]: + unset HOME
May 03 22:11:36 web3 apache2[13154]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:11:36 web3 apache2[13154]: + SUFFIX=
May 03 22:11:36 web3 apache2[13154]: + export APACHE_RUN_USER=www-data
May 03 22:11:36 web3 apache2[13154]: + export APACHE_RUN_GROUP=www-data
May 03 22:11:36 web3 apache2[13154]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:11:36 web3 apache2[13154]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:11:36 web3 apache2[13154]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:11:36 web3 apache2[13154]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:11:36 web3 apache2[13154]: + export LANG=C
May 03 22:11:36 web3 apache2[13154]: + export LANG
May 03 22:11:36 web3 apache2[13154]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:11:36 web3 apache2[13154]: + echo
May 03 22:11:36 web3 systemd[1]: Starting LSB: Apache2 web server...
May 03 22:11:36 web3 apache2[13154]: + MODSDIR=
May 03 22:11:36 web3 apache2[13154]: + [ auto = auto -a -e /etc/apache2/mods-enabled/cache_disk.load ]
May 03 22:11:36 web3 apache2[13154]: + return 1
May 03 22:11:36 web3 apache2[13154]: + exit 0
May 03 22:11:36 web3 apache2[13154]: + cleanup
May 03 22:11:36 web3 apache2[13154]: + [ -n  ]
May 03 22:11:36 web3 apache2[13180]: + DESC=web server
May 03 22:11:36 web3 apache2[13180]: + NAME=apache2
May 03 22:11:36 web3 apache2[13180]: + DAEMON=/usr/sbin/apache2
May 03 22:11:36 web3 apache2[13180]: + SCRIPTNAME=apache2
May 03 22:11:36 web3 apache2[13180]: + SCRIPTNAME=apache2
May 03 22:11:36 web3 apache2[13180]: + [ -n  ]
May 03 22:11:36 web3 apache2[13180]: + [ apache2 != apache2 ]
May 03 22:11:36 web3 apache2[13180]: + DIR_SUFFIX=
May 03 22:11:36 web3 apache2[13180]: + APACHE_CONFDIR=/etc/apache2
May 03 22:11:36 web3 apache2[13180]: + [ -z  ]
May 03 22:11:36 web3 apache2[13180]: + APACHE_ENVVARS=/etc/apache2/envvars
May 03 22:11:36 web3 apache2[13180]: + export APACHE_CONFDIR APACHE_ENVVARS
May 03 22:11:36 web3 apache2[13180]: + ENV=env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
May 03 22:11:36 web3 apache2[13180]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:11:36 web3 apache2[13180]: + [ /etc/apache2/envvars != /etc/apache2/envvars ]
May 03 22:11:36 web3 apache2[13180]: + HTCACHECLEAN_RUN=auto
May 03 22:11:36 web3 apache2[13180]: + HTCACHECLEAN_MODE=daemon
May 03 22:11:36 web3 apache2[13180]: + HTCACHECLEAN_SIZE=300M
May 03 22:11:36 web3 apache2[13180]: + HTCACHECLEAN_DAEMON_INTERVAL=120
May 03 22:11:36 web3 apache2[13180]: + HTCACHECLEAN_PATH=/var/cache/apache2/mod_cache_disk
May 03 22:11:36 web3 apache2[13180]: + HTCACHECLEAN_OPTIONS=
May 03 22:11:36 web3 apache2[13180]: + [ -f /etc/default/apache2 ]
May 03 22:11:36 web3 apache2[13180]: + . /etc/default/apache2
May 03 22:11:36 web3 apache2[13180]: + HTCACHECLEAN_RUN=auto
May 03 22:11:36 web3 apache2[13180]: + HTCACHECLEAN_MODE=daemon
May 03 22:11:36 web3 apache2[13180]: + HTCACHECLEAN_SIZE=300M
May 03 22:11:36 web3 apache2[13180]: + HTCACHECLEAN_DAEMON_INTERVAL=120
May 03 22:11:36 web3 apache2[13180]: + HTCACHECLEAN_PATH=/var/cache/apache2/mod_cache_disk
May 03 22:11:36 web3 apache2[13180]: + HTCACHECLEAN_OPTIONS=-n
May 03 22:11:36 web3 apache2[13180]: + . /etc/apache2/envvars
May 03 22:11:36 web3 apache2[13180]: + unset HOME
May 03 22:11:36 web3 apache2[13180]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:11:36 web3 apache2[13180]: + SUFFIX=
May 03 22:11:36 web3 apache2[13180]: + export APACHE_RUN_USER=www-data
May 03 22:11:36 web3 apache2[13180]: + export APACHE_RUN_GROUP=www-data
May 03 22:11:36 web3 apache2[13180]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:11:36 web3 apache2[13180]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:11:36 web3 apache2[13180]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:11:36 web3 apache2[13180]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:11:36 web3 apache2[13180]: + export LANG=C
May 03 22:11:36 web3 apache2[13180]: + export LANG
May 03 22:11:36 web3 apache2[13180]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:11:36 web3 apache2[13180]: + echo /var/run/apache2/apache2.pid
May 03 22:11:36 web3 apache2[13180]: + PIDFILE=/var/run/apache2/apache2.pid
May 03 22:11:36 web3 apache2[13180]: + VERBOSE=no
May 03 22:11:36 web3 apache2[13180]: + [ -f /etc/default/rcS ]
May 03 22:11:36 web3 apache2[13180]: + . /etc/default/rcS
May 03 22:11:36 web3 apache2[13180]: + . /lib/lsb/init-functions
May 03 22:11:36 web3 apache2[13180]: + run-parts --lsbsysinit --list /lib/lsb/init-functions.d
May 03 22:11:36 web3 apache2[13180]: + [ -r /lib/lsb/init-functions.d/20-left-info-blocks ]
May 03 22:11:36 web3 apache2[13180]: + . /lib/lsb/init-functions.d/20-left-info-blocks
May 03 22:11:36 web3 apache2[13180]: + [ -r /lib/lsb/init-functions.d/40-systemd ]
May 03 22:11:36 web3 apache2[13180]: + . /lib/lsb/init-functions.d/40-systemd
May 03 22:11:36 web3 apache2[13180]: + _use_systemctl=0
May 03 22:11:36 web3 apache2[13180]: + [ -d /run/systemd/system ]
May 03 22:11:36 web3 apache2[13180]: + [ -n  ]
May 03 22:11:36 web3 apache2[13180]: + [ 1 -ne 1 ]
May 03 22:11:36 web3 apache2[13180]: + export _SYSTEMCTL_SKIP_REDIRECT=true
May 03 22:11:36 web3 apache2[13180]: + [ 0 = 1 ]
May 03 22:11:36 web3 apache2[13180]: + FANCYTTY=
May 03 22:11:36 web3 apache2[13180]: + [ -e /etc/lsb-base-logging.sh ]
May 03 22:11:36 web3 apache2[13180]: + true
May 03 22:11:36 web3 apache2[13180]: + APACHE2CTL=env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin apache2ctl
May 03 22:11:36 web3 apache2[13180]: + HTCACHECLEAN=env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin htcacheclean
May 03 22:11:36 web3 apache2[13180]: + . /etc/apache2/envvars
May 03 22:11:36 web3 apache2[13180]: + unset HOME
May 03 22:11:36 web3 apache2[13180]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:11:36 web3 apache2[13180]: + SUFFIX=
May 03 22:11:36 web3 apache2[13180]: + export APACHE_RUN_USER=www-data
May 03 22:11:36 web3 apache2[13180]: + export APACHE_RUN_GROUP=www-data
May 03 22:11:36 web3 apache2[13180]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:11:36 web3 apache2[13180]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:11:36 web3 apache2[13180]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:11:36 web3 apache2[13180]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:11:36 web3 apache2[13180]: + export LANG=C
May 03 22:11:36 web3 apache2[13180]: + export LANG
May 03 22:11:36 web3 apache2[13180]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:11:36 web3 apache2[13180]: + echo /var/run/apache2/apache2.pid
May 03 22:11:36 web3 apache2[13180]: + PIDFILE=/var/run/apache2/apache2.pid
May 03 22:11:36 web3 apache2[13180]: + APACHE2_INIT_MESSAGE=
May 03 22:11:36 web3 apache2[13180]: + CONFTEST_OUTFILE=
May 03 22:11:36 web3 apache2[13180]: + trap cleanup 0
May 03 22:11:36 web3 apache2[13180]: + [ -x /usr/sbin/apache2 ]
May 03 22:11:36 web3 apache2[13180]: + [ ! -x /usr/sbin/apache2 ]
May 03 22:11:36 web3 apache2[13180]: + [ -z /var/run/apache2/apache2.pid ]
May 03 22:11:36 web3 apache2[13180]: + check_htcacheclean
May 03 22:11:36 web3 apache2[13180]: + [ daemon = daemon ]
May 03 22:11:36 web3 apache2[13180]: + [ auto = yes ]
May 03 22:11:36 web3 apache2[13180]: + . /etc/apache2/envvars
May 03 22:11:36 web3 apache2[13180]: + unset HOME
May 03 22:11:36 web3 apache2[13180]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:11:36 web3 apache2[13180]: + SUFFIX=
May 03 22:11:36 web3 apache2[13180]: + export APACHE_RUN_USER=www-data
May 03 22:11:36 web3 apache2[13180]: + export APACHE_RUN_GROUP=www-data
May 03 22:11:36 web3 apache2[13180]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:11:36 web3 apache2[13180]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:11:36 web3 apache2[13180]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:11:36 web3 apache2[13180]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:11:36 web3 apache2[13180]: + export LANG=C
May 03 22:11:36 web3 apache2[13180]: + export LANG
May 03 22:11:36 web3 apache2[13180]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:11:36 web3 apache2[13180]: + echo
May 03 22:11:36 web3 apache2[13180]: + MODSDIR=
May 03 22:11:36 web3 apache2[13180]: + [ auto = auto -a -e /etc/apache2/mods-enabled/cache_disk.load ]
May 03 22:11:36 web3 apache2[13180]: + return 1
May 03 22:11:36 web3 apache2[13180]: + log_daemon_msg Starting web server apache2
May 03 22:11:36 web3 apache2[13180]: + [ -z Starting web server ]
May 03 22:11:36 web3 apache2[13180]: + log_daemon_msg_pre Starting web server apache2
May 03 22:11:36 web3 apache2[13180]: + log_use_fancy_output
May 03 22:11:36 web3 apache2[13180]: + TPUT=/usr/bin/tput
May 03 22:11:36 web3 apache2[13180]: + EXPR=/usr/bin/expr
May 03 22:11:36 web3 apache2[13180]: + [ -t 1 ]
May 03 22:11:36 web3 apache2[13180]: + FANCYTTY=0
May 03 22:11:36 web3 apache2[13180]: + false
May 03 22:11:36 web3 apache2[13180]: + [ -z apache2 ]
May 03 22:11:36 web3 apache2[13180]: + echo -n Starting web server: apache2
May 03 22:11:36 web3 apache2[13180]: Starting web server: apache2+ log_daemon_msg_post Starting web server apache2
May 03 22:11:36 web3 apache2[13180]: + :
May 03 22:11:36 web3 apache2[13180]: + do_start
May 03 22:11:36 web3 apache2[13180]: + pidofproc -p /var/run/apache2/apache2.pid /usr/sbin/apache2
May 03 22:11:36 web3 apache2[13180]: + apache_conftest
May 03 22:11:36 web3 apache2[13180]: + [ -z  ]
May 03 22:11:36 web3 apache2[13180]: + mktemp
May 03 22:11:36 web3 apache2[13180]: + CONFTEST_OUTFILE=/tmp/tmp.4VVBIffWBa
May 03 22:11:36 web3 apache2[13180]: + env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin apache2ctl configtest
May 03 22:11:37 web3 apache2[13180]: + rm -f /tmp/tmp.4VVBIffWBa
May 03 22:11:37 web3 apache2[13180]: + CONFTEST_OUTFILE=
May 03 22:11:37 web3 apache2[13180]: + return 0
May 03 22:11:37 web3 apache2[13180]: + env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin apache2ctl start
May 03 22:11:38 web3 apache2[13180]: + apache_wait_start 0
May 03 22:11:38 web3 apache2[13180]: + local STATUS=0
May 03 22:11:38 web3 apache2[13180]: + local i=0
May 03 22:11:38 web3 apache2[13180]: + [ 0 != 0 ]
May 03 22:11:38 web3 apache2[13180]: + :
May 03 22:11:38 web3 apache2[13180]: + pidofproc -p /var/run/apache2/apache2.pid /usr/sbin/apache2
May 03 22:11:38 web3 apache2[13180]: + local pidfile base status specified pid OPTIND
May 03 22:11:38 web3 apache2[13180]: + pidfile=
May 03 22:11:38 web3 apache2[13180]: + specified=
May 03 22:11:38 web3 apache2[13180]: + OPTIND=1
May 03 22:11:38 web3 apache2[13180]: + getopts p: opt
May 03 22:11:38 web3 apache2[13180]: + pidfile=/var/run/apache2/apache2.pid
May 03 22:11:38 web3 apache2[13180]: + specified=specified
May 03 22:11:38 web3 apache2[13180]: + getopts p: opt
May 03 22:11:38 web3 apache2[13180]: + shift 2
May 03 22:11:38 web3 apache2[13180]: + [ 1 -ne 1 ]
May 03 22:11:38 web3 apache2[13180]: + base=apache2
May 03 22:11:38 web3 apache2[13180]: + [ ! specified ]
May 03 22:11:38 web3 apache2[13180]: + [ -n /var/run/apache2/apache2.pid ]
May 03 22:11:38 web3 apache2[13180]: + [ -e /var/run/apache2/apache2.pid ]
May 03 22:11:38 web3 apache2[13180]: + [ -x /bin/pidof ]
May 03 22:11:38 web3 apache2[13180]: + [ ! specified ]
May 03 22:11:38 web3 apache2[13180]: + return 3
May 03 22:11:38 web3 apache2[13180]: + PIDTMP=
May 03 22:11:38 web3 apache2[13180]: + [ -n  ]
May 03 22:11:38 web3 apache2[13180]: + [ 0 = 20 ]
May 03 22:11:38 web3 apache2[13180]: + [ no != no ]
May 03 22:11:38 web3 apache2[13180]: + sleep 1
May 03 22:11:39 web3 apache2[13180]: + i=1
May 03 22:11:39 web3 apache2[13180]: + :
May 03 22:11:39 web3 apache2[13180]: + pidofproc -p /var/run/apache2/apache2.pid /usr/sbin/apache2
May 03 22:11:39 web3 apache2[13180]: + local pidfile base status specified pid OPTIND
May 03 22:11:39 web3 apache2[13180]: + pidfile=
May 03 22:11:39 web3 apache2[13180]: + specified=
May 03 22:11:39 web3 apache2[13180]: + OPTIND=1
May 03 22:11:39 web3 apache2[13180]: + getopts p: opt
May 03 22:11:39 web3 apache2[13180]: + pidfile=/var/run/apache2/apache2.pid
May 03 22:11:39 web3 apache2[13180]: + specified=specified
May 03 22:11:39 web3 apache2[13180]: + getopts p: opt
May 03 22:11:39 web3 apache2[13180]: + shift 2
May 03 22:11:39 web3 apache2[13180]: + [ 1 -ne 1 ]
May 03 22:11:39 web3 apache2[13180]: + base=apache2
May 03 22:11:39 web3 apache2[13180]: + [ ! specified ]
May 03 22:11:39 web3 apache2[13180]: + [ -n /var/run/apache2/apache2.pid ]
May 03 22:11:39 web3 apache2[13180]: + [ -e /var/run/apache2/apache2.pid ]
May 03 22:11:39 web3 apache2[13180]: + [ -r /var/run/apache2/apache2.pid ]
May 03 22:11:39 web3 apache2[13180]: + read pid
May 03 22:11:39 web3 apache2[13180]: + [ -n 13208 ]
May 03 22:11:39 web3 apache2[13180]: + kill -0 13208
May 03 22:11:39 web3 apache2[13180]: +
May 03 22:11:39 web3 apache2[13180]: + echo 13208
May 03 22:11:39 web3 apache2[13180]: + return 0
May 03 22:11:39 web3 systemd[1]: Started LSB: Apache2 web server.
May 03 22:11:39 web3 apache2[13180]: + PIDTMP=13208
May 03 22:11:39 web3 apache2[13180]: + [ -n 13208 ]
May 03 22:11:39 web3 apache2[13180]: + kill -0 13208
May 03 22:11:39 web3 apache2[13180]: + return 0
May 03 22:11:39 web3 apache2[13180]: + return 0
May 03 22:11:39 web3 apache2[13180]: + RET_STATUS=0
May 03 22:11:39 web3 apache2[13180]: + log_success_msg
May 03 22:11:39 web3 apache2[13180]: + [ -n  ]
May 03 22:11:39 web3 apache2[13180]: + log_end_msg 0
May 03 22:11:39 web3 apache2[13180]: + [ -z 0 ]
May 03 22:11:39 web3 apache2[13180]: + local retval
May 03 22:11:39 web3 apache2[13180]: + retval=0
May 03 22:11:39 web3 apache2[13180]: + log_end_msg_pre 0
May 03 22:11:39 web3 apache2[13180]: + log_use_fancy_output
May 03 22:11:39 web3 apache2[13180]: + TPUT=/usr/bin/tput
May 03 22:11:39 web3 apache2[13180]: + EXPR=/usr/bin/expr
May 03 22:11:39 web3 apache2[13180]: + [ -t 1 ]
May 03 22:11:39 web3 apache2[13180]: + FANCYTTY=0
May 03 22:11:39 web3 apache2[13180]: + false
May 03 22:11:39 web3 apache2[13180]: + log_use_fancy_output
May 03 22:11:39 web3 apache2[13180]: + TPUT=/usr/bin/tput
May 03 22:11:39 web3 apache2[13180]: + EXPR=/usr/bin/expr
May 03 22:11:39 web3 apache2[13180]: + [ -t 1 ]
May 03 22:11:39 web3 apache2[13180]: + FANCYTTY=0
May 03 22:11:39 web3 apache2[13180]: + false
May 03 22:11:39 web3 apache2[13180]: + RED=
May 03 22:11:39 web3 apache2[13180]: + YELLOW=
May 03 22:11:39 web3 apache2[13180]: + NORMAL=
May 03 22:11:39 web3 apache2[13180]: + [ 0 -eq 0 ]
May 03 22:11:39 web3 apache2[13180]: + echo .
May 03 22:11:39 web3 apache2[13180]: .
May 03 22:11:39 web3 apache2[13180]: + log_end_msg_post 0
May 03 22:11:39 web3 apache2[13180]: + :
May 03 22:11:39 web3 apache2[13180]: + return 0
May 03 22:11:39 web3 apache2[13180]: + [ no != no ]
May 03 22:11:39 web3 apache2[13180]: + check_htcacheclean
May 03 22:11:39 web3 apache2[13180]: + [ daemon = daemon ]
May 03 22:11:39 web3 apache2[13180]: + [ auto = yes ]
May 03 22:11:39 web3 apache2[13180]: + . /etc/apache2/envvars
May 03 22:11:39 web3 apache2[13180]: + unset HOME
May 03 22:11:39 web3 apache2[13180]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:11:39 web3 apache2[13180]: + SUFFIX=
May 03 22:11:39 web3 apache2[13180]: + export APACHE_RUN_USER=www-data
May 03 22:11:39 web3 apache2[13180]: + export APACHE_RUN_GROUP=www-data
May 03 22:11:39 web3 apache2[13180]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:11:39 web3 apache2[13180]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:11:39 web3 apache2[13180]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:11:39 web3 apache2[13180]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:11:39 web3 apache2[13180]: + export LANG=C
May 03 22:11:39 web3 apache2[13180]: + export LANG
May 03 22:11:39 web3 apache2[13180]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:11:39 web3 apache2[13180]: + echo
May 03 22:11:39 web3 apache2[13180]: + MODSDIR=
May 03 22:11:39 web3 apache2[13180]: + [ auto = auto -a -e /etc/apache2/mods-enabled/cache_disk.load ]
May 03 22:11:39 web3 apache2[13180]: + return 1
May 03 22:11:39 web3 apache2[13180]: + exit 0
May 03 22:11:39 web3 apache2[13180]: + cleanup
May 03 22:11:39 web3 apache2[13180]: + [ -n  ]
May 03 22:12:30 web3 systemd[1]: Stopping LSB: Apache2 web server...
May 03 22:12:30 web3 apache2[13321]: + DESC=web server
May 03 22:12:30 web3 apache2[13321]: + NAME=apache2
May 03 22:12:30 web3 apache2[13321]: + DAEMON=/usr/sbin/apache2
May 03 22:12:30 web3 apache2[13321]: + SCRIPTNAME=apache2
May 03 22:12:30 web3 apache2[13321]: + SCRIPTNAME=apache2
May 03 22:12:30 web3 apache2[13321]: + [ -n  ]
May 03 22:12:30 web3 apache2[13321]: + [ apache2 != apache2 ]
May 03 22:12:30 web3 apache2[13321]: + DIR_SUFFIX=
May 03 22:12:30 web3 apache2[13321]: + APACHE_CONFDIR=/etc/apache2
May 03 22:12:30 web3 apache2[13321]: + [ -z  ]
May 03 22:12:30 web3 apache2[13321]: + APACHE_ENVVARS=/etc/apache2/envvars
May 03 22:12:30 web3 apache2[13321]: + export APACHE_CONFDIR APACHE_ENVVARS
May 03 22:12:30 web3 apache2[13321]: + ENV=env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
May 03 22:12:30 web3 apache2[13321]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:12:30 web3 apache2[13321]: + [ /etc/apache2/envvars != /etc/apache2/envvars ]
May 03 22:12:30 web3 apache2[13321]: + HTCACHECLEAN_RUN=auto
May 03 22:12:30 web3 apache2[13321]: + HTCACHECLEAN_MODE=daemon
May 03 22:12:30 web3 apache2[13321]: + HTCACHECLEAN_SIZE=300M
May 03 22:12:30 web3 apache2[13321]: + HTCACHECLEAN_DAEMON_INTERVAL=120
May 03 22:12:30 web3 apache2[13321]: + HTCACHECLEAN_PATH=/var/cache/apache2/mod_cache_disk
May 03 22:12:30 web3 apache2[13321]: + HTCACHECLEAN_OPTIONS=
May 03 22:12:30 web3 apache2[13321]: + [ -f /etc/default/apache2 ]
May 03 22:12:30 web3 apache2[13321]: + . /etc/default/apache2
May 03 22:12:30 web3 apache2[13321]: + HTCACHECLEAN_RUN=auto
May 03 22:12:30 web3 apache2[13321]: + HTCACHECLEAN_MODE=daemon
May 03 22:12:30 web3 apache2[13321]: + HTCACHECLEAN_SIZE=300M
May 03 22:12:30 web3 apache2[13321]: + HTCACHECLEAN_DAEMON_INTERVAL=120
May 03 22:12:30 web3 apache2[13321]: + HTCACHECLEAN_PATH=/var/cache/apache2/mod_cache_disk
May 03 22:12:30 web3 apache2[13321]: + HTCACHECLEAN_OPTIONS=-n
May 03 22:12:30 web3 apache2[13321]: + . /etc/apache2/envvars
May 03 22:12:30 web3 apache2[13321]: + unset HOME
May 03 22:12:30 web3 apache2[13321]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:12:30 web3 apache2[13321]: + SUFFIX=
May 03 22:12:30 web3 apache2[13321]: + export APACHE_RUN_USER=www-data
May 03 22:12:30 web3 apache2[13321]: + export APACHE_RUN_GROUP=www-data
May 03 22:12:30 web3 apache2[13321]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13321]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:12:30 web3 apache2[13321]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:12:30 web3 apache2[13321]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:12:30 web3 apache2[13321]: + export LANG=C
May 03 22:12:30 web3 apache2[13321]: + export LANG
May 03 22:12:30 web3 apache2[13321]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:12:30 web3 apache2[13321]: + echo /var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13321]: + PIDFILE=/var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13321]: + VERBOSE=no
May 03 22:12:30 web3 apache2[13321]: + [ -f /etc/default/rcS ]
May 03 22:12:30 web3 apache2[13321]: + . /etc/default/rcS
May 03 22:12:30 web3 apache2[13321]: + . /lib/lsb/init-functions
May 03 22:12:30 web3 apache2[13321]: + run-parts --lsbsysinit --list /lib/lsb/init-functions.d
May 03 22:12:30 web3 apache2[13321]: + [ -r /lib/lsb/init-functions.d/20-left-info-blocks ]
May 03 22:12:30 web3 apache2[13321]: + . /lib/lsb/init-functions.d/20-left-info-blocks
May 03 22:12:30 web3 apache2[13321]: + [ -r /lib/lsb/init-functions.d/40-systemd ]
May 03 22:12:30 web3 apache2[13321]: + . /lib/lsb/init-functions.d/40-systemd
May 03 22:12:30 web3 apache2[13321]: + _use_systemctl=0
May 03 22:12:30 web3 apache2[13321]: + [ -d /run/systemd/system ]
May 03 22:12:30 web3 apache2[13321]: + [ -n  ]
May 03 22:12:30 web3 apache2[13321]: + [ 1 -ne 1 ]
May 03 22:12:30 web3 apache2[13321]: + export _SYSTEMCTL_SKIP_REDIRECT=true
May 03 22:12:30 web3 apache2[13321]: + [ 0 = 1 ]
May 03 22:12:30 web3 apache2[13321]: + FANCYTTY=
May 03 22:12:30 web3 apache2[13321]: + [ -e /etc/lsb-base-logging.sh ]
May 03 22:12:30 web3 apache2[13321]: + true
May 03 22:12:30 web3 apache2[13321]: + APACHE2CTL=env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin apache2ctl
May 03 22:12:30 web3 apache2[13321]: + HTCACHECLEAN=env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin htcacheclean
May 03 22:12:30 web3 apache2[13321]: + . /etc/apache2/envvars
May 03 22:12:30 web3 apache2[13321]: + unset HOME
May 03 22:12:30 web3 apache2[13321]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:12:30 web3 apache2[13321]: + SUFFIX=
May 03 22:12:30 web3 apache2[13321]: + export APACHE_RUN_USER=www-data
May 03 22:12:30 web3 apache2[13321]: + export APACHE_RUN_GROUP=www-data
May 03 22:12:30 web3 apache2[13321]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13321]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:12:30 web3 apache2[13321]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:12:30 web3 apache2[13321]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:12:30 web3 apache2[13321]: + export LANG=C
May 03 22:12:30 web3 apache2[13321]: + export LANG
May 03 22:12:30 web3 apache2[13321]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:12:30 web3 apache2[13321]: + echo /var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13321]: + PIDFILE=/var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13321]: + APACHE2_INIT_MESSAGE=
May 03 22:12:30 web3 apache2[13321]: + CONFTEST_OUTFILE=
May 03 22:12:30 web3 apache2[13321]: + trap cleanup 0
May 03 22:12:30 web3 apache2[13321]: + [ -x /usr/sbin/apache2 ]
May 03 22:12:30 web3 apache2[13321]: + [ ! -x /usr/sbin/apache2 ]
May 03 22:12:30 web3 apache2[13321]: + [ -z /var/run/apache2/apache2.pid ]
May 03 22:12:30 web3 apache2[13321]: + check_htcacheclean
May 03 22:12:30 web3 apache2[13321]: + [ daemon = daemon ]
May 03 22:12:30 web3 apache2[13321]: + [ auto = yes ]
May 03 22:12:30 web3 apache2[13321]: + . /etc/apache2/envvars
May 03 22:12:30 web3 apache2[13321]: + unset HOME
May 03 22:12:30 web3 apache2[13321]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:12:30 web3 apache2[13321]: + SUFFIX=
May 03 22:12:30 web3 apache2[13321]: + export APACHE_RUN_USER=www-data
May 03 22:12:30 web3 apache2[13321]: + export APACHE_RUN_GROUP=www-data
May 03 22:12:30 web3 apache2[13321]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13321]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:12:30 web3 apache2[13321]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:12:30 web3 apache2[13321]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:12:30 web3 apache2[13321]: + export LANG=C
May 03 22:12:30 web3 apache2[13321]: + export LANG
May 03 22:12:30 web3 apache2[13321]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:12:30 web3 apache2[13321]: + echo
May 03 22:12:30 web3 apache2[13321]: + MODSDIR=
May 03 22:12:30 web3 apache2[13321]: + [ auto = auto -a -e /etc/apache2/mods-enabled/cache_disk.load ]
May 03 22:12:30 web3 apache2[13321]: + return 1
May 03 22:12:30 web3 apache2[13321]: + log_daemon_msg Stopping web server apache2
May 03 22:12:30 web3 apache2[13321]: + [ -z Stopping web server ]
May 03 22:12:30 web3 apache2[13321]: + log_daemon_msg_pre Stopping web server apache2
May 03 22:12:30 web3 apache2[13321]: + log_use_fancy_output
May 03 22:12:30 web3 apache2[13321]: + TPUT=/usr/bin/tput
May 03 22:12:30 web3 apache2[13321]: + EXPR=/usr/bin/expr
May 03 22:12:30 web3 apache2[13321]: + [ -t 1 ]
May 03 22:12:30 web3 apache2[13321]: + FANCYTTY=0
May 03 22:12:30 web3 apache2[13321]: + false
May 03 22:12:30 web3 apache2[13321]: + [ -z apache2 ]
May 03 22:12:30 web3 apache2[13321]: + echo -n Stopping web server: apache2
May 03 22:12:30 web3 apache2[13321]: Stopping web server: apache2+ log_daemon_msg_post Stopping web server apache2
May 03 22:12:30 web3 apache2[13321]: + :
May 03 22:12:30 web3 apache2[13321]: + do_stop stop
May 03 22:12:30 web3 apache2[13321]: + local STOP=stop
May 03 22:12:30 web3 apache2[13321]: + local AP_RET=0
May 03 22:12:30 web3 apache2[13321]: + pidof /usr/sbin/apache2
May 03 22:12:30 web3 apache2[13321]: + [ -e /var/run/apache2/apache2.pid ]
May 03 22:12:30 web3 apache2[13321]: + pidof /usr/sbin/apache2
May 03 22:12:30 web3 apache2[13321]: + tr   \n
May 03 22:12:30 web3 apache2[13321]: + cat /var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13321]: + grep -w 13208
May 03 22:12:30 web3 apache2[13321]: + AP_RET=2
May 03 22:12:30 web3 apache2[13321]: + [ 2 = 0 ]
May 03 22:12:30 web3 apache2[13321]: + [ 2 = 2 ]
May 03 22:12:30 web3 apache2[13321]: + apache_conftest
May 03 22:12:30 web3 apache2[13321]: + [ -z  ]
May 03 22:12:30 web3 apache2[13321]: + mktemp
May 03 22:12:30 web3 apache2[13321]: + CONFTEST_OUTFILE=/tmp/tmp.cXXi7LiqPl
May 03 22:12:30 web3 apache2[13321]: + env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin apache2ctl configtest
May 03 22:12:30 web3 apache2[13321]: + rm -f /tmp/tmp.cXXi7LiqPl
May 03 22:12:30 web3 apache2[13321]: + CONFTEST_OUTFILE=
May 03 22:12:30 web3 apache2[13321]: + return 0
May 03 22:12:30 web3 apache2[13321]: + env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin apache2ctl stop
May 03 22:12:30 web3 apache2[13321]: + apache_wait_stop 0
May 03 22:12:30 web3 apache2[13321]: + local STATUS=0
May 03 22:12:30 web3 apache2[13321]: + [ 0 != 0 ]
May 03 22:12:30 web3 apache2[13321]: + pidofproc -p /var/run/apache2/apache2.pid /usr/sbin/apache2
May 03 22:12:30 web3 apache2[13321]: + local pidfile base status specified pid OPTIND
May 03 22:12:30 web3 apache2[13321]: + pidfile=
May 03 22:12:30 web3 apache2[13321]: + specified=
May 03 22:12:30 web3 apache2[13321]: + OPTIND=1
May 03 22:12:30 web3 apache2[13321]: + getopts p: opt
May 03 22:12:30 web3 apache2[13321]: + pidfile=/var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13321]: + specified=specified
May 03 22:12:30 web3 apache2[13321]: + getopts p: opt
May 03 22:12:30 web3 apache2[13321]: + shift 2
May 03 22:12:30 web3 apache2[13321]: + [ 1 -ne 1 ]
May 03 22:12:30 web3 apache2[13321]: + base=apache2
May 03 22:12:30 web3 apache2[13321]: + [ ! specified ]
May 03 22:12:30 web3 apache2[13321]: + [ -n /var/run/apache2/apache2.pid ]
May 03 22:12:30 web3 apache2[13321]: + [ -e /var/run/apache2/apache2.pid ]
May 03 22:12:30 web3 apache2[13321]: + [ -x /bin/pidof ]
May 03 22:12:30 web3 apache2[13321]: + [ ! specified ]
May 03 22:12:30 web3 apache2[13321]: + return 3
May 03 22:12:30 web3 systemd[1]: Starting LSB: Apache2 web server...
May 03 22:12:30 web3 apache2[13321]: + PIDTMP=
May 03 22:12:30 web3 apache2[13321]: + [ -n  ]
May 03 22:12:30 web3 apache2[13321]: + return 0
May 03 22:12:30 web3 apache2[13321]: + return 0
May 03 22:12:30 web3 apache2[13321]: + RET_STATUS=0
May 03 22:12:30 web3 apache2[13321]: + log_success_msg
May 03 22:12:30 web3 apache2[13321]: + [ -n  ]
May 03 22:12:30 web3 apache2[13321]: + log_end_msg 0
May 03 22:12:30 web3 apache2[13321]: + [ -z 0 ]
May 03 22:12:30 web3 apache2[13321]: + local retval
May 03 22:12:30 web3 apache2[13321]: + retval=0
May 03 22:12:30 web3 apache2[13321]: + log_end_msg_pre 0
May 03 22:12:30 web3 apache2[13321]: + log_use_fancy_output
May 03 22:12:30 web3 apache2[13321]: + TPUT=/usr/bin/tput
May 03 22:12:30 web3 apache2[13321]: + EXPR=/usr/bin/expr
May 03 22:12:30 web3 apache2[13321]: + [ -t 1 ]
May 03 22:12:30 web3 apache2[13321]: + FANCYTTY=0
May 03 22:12:30 web3 apache2[13321]: + false
May 03 22:12:30 web3 apache2[13321]: + log_use_fancy_output
May 03 22:12:30 web3 apache2[13321]: + TPUT=/usr/bin/tput
May 03 22:12:30 web3 apache2[13321]: + EXPR=/usr/bin/expr
May 03 22:12:30 web3 apache2[13321]: + [ -t 1 ]
May 03 22:12:30 web3 apache2[13321]: + FANCYTTY=0
May 03 22:12:30 web3 apache2[13321]: + false
May 03 22:12:30 web3 apache2[13321]: + RED=
May 03 22:12:30 web3 apache2[13321]: + YELLOW=
May 03 22:12:30 web3 apache2[13321]: + NORMAL=
May 03 22:12:30 web3 apache2[13321]: + [ 0 -eq 0 ]
May 03 22:12:30 web3 apache2[13321]: + echo .
May 03 22:12:30 web3 apache2[13321]: .
May 03 22:12:30 web3 apache2[13321]: + log_end_msg_post 0
May 03 22:12:30 web3 apache2[13321]: + :
May 03 22:12:30 web3 apache2[13321]: + return 0
May 03 22:12:30 web3 apache2[13321]: + [ no != no ]
May 03 22:12:30 web3 apache2[13321]: + print_error_msg
May 03 22:12:30 web3 apache2[13321]: + [ -z  ]
May 03 22:12:30 web3 apache2[13321]: + [ -n  ]
May 03 22:12:30 web3 apache2[13321]: + check_htcacheclean
May 03 22:12:30 web3 apache2[13321]: + [ daemon = daemon ]
May 03 22:12:30 web3 apache2[13321]: + [ auto = yes ]
May 03 22:12:30 web3 apache2[13321]: + . /etc/apache2/envvars
May 03 22:12:30 web3 apache2[13321]: + unset HOME
May 03 22:12:30 web3 apache2[13321]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:12:30 web3 apache2[13321]: + SUFFIX=
May 03 22:12:30 web3 apache2[13321]: + export APACHE_RUN_USER=www-data
May 03 22:12:30 web3 apache2[13321]: + export APACHE_RUN_GROUP=www-data
May 03 22:12:30 web3 apache2[13321]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13321]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:12:30 web3 apache2[13321]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:12:30 web3 apache2[13321]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:12:30 web3 apache2[13321]: + export LANG=C
May 03 22:12:30 web3 apache2[13321]: + export LANG
May 03 22:12:30 web3 apache2[13321]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:12:30 web3 apache2[13321]: + echo
May 03 22:12:30 web3 apache2[13321]: + MODSDIR=
May 03 22:12:30 web3 apache2[13321]: + [ auto = auto -a -e /etc/apache2/mods-enabled/cache_disk.load ]
May 03 22:12:30 web3 apache2[13321]: + return 1
May 03 22:12:30 web3 apache2[13321]: + exit 0
May 03 22:12:30 web3 apache2[13321]: + cleanup
May 03 22:12:30 web3 apache2[13321]: + [ -n  ]
May 03 22:12:30 web3 apache2[13341]: + DESC=web server
May 03 22:12:30 web3 apache2[13341]: + NAME=apache2
May 03 22:12:30 web3 apache2[13341]: + DAEMON=/usr/sbin/apache2
May 03 22:12:30 web3 apache2[13341]: + SCRIPTNAME=apache2
May 03 22:12:30 web3 apache2[13341]: + SCRIPTNAME=apache2
May 03 22:12:30 web3 apache2[13341]: + [ -n  ]
May 03 22:12:30 web3 apache2[13341]: + [ apache2 != apache2 ]
May 03 22:12:30 web3 apache2[13341]: + DIR_SUFFIX=
May 03 22:12:30 web3 apache2[13341]: + APACHE_CONFDIR=/etc/apache2
May 03 22:12:30 web3 apache2[13341]: + [ -z  ]
May 03 22:12:30 web3 apache2[13341]: + APACHE_ENVVARS=/etc/apache2/envvars
May 03 22:12:30 web3 apache2[13341]: + export APACHE_CONFDIR APACHE_ENVVARS
May 03 22:12:30 web3 apache2[13341]: + ENV=env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
May 03 22:12:30 web3 apache2[13341]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:12:30 web3 apache2[13341]: + [ /etc/apache2/envvars != /etc/apache2/envvars ]
May 03 22:12:30 web3 apache2[13341]: + HTCACHECLEAN_RUN=auto
May 03 22:12:30 web3 apache2[13341]: + HTCACHECLEAN_MODE=daemon
May 03 22:12:30 web3 apache2[13341]: + HTCACHECLEAN_SIZE=300M
May 03 22:12:30 web3 apache2[13341]: + HTCACHECLEAN_DAEMON_INTERVAL=120
May 03 22:12:30 web3 apache2[13341]: + HTCACHECLEAN_PATH=/var/cache/apache2/mod_cache_disk
May 03 22:12:30 web3 apache2[13341]: + HTCACHECLEAN_OPTIONS=
May 03 22:12:30 web3 apache2[13341]: + [ -f /etc/default/apache2 ]
May 03 22:12:30 web3 apache2[13341]: + . /etc/default/apache2
May 03 22:12:30 web3 apache2[13341]: + HTCACHECLEAN_RUN=auto
May 03 22:12:30 web3 apache2[13341]: + HTCACHECLEAN_MODE=daemon
May 03 22:12:30 web3 apache2[13341]: + HTCACHECLEAN_SIZE=300M
May 03 22:12:30 web3 apache2[13341]: + HTCACHECLEAN_DAEMON_INTERVAL=120
May 03 22:12:30 web3 apache2[13341]: + HTCACHECLEAN_PATH=/var/cache/apache2/mod_cache_disk
May 03 22:12:30 web3 apache2[13341]: + HTCACHECLEAN_OPTIONS=-n
May 03 22:12:30 web3 apache2[13341]: + . /etc/apache2/envvars
May 03 22:12:30 web3 apache2[13341]: + unset HOME
May 03 22:12:30 web3 apache2[13341]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:12:30 web3 apache2[13341]: + SUFFIX=
May 03 22:12:30 web3 apache2[13341]: + export APACHE_RUN_USER=www-data
May 03 22:12:30 web3 apache2[13341]: + export APACHE_RUN_GROUP=www-data
May 03 22:12:30 web3 apache2[13341]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13341]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:12:30 web3 apache2[13341]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:12:30 web3 apache2[13341]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:12:30 web3 apache2[13341]: + export LANG=C
May 03 22:12:30 web3 apache2[13341]: + export LANG
May 03 22:12:30 web3 apache2[13341]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:12:30 web3 apache2[13341]: + echo /var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13341]: + PIDFILE=/var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13341]: + VERBOSE=no
May 03 22:12:30 web3 apache2[13341]: + [ -f /etc/default/rcS ]
May 03 22:12:30 web3 apache2[13341]: + . /etc/default/rcS
May 03 22:12:30 web3 apache2[13341]: + . /lib/lsb/init-functions
May 03 22:12:30 web3 apache2[13341]: + run-parts --lsbsysinit --list /lib/lsb/init-functions.d
May 03 22:12:30 web3 apache2[13341]: + [ -r /lib/lsb/init-functions.d/20-left-info-blocks ]
May 03 22:12:30 web3 apache2[13341]: + . /lib/lsb/init-functions.d/20-left-info-blocks
May 03 22:12:30 web3 apache2[13341]: + [ -r /lib/lsb/init-functions.d/40-systemd ]
May 03 22:12:30 web3 apache2[13341]: + . /lib/lsb/init-functions.d/40-systemd
May 03 22:12:30 web3 apache2[13341]: + _use_systemctl=0
May 03 22:12:30 web3 apache2[13341]: + [ -d /run/systemd/system ]
May 03 22:12:30 web3 apache2[13341]: + [ -n  ]
May 03 22:12:30 web3 apache2[13341]: + [ 1 -ne 1 ]
May 03 22:12:30 web3 apache2[13341]: + export _SYSTEMCTL_SKIP_REDIRECT=true
May 03 22:12:30 web3 apache2[13341]: + [ 0 = 1 ]
May 03 22:12:30 web3 apache2[13341]: + FANCYTTY=
May 03 22:12:30 web3 apache2[13341]: + [ -e /etc/lsb-base-logging.sh ]
May 03 22:12:30 web3 apache2[13341]: + true
May 03 22:12:30 web3 apache2[13341]: + APACHE2CTL=env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin apache2ctl
May 03 22:12:30 web3 apache2[13341]: + HTCACHECLEAN=env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin htcacheclean
May 03 22:12:30 web3 apache2[13341]: + . /etc/apache2/envvars
May 03 22:12:30 web3 apache2[13341]: + unset HOME
May 03 22:12:30 web3 apache2[13341]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:12:30 web3 apache2[13341]: + SUFFIX=
May 03 22:12:30 web3 apache2[13341]: + export APACHE_RUN_USER=www-data
May 03 22:12:30 web3 apache2[13341]: + export APACHE_RUN_GROUP=www-data
May 03 22:12:30 web3 apache2[13341]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13341]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:12:30 web3 apache2[13341]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:12:30 web3 apache2[13341]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:12:30 web3 apache2[13341]: + export LANG=C
May 03 22:12:30 web3 apache2[13341]: + export LANG
May 03 22:12:30 web3 apache2[13341]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:12:30 web3 apache2[13341]: + echo /var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13341]: + PIDFILE=/var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13341]: + APACHE2_INIT_MESSAGE=
May 03 22:12:30 web3 apache2[13341]: + CONFTEST_OUTFILE=
May 03 22:12:30 web3 apache2[13341]: + trap cleanup 0
May 03 22:12:30 web3 apache2[13341]: + [ -x /usr/sbin/apache2 ]
May 03 22:12:30 web3 apache2[13341]: + [ ! -x /usr/sbin/apache2 ]
May 03 22:12:30 web3 apache2[13341]: + [ -z /var/run/apache2/apache2.pid ]
May 03 22:12:30 web3 apache2[13341]: + check_htcacheclean
May 03 22:12:30 web3 apache2[13341]: + [ daemon = daemon ]
May 03 22:12:30 web3 apache2[13341]: + [ auto = yes ]
May 03 22:12:30 web3 apache2[13341]: + . /etc/apache2/envvars
May 03 22:12:30 web3 apache2[13341]: + unset HOME
May 03 22:12:30 web3 apache2[13341]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:12:30 web3 apache2[13341]: + SUFFIX=
May 03 22:12:30 web3 apache2[13341]: + export APACHE_RUN_USER=www-data
May 03 22:12:30 web3 apache2[13341]: + export APACHE_RUN_GROUP=www-data
May 03 22:12:30 web3 apache2[13341]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13341]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:12:30 web3 apache2[13341]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:12:30 web3 apache2[13341]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:12:30 web3 apache2[13341]: + export LANG=C
May 03 22:12:30 web3 apache2[13341]: + export LANG
May 03 22:12:30 web3 apache2[13341]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:12:30 web3 apache2[13341]: + echo
May 03 22:12:30 web3 apache2[13341]: + MODSDIR=
May 03 22:12:30 web3 apache2[13341]: + [ auto = auto -a -e /etc/apache2/mods-enabled/cache_disk.load ]
May 03 22:12:30 web3 apache2[13341]: + return 1
May 03 22:12:30 web3 apache2[13341]: + log_daemon_msg Starting web server apache2
May 03 22:12:30 web3 apache2[13341]: + [ -z Starting web server ]
May 03 22:12:30 web3 apache2[13341]: + log_daemon_msg_pre Starting web server apache2
May 03 22:12:30 web3 apache2[13341]: + log_use_fancy_output
May 03 22:12:30 web3 apache2[13341]: + TPUT=/usr/bin/tput
May 03 22:12:30 web3 apache2[13341]: + EXPR=/usr/bin/expr
May 03 22:12:30 web3 apache2[13341]: + [ -t 1 ]
May 03 22:12:30 web3 apache2[13341]: + FANCYTTY=0
May 03 22:12:30 web3 apache2[13341]: + false
May 03 22:12:30 web3 apache2[13341]: + [ -z apache2 ]
May 03 22:12:30 web3 apache2[13341]: + echo -n Starting web server: apache2
May 03 22:12:30 web3 apache2[13341]: Starting web server: apache2+ log_daemon_msg_post Starting web server apache2
May 03 22:12:30 web3 apache2[13341]: + :
May 03 22:12:30 web3 apache2[13341]: + do_start
May 03 22:12:30 web3 apache2[13341]: + pidofproc -p /var/run/apache2/apache2.pid /usr/sbin/apache2
May 03 22:12:30 web3 apache2[13341]: + ss -lntp
May 03 22:12:30 web3 apache2[13341]: + grep :80
May 03 22:12:30 web3 apache2[13341]: LISTEN     0      128                      :::80                      :::*      users:(("apache2",pid=13226,fd=4),("apache2",pid=13208,fd=4))
May 03 22:12:30 web3 apache2[13341]: + apache_conftest
May 03 22:12:30 web3 apache2[13341]: + [ -z  ]
May 03 22:12:30 web3 apache2[13341]: + mktemp
May 03 22:12:30 web3 apache2[13341]: + CONFTEST_OUTFILE=/tmp/tmp.sp467E85Ns
May 03 22:12:30 web3 apache2[13341]: + env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin apache2ctl configtest
May 03 22:12:30 web3 apache2[13341]: + rm -f /tmp/tmp.sp467E85Ns
May 03 22:12:30 web3 apache2[13341]: + CONFTEST_OUTFILE=
May 03 22:12:30 web3 apache2[13341]: + return 0
May 03 22:12:30 web3 apache2[13341]: + env -i LANG=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin apache2ctl start
May 03 22:12:30 web3 apache2[13341]: (98)Address already in use: AH00072: make_sock: could not bind to address [::]:80
May 03 22:12:30 web3 apache2[13341]: (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
May 03 22:12:30 web3 apache2[13341]: no listening sockets available, shutting down
May 03 22:12:30 web3 apache2[13341]: AH00015: Unable to open logs
May 03 22:12:30 web3 apache2[13341]: Action 'start' failed.
May 03 22:12:30 web3 apache2[13341]: The Apache error log may have more information.
May 03 22:12:30 web3 apache2[13341]: + apache_wait_start 1
May 03 22:12:30 web3 apache2[13341]: + local STATUS=1
May 03 22:12:30 web3 apache2[13341]: + local i=0
May 03 22:12:30 web3 apache2[13341]: + [ 1 != 0 ]
May 03 22:12:30 web3 apache2[13341]: + return 1
May 03 22:12:30 web3 apache2[13341]: + return 1
May 03 22:12:30 web3 apache2[13341]: + RET_STATUS=1
May 03 22:12:30 web3 apache2[13341]: + log_success_msg
May 03 22:12:30 web3 apache2[13341]: + [ -n  ]
May 03 22:12:30 web3 apache2[13341]: + log_end_msg 0
May 03 22:12:30 web3 apache2[13341]: + [ -z 0 ]
May 03 22:12:30 web3 apache2[13341]: + local retval
May 03 22:12:30 web3 apache2[13341]: + retval=0
May 03 22:12:30 web3 apache2[13341]: + log_end_msg_pre 0
May 03 22:12:30 web3 apache2[13341]: + log_use_fancy_output
May 03 22:12:30 web3 apache2[13341]: + TPUT=/usr/bin/tput
May 03 22:12:30 web3 apache2[13341]: + EXPR=/usr/bin/expr
May 03 22:12:30 web3 apache2[13341]: + [ -t 1 ]
May 03 22:12:30 web3 apache2[13341]: + FANCYTTY=0
May 03 22:12:30 web3 apache2[13341]: + false
May 03 22:12:30 web3 apache2[13341]: + log_use_fancy_output
May 03 22:12:30 web3 apache2[13341]: + TPUT=/usr/bin/tput
May 03 22:12:30 web3 apache2[13341]: + EXPR=/usr/bin/expr
May 03 22:12:30 web3 apache2[13341]: + [ -t 1 ]
May 03 22:12:30 web3 apache2[13341]: + FANCYTTY=0
May 03 22:12:30 web3 apache2[13341]: + false
May 03 22:12:30 web3 apache2[13341]: + RED=
May 03 22:12:30 web3 apache2[13341]: + YELLOW=
May 03 22:12:30 web3 apache2[13341]: + NORMAL=
May 03 22:12:30 web3 apache2[13341]: + [ 0 -eq 0 ]
May 03 22:12:30 web3 apache2[13341]: + echo .
May 03 22:12:30 web3 apache2[13341]: .
May 03 22:12:30 web3 apache2[13341]: + log_end_msg_post 0
May 03 22:12:30 web3 apache2[13341]: + :
May 03 22:12:30 web3 apache2[13341]: + return 0
May 03 22:12:30 web3 apache2[13341]: + [ no != no ]
May 03 22:12:30 web3 apache2[13341]: + check_htcacheclean
May 03 22:12:30 web3 apache2[13341]: + [ daemon = daemon ]
May 03 22:12:30 web3 apache2[13341]: + [ auto = yes ]
May 03 22:12:30 web3 systemd[1]: Started LSB: Apache2 web server.
May 03 22:12:30 web3 apache2[13341]: + . /etc/apache2/envvars
May 03 22:12:30 web3 apache2[13341]: + unset HOME
May 03 22:12:30 web3 apache2[13341]: + [ /etc/apache2 != /etc/apache2 ]
May 03 22:12:30 web3 apache2[13341]: + SUFFIX=
May 03 22:12:30 web3 apache2[13341]: + export APACHE_RUN_USER=www-data
May 03 22:12:30 web3 apache2[13341]: + export APACHE_RUN_GROUP=www-data
May 03 22:12:30 web3 apache2[13341]: + export APACHE_PID_FILE=/var/run/apache2/apache2.pid
May 03 22:12:30 web3 apache2[13341]: + export APACHE_RUN_DIR=/var/run/apache2
May 03 22:12:30 web3 apache2[13341]: + export APACHE_LOCK_DIR=/var/lock/apache2
May 03 22:12:30 web3 apache2[13341]: + export APACHE_LOG_DIR=/var/log/apache2
May 03 22:12:30 web3 apache2[13341]: + export LANG=C
May 03 22:12:30 web3 apache2[13341]: + export LANG
May 03 22:12:30 web3 apache2[13341]: + APACHE_ULIMIT_MAX_FILES=ulimit -n 32768
May 03 22:12:30 web3 apache2[13341]: + echo
May 03 22:12:30 web3 apache2[13341]: + MODSDIR=
May 03 22:12:30 web3 apache2[13341]: + [ auto = auto -a -e /etc/apache2/mods-enabled/cache_disk.load ]
May 03 22:12:30 web3 apache2[13341]: + return 1
May 03 22:12:30 web3 apache2[13341]: + exit 0
May 03 22:12:30 web3 apache2[13341]: + cleanup
May 03 22:12:30 web3 apache2[13341]: + [ -n  ]

--- End Message ---
--- Begin Message ---
Source: apache2
Source-Version: 2.4.20-2

We believe that the bug you reported is fixed in the latest version of
apache2, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 822144@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Stefan Fritsch <sf@debian.org> (supplier of updated apache2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Sat, 28 May 2016 16:14:09 +0200
Source: apache2
Binary: apache2 apache2-data apache2-bin apache2-utils apache2-suexec-pristine apache2-suexec-custom apache2-doc apache2-dev apache2-dbg
Architecture: source amd64 all
Version: 2.4.20-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Apache Maintainers <debian-apache@lists.debian.org>
Changed-By: Stefan Fritsch <sf@debian.org>
Description:
 apache2    - Apache HTTP Server
 apache2-bin - Apache HTTP Server (modules and other binary files)
 apache2-data - Apache HTTP Server (common files)
 apache2-dbg - Apache debugging symbols
 apache2-dev - Apache HTTP Server (development headers)
 apache2-doc - Apache HTTP Server (on-site documentation)
 apache2-suexec-custom - Apache HTTP Server configurable suexec program for mod_suexec
 apache2-suexec-pristine - Apache HTTP Server standard suexec program for mod_suexec
 apache2-utils - Apache HTTP Server (utility programs for web servers)
Closes: 820824 821313 821956 822144 823259
Changes:
 apache2 (2.4.20-2) unstable; urgency=medium
 .
   * Fix crash in ap_get_useragent_host() triggered by mod_perl test.
     Closes: #820824
   * Fix race condition and logical error in init script. Thanks to Thomas
     Stangner for the patch. Closes: #822144
   * Remove links to manpages.debian.org in default index.html to avoid
     broken robots doing a DoS on the site. Closes: #821313
   * Fix a2enmod to run on perl 5.14 to simplify backports. Closes: #821956
   * Bump Standards-Version (no changes necessary).
   * Fix segfault with logresolve -c. Closes: #823259
Checksums-Sha1:
 e3041ff82a87356f686dfe8fa461ea1f972b1e03 2654 apache2_2.4.20-2.dsc
 2beb56e4c56e9e8bd8d74211a114f9beb9888d00 350596 apache2_2.4.20-2.debian.tar.xz
 a38715b4a0ee01ef5d3a40090355db84652056a6 1120460 apache2-bin_2.4.20-2_amd64.deb
 7140b1727dea2e75e566f64a76d4a76de2001e2c 162098 apache2-data_2.4.20-2_all.deb
 6a87921928187d8232b4be87945870db024cd4cd 2192224 apache2-dbg_2.4.20-2_amd64.deb
 c238c68231fb496bc56a086b482b25d1be721b35 301358 apache2-dev_2.4.20-2_amd64.deb
 f05efff828c1cbb8d54e87509edca53b7645fb69 3734158 apache2-doc_2.4.20-2_all.deb
 0e0a105b676d8269aafa4898ff0f39a1d35180b5 145284 apache2-suexec-custom_2.4.20-2_amd64.deb
 7f40b4e4352b99dbbdcb7c29751697b500593fb1 143802 apache2-suexec-pristine_2.4.20-2_amd64.deb
 c9b5f872408ec8d558d75ed22628afc1b60535e4 207854 apache2-utils_2.4.20-2_amd64.deb
 7a22461791603435dabafae75b38abc244f1d7f5 216680 apache2_2.4.20-2_amd64.deb
Checksums-Sha256:
 9794a22559a12245dff5098099da01fcd2a96e02f63c0d7630ce50f902c4b031 2654 apache2_2.4.20-2.dsc
 6a43a3b984be205d13dd189a909549ecde8434983236e4043cf379da351c0c15 350596 apache2_2.4.20-2.debian.tar.xz
 69e4ea31f6e96bff2b63a849d73533be1aebf2c775dfa06acb67582c3ed1fed1 1120460 apache2-bin_2.4.20-2_amd64.deb
 d28b1cbfd4eb759098f43eeaa978ba7a1269f27ab2dd7355c32bd327c34e975a 162098 apache2-data_2.4.20-2_all.deb
 87a86ff091706fb1172052f3c7a101cd2efe9d9d615a0815f4727b26b4f7cd7b 2192224 apache2-dbg_2.4.20-2_amd64.deb
 0ffae1e17372f5e592e3cc9b5e223034a2075dd75b4bd8448217121a6253f218 301358 apache2-dev_2.4.20-2_amd64.deb
 2c6b3c489247d6e6ef51ba67f5d4fc5f21354981b3827f5d694748f380d0b6cc 3734158 apache2-doc_2.4.20-2_all.deb
 55c496be55fcd592a354e7ae061106bd9c209311299a81820bb39130531c4218 145284 apache2-suexec-custom_2.4.20-2_amd64.deb
 fe9b1f518f0cef9091a1ca9b78b125514e80018e8796c631b0e5f191d7c5019a 143802 apache2-suexec-pristine_2.4.20-2_amd64.deb
 48d37ebd916e4d00f4c4eed7e63045a96edf8f9be3e73bce747adaac9edfd2a5 207854 apache2-utils_2.4.20-2_amd64.deb
 a1ad9311c1b11550c3a2f1e9712badc954c55fcc9dfc5b8bc6287d39c2dccdea 216680 apache2_2.4.20-2_amd64.deb
Files:
 d0d754b4e2086bfd222a3110e4757379 2654 httpd optional apache2_2.4.20-2.dsc
 a9fc31dd48d28919d9899464508144fd 350596 httpd optional apache2_2.4.20-2.debian.tar.xz
 fcd162742a739cb90527ce9d75faa0e1 1120460 httpd optional apache2-bin_2.4.20-2_amd64.deb
 ad78d0c62878851b86c0e6258ce636a2 162098 httpd optional apache2-data_2.4.20-2_all.deb
 aa19dc5380e0440ecf1be1a078618045 2192224 debug extra apache2-dbg_2.4.20-2_amd64.deb
 25b4e799185ef4b3cf77a82cd29156f4 301358 httpd optional apache2-dev_2.4.20-2_amd64.deb
 f00d4f0f9af81b2429d1ea7210c70698 3734158 doc optional apache2-doc_2.4.20-2_all.deb
 aba0031762c70db9705bac5fea67a0e8 145284 httpd extra apache2-suexec-custom_2.4.20-2_amd64.deb
 0f2c2aa07bd02412d4302d9c96709bb3 143802 httpd optional apache2-suexec-pristine_2.4.20-2_amd64.deb
 a8923572a39c3b43719c1872d8b47ab0 207854 httpd optional apache2-utils_2.4.20-2_amd64.deb
 88a60a5cb61282f9a06236d8b2039826 216680 httpd optional apache2_2.4.20-2_amd64.deb

-----BEGIN PGP SIGNATURE-----

iQIcBAEBCAAGBQJXSamNAAoJEMaHXzVBzv3gCOgQAIuBU1oU0fkGfiUMQE3pcnaB
IttgZLeXoIMk0gkgKgW2RQxvl8niM376vUq/tAoX4ZgUTsgtagT1jpgH6TypAYSh
jcJll+9UEXhLIwCfcMFJuwko5Vm1lNiEI5bMH4qbnzU7KpduT7WZ+EPyBic091yl
6dX5hd4FqjcDzovy8l751r6rfGMv1RpWBKvtFAGxRJfuXLZO1lNhSVveALHiOvoi
qRZcg5mbjgMgFT/Tv6eiYpTL1+Qni26T570Ls6EvP+u3eA0RMSrdGLR9S6GmVuMo
2RgtYDLjFPHWTJje3cAXMHmz9QNcvUTGzvqofO2yhQlh9bFOg1wCA95lAAMsxcj+
VM0E8oWFyR9niaojAnnEDRcl698s8848d4I2721a5ejEZktHg64kwkhGcDxqZ3mK
gSljkUwjGB+hDPOlwguv9yNZimRBmkHhsn01BWPtpRymCrsuLVN/XCAWr5OlZ3Qv
apBcVKoG5S4uNKqFctT9LisWTkMk6NctJjLbx4RB+CVItR0EhDTo+ufF40mMFsFi
5V3gwElzMYTbwm5848iLD6bBvg4tMdMUS1gbIv99E6gNwCzuaSYx/10jVm9sp/TT
yUjC32YREvWzJHbFe+CWH24GYcOZeF1AKL0ZjAwuK5qqh7UJtLHRP8j/QYgq+CEB
qhTvqbDSvanf0tWywQ2u
=dpdQ
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: