web-dev-qa-db-ja.com

Debian Jessieが毎朝Apacheサーバーをsystemdでリロードするのはなぜですか?

WebサーバーをDebian WheezyからDebian Jessieにアップグレードした後、毎朝、次のログエントリがシステムログに表示されます。時間は多少異なりますが、常にほぼ同時に発生するようです(プラス/マイナスは最大で10〜15分程度)。アップグレードの前には、似たようなこと(私が覚えていること)は起こりませんでした。

Oct 23 06:25:02 hostname systemd[1]: Reloading LSB: Apache2 web server.
Oct 23 06:25:04 hostname Apache2[1545]: Reloading web server: Apache2.
Oct 23 06:25:04 hostname systemd[1]: Reloaded LSB: Apache2 web server.
Oct 23 06:29:10 hostname rsyslogd0: action 'action 17' resumed (module 'builtin:ompipe') [try http://www.rsyslog.com/e/0 ]
Oct 23 06:29:10 hostname rsyslogd-2359: action 'action 17' resumed (module 'builtin:ompipe') [try http://www.rsyslog.com/e/2359 ]

service Apache2 statusの出力を見る:

● Apache2.service - LSB: Apache2 web server
   Loaded: loaded (/etc/init.d/Apache2)
   Active: active (running) since Fri 2015-10-09 21:33:36 UTC; 1 weeks 6 days ago
  Process: 21467 ExecStop=/etc/init.d/Apache2 stop (code=exited, status=0/SUCCESS)
  Process: 1545 ExecReload=/etc/init.d/Apache2 reload (code=exited, status=0/SUCCESS)
  Process: 21489 ExecStart=/etc/init.d/Apache2 start (code=exited, status=0/SUCCESS)
   CGroup: /system.slice/Apache2.service
           ├─ 1625 /usr/sbin/Apache2 -k start
           ├─ 1626 /usr/sbin/Apache2 -k start
           ├─ 4686 /usr/sbin/Apache2 -k start
           ├─ 7745 /usr/sbin/Apache2 -k start
           ├─ 7746 /usr/sbin/Apache2 -k start
           ├─ 7747 /usr/sbin/Apache2 -k start
           ├─ 7748 /usr/sbin/Apache2 -k start
           ├─ 7753 /usr/sbin/Apache2 -k start
           ├─ 7760 /usr/sbin/Apache2 -k start
           ├─ 7771 /usr/sbin/Apache2 -k start
           └─21505 /usr/sbin/Apache2 -k start

Oct 21 06:25:02 hostname.fqdn systemd[1]: Reloading LSB: Apache2 web server.
Oct 21 06:25:08 hostname.fqdn Apache2[32200]: Reloading web server: Apache2.
Oct 21 06:25:08 hostname.fqdn systemd[1]: Reloaded LSB: Apache2 web server.
Oct 22 06:25:03 hostname.fqdn systemd[1]: Reloading LSB: Apache2 web server.
Oct 22 06:25:05 hostname.fqdn Apache2[16779]: Reloading web server: Apache2.
Oct 22 06:25:05 hostname.fqdn systemd[1]: Reloaded LSB: Apache2 web server.
Oct 23 06:25:02 hostname.fqdn systemd[1]: Reloading LSB: Apache2 web server.
Oct 23 06:25:04 hostname.fqdn Apache2[1545]: Reloading web server: Apache2.
Oct 23 06:25:04 hostname.fqdn systemd[1]: Reloaded LSB: Apache2 web server.
Warning: Journal has been rotated since unit was started. Log output is incomplete or unavailable.

適切な場所を探しているかどうかはわかりませんが、リモートで関連があるように見える/run/systemd/generator.late/Apache2.serviceの唯一の部分は、ExecReloadコマンドの記述であり、これはservice Apache2 status出力。

誰もサーバー上で何も実行していないにもかかわらず、systemdがこのような規則性でWebサーバーをリロードするのはなぜですか、どうすれば停止できますか?

7
a CVn

ログローテーション後のリロードのように聞こえますか?その場合、無停止での再読み込みであるため、心配する必要はありません。

7
EEAA