J'ai un problème sur ma boîte CentOS 7 pour faire tout ce qui nécessite SSL, y compris curl, wget ou la mise à jour via YUM.
Le résultat est toujours le même :
[root@localhost ~]# curl -I -v https://google.com
* About to connect() to google.com port 443 (#0)
* Trying 74.125.138.100...
* Connected to google.com (74.125.138.100) port 443 (#0)
* Initializing NSS with certpath: sql:/etc/pki/nssdb
* CAfile: /etc/pki/tls/certs/ca-bundle.crt
CApath: none
* Server certificate:
* subject: CN=*.google.com,O=Google Inc,L=Mountain View,ST=California,C=US
* start date: Jun 16 08:37:32 2016 GMT
* expire date: Sep 08 08:29:00 2016 GMT
* common name: *.google.com
* issuer: CN=192.168.2.44,C=US
* NSS error -8172 (SEC_ERROR_UNTRUSTED_ISSUER)
* Peer's certificate issuer has been marked as not trusted by the user.
* Closing connection 0
curl: (60) Peer's certificate issuer has been marked as not trusted by the user.
More details here: http://curl.haxx.se/docs/sslcerts.html
Tous les certificats semblent être "marqués comme non fiables" (j'ai essayé cela avec une douzaine d'URL différentes). J'ai essayé de réintroduire les certificats CA en faisant cela :
yum --disablerepo="epel" reinstall ca-certificates
mais ça n'a pas aidé. Vous avez des idées ?