Назад | Перейти на главную страницу

curl не использует сертификат из /etc/ssl/certs/ca-certificate.crt

Когда я пытаюсь следовать завитку

devendermishra@myhost:~$ curl   https://iam.endpoint.com
curl: (60) SSL certificate problem: self signed certificate
More details here: http://curl.haxx.se/docs/sslcerts.html

curl performs SSL certificate verification by default, using a "bundle"
 of Certificate Authority (CA) public keys (CA certs). If the default
 bundle file isn't adequate, you can specify an alternate file
 using the --cacert option.
If this HTTPS server uses a certificate signed by a CA represented in
 the bundle, the certificate verification probably failed due to a
 problem with the certificate (it might be expired, or the name might
 not match the domain name in the URL).
If you'd like to turn off curl's verification of the certificate, use
 the -k (or --insecure) option.

Однако, когда я прямо упоминаю файл сертификата ca, он работает нормально.

devendermishra@myhost:~$ curl --cacert /etc/ssl/certs/ca-certificates.crt  https://iam.endpoint.com
{"error": {"message": "Auth Signature not provided", "code": 401, "title": "Unauthorized"}}

В чем проблема с конечной точкой или установкой в ​​сертификате CA?

Я подозреваю libcurlне был скомпилирован для поиска в этом месте. Вы можете отобразить встроенный путь к пакету сертификатов CA, который использует libcurl, запустив curl-config --ca. Вы также можете отобразить аргументы, переданные во время сборки, запустив curl-config --configure. Я подозреваю, что первая команда ничего не вернет (флаги отсутствовали, и автоматическое определение не сработало), а в более поздней команде будут отсутствовать ожидаемые флаги.

Более подробную информацию можно найти здесь:

https://curl.haxx.se/docs/sslcerts.html