Linux Mint Türkiye

Yazılım => Yazılım Sorunları => Konuyu başlatan: Panta rhei - 23 Ekim 2016, 08:38:08

Başlık: [Çözüldü] curl sertifikası
Gönderen: Panta rhei - 23 Ekim 2016, 08:38:08
curl ile meteor yüklerken bu hatayı alıyorum birçok şey denedim farklı yerlerden fakat en son bu sorunda her şey düğümleniyor  apt  update ettim upgrade ettim yeniden kurdum sildim sertifikayı indirdim etc >ssl dosyasına içe aktardım yine sertifika hatası hep bu 60 no lu hata geliyor önerisi olan var mı?

Kod: [Seç]
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).
Başlık: Ynt: curl sertifikası
Gönderen: Butterfly - 23 Ekim 2016, 14:01:38
Aşağıdaki komutla curl sertifika sorgulamasını pasifleştirmek denenebilir.

Kod: [Seç]
echo insecure | tee ~/.curlrc
Sonrasında dilerseniz oluşturduğunuz .curlrc yapılandırma dosyasını aşağıdaki komutla silebilirsiniz.

Kod: [Seç]
rm -f ~/.curlrc
Başlık: Ynt: curl sertifikası
Gönderen: Panta rhei - 23 Ekim 2016, 22:58:05
Kod: [Seç]
echo insecure | tee ~/.curlrc
komutunu çalıştırdıktan sonra sorunum çözüldü,ikinci adamı yapmadım ,yapmam gereklimi bilmiyorum ama teşekkürler 1 haftadır sorunu çözmek için uğraşıyordum sonunda çözdüm teşekkürler tekrar

Kod: [Seç]
~ $ echo insecure | tee ~/.curlrc
insecure
 ~ $ curl https://install.meteor.com/ | sh
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  7786    0  7786    0     0   3459      0 --:--:--  0:00:02 --:--:--  3461
Downloading Meteor distribution
######################################################################## 100,0%

Meteor 1.4.1.3 has been installed in your home directory (~/.meteor).
Writing a launcher script to /usr/local/bin/meteor for your convenience.
This may prompt for your password.
[sudo] password for :

To get started fast:

  $ meteor create ~/my_cool_app
  $ cd ~/my_cool_app
  $ meteor

Or see the docs at:

  docs.meteor.com

~ $