前提・実現したいこと
unixで、gem installコマンドが通るようにしたい
発生している問題・エラーメッセージ
unix
1% gem install rails 2ERROR: SSL verification error at depth 0: ok (0) 3ERROR: SSL verification error at depth 0: ok (0) 4ERROR: SSL verification error at depth 0: ok (0) 5ERROR: Could not find a valid gem 'rails' (>= 0), here is why: 6 Unable to download data from https://rubygems.org/ - SSL_connect returned=1 errno=0 state=error: certificate verify failed (certificate rejected) (https://rubygems.org/specs.4.8.gz) 7ERROR: SSL verification error at depth 0: ok (0) 8ERROR: SSL verification error at depth 0: ok (0)
試したこと
rubyやgemの入れ直しはやりましたが効果なし。
こちらを参考に自動SSLチェックを行ったところ、以下のように言われました
curl -Lks 'https://git.io/rg-ssl' | ruby Here's your Ruby and OpenSSL environment: Ruby: 2.7.2p137 (2020-10-01 revision 5445e0435260b449decf2ac16f9d09bae3cafe72) [x86_64-darwin19] RubyGems: 3.1.4 Bundler: 2.1.4 Compiled with: OpenSSL 1.1.1k 25 Mar 2021 Loaded version: OpenSSL 1.1.1k 25 Mar 2021 SSL_CERT_FILE: /Users/myname/.rbenv/versions/2.7.2/openssl/ssl/cert.pem SSL_CERT_DIR: /Users/myname/.rbenv/versions/2.7.2/openssl/ssl/certs With that out of the way, let's see if you can connect to rubygems.org... Bundler connection to rubygems.org: failed ❌ (certificate verification) ERROR: SSL verification error at depth 0: ok (0) RubyGems connection to rubygems.org: failed ❌ (certificate verification) Ruby net/http connection to rubygems.org: failed ❌ Unfortunately, this Ruby can't connect to rubygems.org. ???? Your Ruby can't connect to rubygems.org because you are missing the certificate files OpenSSL needs to verify you are connecting to the genuine rubygems.org servers.
そのまま上記サイトのCA証明書の更新を行いましたが、gem installコマンドを叩くと依然上記のエラーが出ます。
Chromeでもhttps://rubygems.orgにアクセスできず、プライバシー面で怒られます。
developerツールでセキュリティ周りを確認したところ、SSL証明書が悪いようなのですが、
view certificateをクリックすると「この証明書は有効です」と表示されます。
この方と同じ症状だと思うのですが、証明書の配置を変える方法がわかりませんでした。
補足情報(FW/ツールのバージョンなど)
MacOS catalinaです。
gem --version 3.1.4
ruby --version ruby 2.7.2p137 (2020-10-01 revision 5445e04352) [x86_64-darwin19]
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/04 05:59