Certificato SSL: impossibile ottenere il certificato dell'emittente locale [chiuso]


9

Sto eseguendo Debian (Lenny).

Quando eseguo questo:

curl --ssl https://www.google.com

Ottengo questo errore:

curl: (60) SSL certificate problem: unable to get local issuer 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.

C'è un link in quel messaggio di errore che ti dice di andare a leggere qualcosa, l'hai letto? Hai letto il resto del messaggio sotto quel link? Hai intrapreso le azioni che ti hanno richiesto queste due risorse? (Se la risposta a queste ultime domande fosse "sì" probabilmente non avresti più questo errore - se la risposta è onestamente sì e stai ancora ricevendo questo errore dicci quali passi hai fatto per farlo andare e fammi sapere in modo da poter riaprire questa domanda e cercheremo di aiutarti :)
voretaq7

Risposte:


10

Potrebbe accadere perché l'arricciatura non può accedere al bundle CA certs valido. Forse non li hai installati, quindi prova questo:

apt-get install ca-certificates

Se non aiuta - controlla CURL_CA_BUNDLE, assicurati che l'arricciatura non cerchi un fascio in un posto sbagliato.


1
sì, ha fatto entrambe le cose. Penso che sia stato quest'ultimo a farlo. Grazie!
Celwell,

Controllo della CURL_CA_BUNDLElavorato anche per me, in qualche modo ho avuto questa linea nella mia .profile: export CURL_CA_BUNDLE=~/.ssh/cacert.pem. Forse l'ho aggiunto qualche tempo fa per il debug / sviluppo. Rimuoverlo risolto il mio problema.
schmunk,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.