使用ubuntu&rvm在ruby 1.9.2上的乘客安装中找不到Openssl支持ruby

这是一个奇怪的问题.在irb中,要求’openssl’返回true.进入’which passenger-install-nginx-module’返回的子目录并执行passenger-install-nginx-module.它返回对未找到ruby的openssl支持.按照以下说明成功构建ope...

这是一个奇怪的问题.在irb中,要求’openssl’返回true.进入’which passenger-install-nginx-module’返回的子目录并执行passenger-install-nginx-module.它返回对未找到ruby的openssl支持.

按照以下说明成功构建openssl:

sudo apt-get install libssl-dev
cd ~/.rvm/src/ruby-1.9.2-p290/ext/openssl  #ruby p290 installed by rvm
ruby extconf.rb
make && make install 

然而,passenger-install-nginx-module总是提示’openssl支持ruby not found’.

有关这个问题的任何想法?谢谢.

解决方法:

这是有用的(安装openssl支持ruby):

$rvm remove 1.9.2
$rvm pkg install openssl
$rvm install 1.9.2 --with-openssl-dir=$HOME/.rvm/usr

然后cd / vol / www / myapp / current,安装乘客.

$rvmsudo gem install passenger
$rvmsudo passenger-install-nginx-module

本文标题为:使用ubuntu&rvm在ruby 1.9.2上的乘客安装中找不到Openssl支持ruby

基础教程推荐