Невозможно получить доступ к GitHub через curl - PullRequest
3 голосов
/ 13 февраля 2012

Попытка получить доступ к github с помощью следующей команды не удалась с ошибкой проверки. Что я должен сделать, чтобы обойти эту проблему

C:\software\curl-7.23.1-win64-ssl-sspi>curl -i https://api.github.com

curl: (60) SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
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.

Ответы [ 2 ]

2 голосов
/ 13 февраля 2012

Если вы не хотите использовать опцию --cacert (почему?), Как предлагается в тексте, используйте другое предложение о -k

>curl -i -k https://api.github.com
HTTP/1.1 302 Found
Server: nginx/1.0.4
Date: Mon, 13 Feb 2012 09:14:24 GMT
Content-Type: text/html;charset=utf-8
Connection: keep-alive
Status: 302 Found
X-RateLimit-Limit: 5000
ETag: "d41d8cd98f00b204e9800998ecf8427e"
Location: http://developer.github.com
X-RateLimit-Remaining: 4999
Content-Length: 0
2 голосов
/ 13 февраля 2012

С msysgit мне иногда приходится указывать снова http.sslcainfo для msysgit, чтобы правильно подобрать правильный файл сертификата CA.

 git config --system http.sslcainfo \bin/curl-ca-bundle.crt

(Также , представленный здесь и в комментарии страницы http GitHub smart )
Если это не работает:

  • попробуйте указать полный путь: git config --system http.sslcainfo /c/path/to/msysgit/bin/curl-ca-bundle.crt, какиллюстрируется этим сообщением в блоге :

Гораздо проще исправить это просто установить http.sslcainfo на абсолютный путь к файлу curl-ca-bundle.crt в вашей папке установки msysGitпапка:

$ git config --global http.sslcainfo "/c/Program Files (x86)/Git/bin/curl-ca-bundle.crt"

Я решил сделать это на уровне --global, чтобы при будущих установках msysGit этот параметр не перезаписывался.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...