0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Warning: SSL: certificate subject name 'localhost.localdomain' does not match target host name ~~ in~~にはまった件

Posted at

##環境

  • OS :AmazonLinux2

  • 証明書 :AWS ACM
    ##事象
    自サイト内でPHPcURLコマンドでファイルを読み込んでいる際に、以下のエラー文が表示されて画面上にコンテンツが表示されなかった。

    Warning: SSL: certificate subject name 'localhost.localdomain' does not match target host name ~~ in ~~

curlコマンドで疎通する場合にはSSL通信を行うようですが、その際に証明書の名前とターゲットの名前に差分があるとのエラー。
localhost.localdomainなんて証明書をアタッチするのは違うと思うので、サーバー側の修正で対応。

##対処方法
target host name ~~ に記載のホスト(hogehoge.jp)を読み込むようにhostsファイルを修正

/etc/hosts
127.0.0.1 ここにホスト名(hogehoge.jp) localdomain localhost.localdomain localhost

networkingにホスト名追加

/etc/sysconfig/network
NETWORKING=yes
HOSTNAME=ここにホスト名(hogehoge.jp)

サーバーを再起動する

sudo reboot

上記の対応で、問題なくコンテンツが表示されるようになった。

##参考資料
https://aws.amazon.com/jp/premiumsupport/knowledge-center/linux-static-hostname-rhel-centos-amazon/

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?