gpt4 book ai didi

ruby - 安装rvm时出现SSL证书错误

转载 作者:数据小太阳 更新时间:2023-10-29 07:57:00 26 4
gpt4 key购买 nike

您好,我正在尝试将 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 旧站点时产生的错误IE。 rvm.beginrescueend.com。给出的解决方案是使用

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

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

菲利普

最佳答案

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

你需要:

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

curl

我们需要 curl 来使用更新的证书。下载最新的 certificate bundle ,并配置 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)
#=> ...

升级libtool

使用 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 将此 tarball 打包到根目录 (/),因此这个单行文件会将所有内容解压到位。

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 和 friend 时,文档转换为 UTF-8 给了我警告,我不太在意。重要部件安装顺利。

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

关于ruby - 安装rvm时出现SSL证书错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10712151/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com