openssl - win7下安裝sass失敗,提示ruby證書不對(duì)?
問題描述
步驟:1.
gem sources --remove https://rubygems.org/
2.
gem sources -a https://ruby.taobao.org/Error fetching https://ruby.taobao.org/:SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (https://rubygems-china.oss-cn-hangzhou.aliyuncs.com/specs.4.8.gz)
3.
gem sources -l*** CURRENT SOURCES ***
問題出處:http://stackoverflow.com/questions/4528101/ssl-connect-returned-1-errno-0-state-sslv3-read-server-certificate-b-certificat
https://gist.github.com/fnichol/867550
I had this same issue while working on a Ruby project. I am using Windows 7 64bit.I resolved this by:Downloading the cacert.pem file from http://curl.haxx.se/ca/cacert.pem.Saved that file to C:/RubyCertificates/cacert.pemThen set my environmental variable 'SSL_CERT_FILE' to 'C:/RubyCertificates/cacert.pem'source: https://gist.github.com/fnichol/867550
證書地址:http://curl.haxx.se/ca/cacert.pem
按照上面這位網(wǎng)友的方法配置了環(huán)境變量如下圖
再次執(zhí)行g(shù)em sources -a https://ruby.taobao.org/報(bào)錯(cuò)依舊
有誰遇到過,還是我的環(huán)境變量沒有配置對(duì)呢?
問題解答
回答1:現(xiàn)在淘寶的gem停止更新維護(hù)了,目前是ruby-china維護(hù)。gem source --remove https://ruby.taobao.org/ --add http://gems-china.org/
回答2:gem source --add http://rubygems.org/gem source -l
回答3:遇到同樣問題,按照https://gist.github.com/fnichol/867550 的步驟執(zhí)行后順利通過(需要注銷機(jī)子)。不過我是添加到系統(tǒng)變量,不知道是不是這個(gè)原因。
要添加到系統(tǒng)變量,重啟電腦再執(zhí)行切換淘寶源的命令就可以了
