7

我在 openshift 上有一个 nodejs 应用程序,我们在本地开发时使用 rhc port-forward 命令连接到我们的数据库。

我们已经实现了通过 google 和 facebook 对用户进行身份验证的护照。我已经验证了自己,我们仍然可以使用 rhc 命令。我的伙伴最近通过 facebook 对自己进行了身份验证,在那之后不久(约 1 周),我们遇到了这个错误。不知道这是否完全相关,但包括在内也无妨。

Connection to openshift.redhat.com failed: A secure connection could not be established to the   server
(SSL_connect returned=1 errno=0 state=SSLv3 read server hello A: sslv3 alert handshake failure). You may
disable secure connections to your server with the -k (or --insecure) option
'https://openshift.redhat.com/broker/rest/api'.

If your server is using a self-signed certificate, you may disable certificate checks with the -k (or
--insecure) option. Using this option means that your data is potentially visible to third parties.

关于如何解决这个问题的任何想法?我在其他堆栈问题上看到过这个错误,但是我看到的每个问题,提出问题的人都在使用 ruby​​。

4

3 回答 3

13

这很可能是 POODLE SSLv3 崩溃的结果。您可以通过更新 httpclient ruby​​ gem 来修复它。在命令行类型:

sudo gem update httpclient

或者您也可以通过将以下内容添加到您的 .openshift/express.conf 文件来修复它:

ssl_version=tlsv1

这两个修复基本上都告诉您的应用使用 TLSv1 而不是 SSLv3。

于 2014-10-22T19:52:14.703 回答
7

rhc gem 已更新,请运行gem update rhc,您将获得最新的固定版本。

于 2014-10-23T03:27:07.273 回答
1

我在使用 ruby​​ 1.9.3 和 httpclient 2.3.4.1 的 Windows 上遇到了同样的问题

gem update httpclient将其更新为 2.5.3.3,从而解决了该问题。

于 2014-11-19T18:35:41.597 回答