Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

certificate verify failed (Faraday::SSLError) #253

Closed
threewordphrase opened this issue Jul 10, 2015 · 38 comments
Closed

certificate verify failed (Faraday::SSLError) #253

threewordphrase opened this issue Jul 10, 2015 · 38 comments
Assignees
Labels
type: question Request for information or clarification. Not an issue.

Comments

@threewordphrase
Copy link

OSX 10.10.3, Ruby 2.2.1p85, gem version 0.9.pre1

Full error:

/Users/username/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http.rb:923:in connect': SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (Faraday::SSLError) from /Users/asmith/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http.rb:923:inblock in connect'
from /Users/asmith/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/timeout.rb:74:in timeout' from /Users/asmith/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http.rb:923:inconnect'
from /Users/asmith/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http.rb:863:in do_start' from /Users/asmith/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http.rb:852:instart'
from /Users/asmith/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/http.rb:1375:in request' from /Users/asmith/.rvm/gems/ruby-2.2.1/gems/faraday-0.9.1/lib/faraday/adapter/net_http.rb:82:inperform_request'
from /Users/asmith/.rvm/gems/ruby-2.2.1/gems/faraday-0.9.1/lib/faraday/adapter/net_http.rb:40:in block in call' from /Users/asmith/.rvm/gems/ruby-2.2.1/gems/faraday-0.9.1/lib/faraday/adapter/net_http.rb:87:inwith_net_http_connection'
from /Users/asmith/.rvm/gems/ruby-2.2.1/gems/faraday-0.9.1/lib/faraday/adapter/net_http.rb:32:in call' from /Users/asmith/.rvm/gems/ruby-2.2.1/gems/faraday-0.9.1/lib/faraday/request/url_encoded.rb:15:incall'
from /Users/asmith/.rvm/gems/ruby-2.2.1/gems/signet-0.6.1/lib/signet/oauth_2/client.rb:957:in fetch_access_token' from /Users/asmith/.rvm/gems/ruby-2.2.1/gems/signet-0.6.1/lib/signet/oauth_2/client.rb:983:infetch_access_token!'
from run.rb:17:in `

'

I am able to hotwire with this at the top:

require 'openssl'
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE

...but that kinda sucks.

@sqrrrl
Copy link
Contributor

sqrrrl commented Jul 10, 2015

See #235 for a workaround. The cert bundle in this library has the correct roots. Setting an env variable will have signet pick it up.

I'll take a look at cleaning up signet so it picks up the correct roots by default next week.

@radar
Copy link

radar commented Jul 21, 2015

I was getting this issue on my Mac too. brew update and then brew upgrade openssl fixed it.

@radar
Copy link

radar commented Jul 30, 2015

@sqrrrl I think this issue can be closed now as it can be fixed by updating openssl.

@asamasoma
Copy link

@sqrrrl Updating openssl didn't solve this problem for me. I have to set SSL_CERT_FILE to the bundled cacerts.pem file.

@threewordphrase
Copy link
Author

FWIW, this is what worked for me:

cert_path = Gem.loaded_specs['google-api-client'].full_gem_path+'/lib/cacerts.pem'
ENV['SSL_CERT_FILE'] = cert_path

@Vanuan
Copy link

Vanuan commented Sep 24, 2015

Worth linking: rvm/rvm#3330

@stevestofiel
Copy link

FWIW, this is what worked for me:

cert_path = Gem.loaded_specs['google-api-client'].full_gem_path+'/lib/cacerts.pem'
ENV['SSL_CERT_FILE'] = cert_path

Thanks crypticsymbols! That worked for me as well on:

ruby 2.2.1p85 (2015-02-26 revision 49769) [x86_64-darwin14] on OS X 10.10.5)
google-api-client (0.8.6)
googleauth (0.4.2)
signet (0.6.1)
jwt (1.5.1)

@sirkosi
Copy link

sirkosi commented Oct 15, 2015

@crypticsymbols thanks a lot, that works for me too!

@Vanuan
Copy link

Vanuan commented Oct 15, 2015

It's far better not to touch any code and fix the damn OS X's ruby 2.2.1 binary.

@threewordphrase
Copy link
Author

I agree with @Vanuan, code was just a stopgap measure and the other approach is better.

@psk11
Copy link

psk11 commented Nov 5, 2015

@Vanuan it does not worked for me

@Yenwod
Copy link

Yenwod commented Nov 18, 2015

Here is what worked for me:

I'm running OS X 10.11.1, Ruby 2.2.1, openssl 1.0.2d_1

Upgrading to Ruby 2.2.3 fixed the problem.

@dblommesteijn
Copy link

A system wide solution would be this (for Yosemite and Ruby 2.2.1):

Downloading this http://curl.haxx.se/ca/cacert.pem, and saving it replacing /usr/local/etc/openssl/cert.pem. Add export SSL_CERT_FILE=/usr/local/etc/openssl/cert.pem to your .bash_profile. All net::http will pickup on ENV['SSL_CERT_FILE'].

RVM and ruby seems to have an outdated CA cert.

@jb41
Copy link

jb41 commented Feb 22, 2016

@dblommesteijn thank, works for me

@bgerd
Copy link

bgerd commented Mar 10, 2016

@stevestofiel went with your fix thanks!

i'm running stock: ruby 2.2.1p85.

@katrusso
Copy link

@dblommesteijn Thanks, this solution worked for me. :)

@flyfy1
Copy link

flyfy1 commented Mar 29, 2016

Just in case anyone still facing issue.. upgrading to Ruby 2.3.0 helped me. (was in 2.2.3)

@schanami
Copy link

Same issues here that everyone else went through.

I'm on El Capitan 10.11 and using version ruby 2.2.0

Tried the cert.pem replacement
Tried switching to 2.1.0 and 2.3.0
Tried: rvm osx-ssl-certs update all

What worked for me:
rvm reinstall 2.2.0 --disable-binary
gem pristine nokogiri --version 1.6.7.2

@mike0416
Copy link

like @flyfy1 upgrading to Ruby 2.3.0 fixed the issue for me as well

@p55
Copy link

p55 commented Mar 31, 2016

upgrading ruby to 2.3.0 solved it for me as well

@aral
Copy link

aral commented Mar 31, 2016

With rvm (with Ruby 2.2.3 installed), on OS X, what fixed it for me was:

rvm requirements

@arek-rst
Copy link

@schanami helped me rvm reinstall 2.2.2 --disable-binary thx

@danebez
Copy link

danebez commented Apr 12, 2016

The solution for me on OS X 10.11.4, Ruby 2.1.2 was running rvm reinstall ruby-2.1.2 --disable-binary or switching to 2.3.0. This is perplexing as colleagues who had the app already set up on their dev machines and have the same OS and Ruby versions had this problem in 2015 but could solve it by simply downloading http://curl.haxx.se/ca/cacert.pem and ensuring that Ruby 2.1.2 was installed with the --with-openssl-dir=$rvm_path/usr flag. Can anyone can explain why installing Ruby from sources solves the problem?

To clarify, none of the following solved the issue:

  • downloading http://curl.haxx.se/ca/cacert.pem, renaming it to cert.pem & pointing to it inside Rails (ENV['SSL_CERT_FILE'] = '/usr/local/etc/openssl/cert.pem') or with a system environment variable
  • running rvm requirements
  • re-installing Ruby 2.1.2: rvm remove 2.1.2 && rvm pkg install openssl && rvm install 2.1.2 --with-openssl-dir=$rvm_path/usr

@Vanuan
Copy link

Vanuan commented Apr 12, 2016

Can anyone can explain why installing Ruby from sources solves the problem?

Because pre-build version doesn't distinguish between different OS X versions (has wrong paths hardcoded). Newer OS X has a different SSL subsystem.

@sony-mathew-fd
Copy link

Nice explanation given here : https://toadle.me/2015/04/16/fixing-failing-ssl-verification-with-rvm.html

@nataliachodelski
Copy link

What worked for me with the error was:

rvm reinstall 2.2.0 --disable-binary
then
rvm requirements

none of the commands higher up this thread worked for some reason.

@kschutt
Copy link

kschutt commented Jun 14, 2016

@nchodelski thanks! this also worked for me on 2.2.3

@fenec
Copy link

fenec commented Jun 21, 2016

RVM > 1.9.1 comes with the method for updating certificates:
rvm osx-ssl-certs update all

credits: http://railsapps.github.io/openssl-certificate-verify-failed.html

@dblommesteijn
Copy link

@fenec this does not always solve the issue. I've given up fixing rvm and have switched to rbenv.

@nataliachodelski
Copy link

I had some issues with this too. When i re installed a different version of
rvm I was able to build and deploy using fastlane (the reason I was trying
to fix my SSL errors in the first place). But it broke another feature for
me. and when i had managed to fix the second error I then had the SSL
authentication issue again. So seems like i can only choose one thing to
work.

I wish i knew what version to install to fix both errors at the same time.

On 22 June 2016 at 08:07, Dennis Blommesteijn notifications@github.com
wrote:

@fenec https://github.com/fenec this does not always solve the issue.
I've given up fixing rvm and have switched to rbenv.


You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
#253 (comment),
or mute the thread
https://github.com/notifications/unsubscribe/AKGbMnqRYVXdm5eaDPxGHhyILwdzwyzvks5qOU_GgaJpZM4FWHjO
.

@zegomesjf
Copy link

I fix the error with
rvm reinstall ruby-2.1.5 --with-openssl-dir=/usr/local

@yossi-eynav
Copy link

Thanks @zegomesjf!

@george-carlin
Copy link

I'm not using google-api-ruby-client but I just had this same Faraday error while trying to setup FB login with OAuth on my app, and found this issue. If any future Googlers see this, just writing this to confirm that brew upgrade and brew upgrade openssl worked me for too ;)

@sandeep-patle1508
Copy link

I have used in this way and it worked for me.
connection = Faraday.new("http://example.com")
connection.ssl.verify_mode = OpenSSL::SSL::VERIFY_NONE

@bryszard
Copy link

bryszard commented Sep 20, 2017

Thank you @sony-mathew-fd. The solution pointed by you (https://toadle.me/2015/04/16/fixing-failing-ssl-verification-with-rvm.html) helped a lot. What I had to do:

  1. Recompile ruby - rvm reinstall 2.2.0 --disable-binary
  2. Download new certs from http://curl.haxx.se/ca/cacert.pem and put it to /usr/local/etc/openssl/cert.pem
  3. Add export SSL_CERT_FILE=/usr/local/etc/openssl/cert.pem to .bash_profile

I encountered this problem while I was using google-cloud-ruby gem and Ruby 2.4.0.

@brauliobo
Copy link

Confirmed this problem with jruby 9.1.13.0

@vmardian
Copy link

vmardian commented Jan 3, 2018

Using OS X 10.10.5 and Ruby 2.3.1 via RBENV, the issue was fixed by performing steps #2 and #3 from @bryszard's response.

@geordgez
Copy link

geordgez commented Jun 1, 2018

FWIW switching to a different (open) wifi network may help.

I'm no expert in networking/certificates but I recently ran into the same issue when I was trying to hit a Ruby backend with an OAuth callback. My environment was fine (macOS Sierra 10.12.6 + Docker Ruby 2.3.1 base image) and my local certificates were alright but the secured network I was on was modifying certificates to make it unfriendly for the Ruby app.

Just wanted to mention in case someone exhausted all the local options like me and was still getting:
Faraday::SSLError (SSL_connect returned=1 errno=0 state=error: certificate verify failed)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: question Request for information or clarification. Not an issue.
Projects
None yet
Development

No branches or pull requests