Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 255 Vote(s) - 3.6 Average
  • 1
  • 2
  • 3
  • 4
  • 5
SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed

#31
Just run the `certified-update` executable and this command will make sure that all your certificates are up-to-date.

This worked for my Ruby on Rails application in Windows.
Reply

#32
I had to reinstall Ruby. This should solve it if you are using Ubuntu & rbenv:

rbenv uninstall your_version

# install dependencies
sudo apt-get install autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm3 libgdbm-dev

# install ruby with patch
curl -fsSL

[To see links please register here]

| \
rbenv install --patch your_version

For more information, check out the [rbenv Wiki](

[To see links please register here]

) on the matter.
Reply

#33
The latest rubygem-update-2.6.7 has resolved this issue.

[To see links please register here]

Reply

#34
What worked for me is a combination of answers, namely:

<!-- language: lang-sh -->

# Reinstall OpenSSL
brew update
brew remove openssl
brew install openssl
# Download CURL CA bundle
cd /usr/local/etc/openssl/certs
wget

[To see links please register here]

/usr/local/opt/openssl/bin/c_rehash
# Reinstall Ruby from source
rvm reinstall 2.2.3 --disable-binary
Reply

#35
A one liner fixes it for Windows in an Admin prompt

`choco install wget` (first see [chocolatey.org][1])

wget

[To see links please register here]

-O C:\cacert.pem && setx /M SSL_CERT_FILE "C:\cacert.pem"


Or just do this:


gem sources -r

[To see links please register here]

gem sources -a

[To see links please register here]


Milanio's method:

gem sources -r

[To see links please register here]

gem sources -a

[To see links please register here]

gem update --system
gem sources -r

[To see links please register here]

gem sources -a

[To see links please register here]


gem install [NAME_OF_GEM]

[1]:

[To see links please register here]

Reply

#36
I had this same issue while working on a Ruby project. I am using Windows 7 64bit.

I resolved this by:

1. Downloading the **cacert.pem** file from

[To see links please register here]

.
2. Saved that file to **C:/RubyCertificates/cacert.pem**
3. Then set my environmental variable "SSL_CERT_FILE" to "C:\RubyCertificates\cacert.pem"

source:
Reply

#37
Here's how you can fix it on Windows:

[To see links please register here]

(created by Fletcher Nichol)

*Excerpt:*

> ## The Manual Way (Boring)
>
> Download the `cacert.pem` file from

[To see links please register here]

. Save this file to `C:\RailsInstaller\cacert.pem`.
>
> Now make ruby aware of your certificate authority bundle by setting `SSL_CERT_FILE`. To set this in your current command prompt session, type:
>
> set SSL_CERT_FILE=C:\RailsInstaller\cacert.pem
>
> To make this a permanent setting, add this in your [control panel](

[To see links please register here]

).
Reply

#38
Having this issue with Ruby 2.3.4:

I solved it uninstalling OpenSSL and reinstalling it. I ran:

`brew uninstall --ignore-dependencies openssl`

then

`brew install openssl`

It did the job.
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through