curl não usando o certificado de /etc/ssl/certs/ca-certificate.crt

2

Quando tento seguir o curl

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.

No entanto, quando menciono explicitamente o arquivo de certificado ca, ele funciona bem.

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

Qual é o problema com o endpoint ou a instalação no certificado de CA?

    
por doptimusprime 03.01.2017 / 05:31

1 resposta

2

Eu suspeito que libcurl não foi compilado para procurar naquele local. Você pode exibir o caminho interno para o pacote de certificados de CA que o libcurl usa executando curl-config --ca . Você também pode exibir os argumentos que foram passados no tempo de compilação executando curl-config --configure . Eu suspeito que o primeiro comando não retornará nada (as bandeiras não estavam presentes e a detecção automática não funcionou) e o último comando estará perdendo as bandeiras esperadas.

Mais informações podem ser encontradas aqui:

link

    
por 03.01.2017 / 05:43

Tags