rails new app的时候出现了OpenSSL错误, Gem::RemoteFetcher::FetchError: SSL_connect return
ed=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed,Rails的网站上有对这个问题进行了详细的解释和提供的解决办法。
其中说到了OpenSSL版本的问题,需要1.0.1及以上版本。目前本机用的只是git中的一个openssl,版本是0.9.8e。所以决定安装一个OpenSSL.
1、下载OpenSSL source,网址:http://openssl.org/source/
选择[LATEST]的版本 (openssl-1.0.1c.tar.gz)
2、解压后,查看openssl-1.0.1c中的INSTALL.W32文件。可以使用几种编译器来进行编译。由于用的是visual studio,所以就看VC编译的那个部分。需要安装Perl。
打开Visual Studio命令提示 (从开始-所有程序-vs的文件夹中),由于没有安装NASM,所以只能用no-asm编译。
- perl Configure VC-WIN32 no-asm –prefix=c:\openssl
- ms\do_ms
- nmake -f ms\ntdll.mak
- nmake -f ms\ntdll.mak test
- nmake -f ms\ntdll.mak install
3、设置环境路径。方便windows直接使用。