ユーザ用ツール

サイト用ツール


50_dialy:2014:01:29

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン前のリビジョン
50_dialy:2014:01:29 [2015/05/08 05:46] matsui50_dialy:2014:01:29 [2018/07/04 01:46] (現在) matsui
行 1: 行 1:
 +====== 2014.01.29 CentOS5でGlobalSignのルート証明書が有効期限切れ ======
  
 +Jan 28 12:00:00 2014 GMT(2014/1/28 21:00JST)にRHEL5/CentOS5にインストールされているルート証明書の中の、GlobalSignの有効期限が切れました。
 +
 +
 +===== 解決策 =====
 +
 +※CentOS 6のca-bundle.crtを利用する方法でも大丈夫。
 +
 +/etc/pki/tls/certs/ca-bundle.crt
 +
 +新し証明書を取得
 +<code console>
 +# wget http://curl.haxx.se/ca/cacert.pem
 +</code>
 +
 +新しいルート証明書を指定して実行
 +<code console>
 +# wget http://curl.haxx.se/ca/cacert.pem
 +# curl --cacert cacert.pem 
 +</code>
 +
 +新し証明書に差し替え
 +<code console>
 +# cd /etc/pki/tls/certs/
 +# mv ca-bundle.crt ca-bundle.crt.org
 +# mv ~/cacert.pem ca-bundle.crt
 +</code>
 +
 +{{tag>日記 certificate}}