0

나는어떻게 CentOS 5.5에 RVM을 설치할 수 있습니까?

RVM https://rvm.io/rvm/install/를 설치하려면이 링크를 따라 다음 명령 \curl -L https://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 105  0 0:00:01 0:00:01 --:--:--  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. 

사람이이 문제를 해결하는 데 도움이 수를했다?

RVMCentOS5.5에 설치할 수있는 설치 설명서가 더 있습니까?

+0

curl -k -L https://get.rvm.io | bash -s stable – cggaurav

+1

-1은 curl 질문에 복사 된 오류 텍스트와 마찬가지로 1) 발생한 문제와 2) 문제 해결 방법을 설명합니다. – fvu

+0

시도한 컬 -k -L get.rvm.io | bash -s stable 여전히 동일한 오류가 발생했습니다 – Prince

답변

3

실행 :

sudo curl -L http://curl.haxx.se/ca/cacert.pem -o /etc/pki/tls/certs/ca-bundle.crt 

그것은 (내가 CentOS는 5.6에 테스트 한) 인증서를 업데이트합니다.

관련 문제