Docker 上でCentOS7を稼働させCurlコマンドを実行すると以下のエラー
HTTPS接続の場合のみ発生
curl: (77) Problem with the SSL CA cert (path? access rights?)
Dockerイメージは以下の通り
docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
centos centos7 8652b9f0cb4c 8 months ago 204MB
以下のバグレポートが存在する
https://bugs.centos.org/view.php?id=16282
解決方法として次の通り記載がある
The issue gets resolved after creating an empty “/etc/sysconfig/64bit_strstr_via_64bit_strstr_sse2_unaligned” file
Dokcer上のCentOSで以下を実行する
# touch /etc/sysconfig/64bit_strstr_via_64bit_strstr_sse2_unaligned
これで問題が解決する。
コメント