Misconfiguration of certificate's CN and virtual name. The certificate CN has localhost4.localdomain4. We expected localhost as virtual name.このログがHTTPにアクセスが入るたびに出ているようです。
CentOS7.2 Apacheエラーログについて
CentOS7.1を使用していましたが2日ほど前にCentOS7.2にアップデートしました。
アップデート後からApacheのエラーログが頻繁に出力されるようになりました。
CentOS7.2にアップデート後のエラーログの内容ですが、
[Fri Dec 25 13:15:11.570131 2015] [mpm_prefork:notice] [pid 1141] AH00170: caught SIGWINCH, shutting down gracefully
[Fri Dec 25 14:05:21.758346 2015] [suexec:notice] [pid 5588] AH01232: suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
[Fri Dec 25 14:05:21.900927 2015] [:warn] [pid 5588] NSSSessionCacheTimeout is deprecated. Ignoring.
[Fri Dec 25 14:05:24.576333 2015] [:error] [pid 5588] Misconfiguration of certificate's CN and virtual name. The certificate CN has localhost4.localdomain4. We expected localhost as virtual name.
[Fri Dec 25 14:05:24.863090 2015] [auth_digest:notice] [pid 5588] AH01757: generating secret for digest authentication ...
[Fri Dec 25 14:05:24.863542 2015] [lbmethod_heartbeat:notice] [pid 5588] AH02282: No slotmem from mod_heartmonitor
[Fri Dec 25 14:05:24.865464 2015] [:warn] [pid 5588] NSSSessionCacheTimeout is deprecated. Ignoring.
[Fri Dec 25 14:05:29.052357 2015] [mpm_prefork:notice] [pid 5588] AH00163: Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips mod_auth_gssapi/1.3.1 mod_auth_kerb/5.4 mod_fcgid/2.3.9 mod_nss/2.4.6 NSS/3.19.1 Basic ECC PHP/5.4.16 mod_wsgi/3.4 Python/2.7.5 configured -- resuming normal operations
[Fri Dec 25 14:05:29.052393 2015] [core:notice] [pid 5588] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Fri Dec 25 14:05:29.375102 2015] [:error] [pid 5949] Misconfiguration of certificate's CN and virtual name. The certificate CN has localhost4.localdomain4. We expected localhost as virtual name.
[Fri Dec 25 14:05:29.383065 2015] [:error] [pid 5947] Misconfiguration of certificate's CN and virtual name. The certificate CN has localhost4.localdomain4. We expected localhost as virtual name.
[Fri Dec 25 14:05:29.420995 2015] [:error] [pid 5946] Misconfiguration of certificate's CN and virtual name. The certificate CN has localhost4.localdomain4. We expected localhost as virtual name.
[Fri Dec 25 14:05:29.425088 2015] [:error] [pid 5950] Misconfiguration of certificate's CN and virtual name. The certificate CN has localhost4.localdomain4. We expected localhost as virtual name.
となっています。
最後の、
Misconfiguration of certificate's CN and virtual name. The certificate CN has localhost4.localdomain4. We expected localhost as virtual name.
のログがHTTPにアクセスが入るたびに出ているようです。
Apacheのhttpd.confの設定はバーチャルドメインで複数サイト運営していますが
アクセス自体は問題なくできています。
(サーバー証明書は入れていません)
1日調べてみましたが、原因がわからず質問させていただきました。
お礼
確認が遅くなり申し訳ありません。 CentOS7.1の状態から通常アップデートしたつもりなのですが、CentOS7.2にアップグレードされていました。 このアップデートでmod_sslとmod_nssのモジュールがデフォルトでインストールされてしまったようです。 # yum remove mod_ssl # yum remove mod_nss を行い、SSL関係のモジュールをアンインストールしサーバーを再起動したらエラーログは出なくなりました。 とても助かりました。 回答ありがとうございます。