3

您好我正在尝试将 RVM 安装到 Mac OsX v 10.4.11 上。

在终端中输入:

curl -L get.rvm.io | bash -s stable

我收到这条消息:

% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   185  100   185    0     0    387      0 --:--:-- --:--:-- --:--:--     0
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). The default
 bundle is named curl-ca-bundle.crt; 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.

我在 StackOverflow 上发现了类似的问题,例如Curl Certificate Error when Using RVM to install Ruby 1.9.2,但是 a)这是首先安装 RVM 的问题,而不是使用 RVM 安装新版本的 Ruby,更重要的是 b)类似问题的最佳答案表明这是在引用 RVM 的旧站点时生成的错误,即。rvm.beginrescueend.com。给出的解决方案是使用

curl -L get.rvm.io | bash -s stable

这是我正在使用的,但对我来说,它正在生成此错误消息,因此我被卡住了。任何帮助将不胜感激,谢谢

菲利普

4

3 回答 3

3

我在 Mac OS X Server 10.4.11 上成功安装了 RVM。

你需要:

  • Xcode 2.5,Tiger 的最新 Xcode
  • 已安装、配置和更新MacPorts
  • gcc-4.2 Apple build 5566,稍后说明...

卷曲

我们需要 curl 来使用更新的证书。下载最新的证书包,并配置 curl 以使用它。注意cacert.pem路径必须是绝对的。

mkdir ~/.certs
curl -o ~/.certs/cacert.pem http://curl.haxx.se/ca/cacert.pem
echo cacert = \"/Users/your-username/.certs/cacert.pem\" >> ~/.curlrc

升级 bash

接下来,要正确执行 RVM 的安装脚本,我们必须升级 bash。我使用了最新版本,4.2 版。

mkdir ~/tmp
cd ~/tmp
curl -C - -O ftp://ftp.cwru.edu/pub/bash/bash-4.2.tar.gz # letter O, not a zero
tar zxf bash-4.2.tar.gz
cd bash-4.2
./configure && make && sudo make install
sudo bash -c "echo /usr/local/bin/bash >> /private/etc/shells"
chsh -s /usr/local/bin/bash
cd /bin
sudo mv bash bash-old
sudo ln -s /usr/local/bin/bash bash

登录到一个新的 shell,你应该正在运行 bash 4.2。

bash --version
#=> GNU bash, version 4.2.0(1)-release (powerpc-apple-darwin8.11.1)
#=> ...

升级库工具

使用 macports 升级 libtool 包。这一步是正确配置 yaml 所必需的。

确保 macports 是最新的并且可以使用。

sudo port install libtool

这将花费大量时间,因为要编译许多依赖项。拿一个三明治。


安装 gcc-4.2

您的 rubies 将无法编译,因为它尝试使用 Xcode 2.5 不提供的 gcc-4.2。我们必须自己安装。从 AT&T Research 下载:

curl -C - -O http://r.research.att.com/tools/gcc-4.2-5566-darwin8-all.tar.gz

Apple 相对于根目录/

sudo tar fvxz gcc-4.2-5566-darwin8-all.tar.gz -C /

完毕。


安装 RVM。

curl -L get.rvm.io | bash -s stable --ruby

RVM 应该安装,yaml 和 ruby​​ 应该编译,你应该很高兴。

在安装 rails 和朋友时,文档转换为 UTF-8 给了我警告,我不太担心。安装的重要部件没有打嗝。

我在 Mac Server G4 (QS2002) DP 1.0 上运行 Mac OS X Server 10.4.11 Build 8S2169。

于 2012-06-05T10:54:28.097 回答
1

对你有用echo insecure >> ~/.curlrc吗?我实际上不使用Mac。

于 2012-05-23T01:16:07.757 回答
0

只需阅读消息,它会告诉您该怎么做。

David 的建议会起作用,但请记住,它会将您通过 curl 或 git 下载的所有内容带入不安全模式 - 不验证证书是否受信任。

作为提示,您可能会得到这个答案也很有帮助(比您得到的错误更多):

于 2012-05-23T05:11:49.260 回答