RHEL8 curlで証明書エラーが出る場合の解決方法
環境
RHEL8.6
エラー現象
brewでインストールしたcurlコマンドを実行する際に下記のエラーがでる
curl: (77) error setting certificate verify locations:
CAfile: /home/user/.linuxbrew/etc/openssl/cert.pem
CApath: /home/user/.linuxbrew/etc/openssl/certs
解決方法
証明書をダウンロードして該当ディレクトリに保存する
$ wget http://curl.haxx.se/ca/cacert.pem
$ cp cacert.pem /home/user/.linuxbrew/etc/openssl/cert.pem