when running a Rails server, I get the following error: no such file to load -- openssl

I try a solution I find online. I go to ~/.rvm/src/ruby-1.9.2-head/ext/openssl. I type : ruby extconf.rb, but I get the following:

=== OpenSSL for Ruby configurator ===
=== Checking for system dependent stuff... ===
checking for t_open() in -lnsl... no
checking for socket() in -lsocket... no
checking for assert.h... yes
=== Checking for required stuff... ===
checking for openssl/ssl.h... no
=== Checking for required stuff failed. ===
Makefile wasn't created. Fix the errors above.

I cannot use make nor make install.

link|improve this question
1  
i've only encountered this when using jruby, can you give some specifics on environment. I take it you are using rvm? Which ruby? – Jed Schneider Aug 12 '10 at 1:33
feedback

6 Answers

rvm pkg install openssl (older format - rvm package install openssl)
rvm pkg install iconv (older format - rvm package install iconv)
rvm remove 1.9.2
rvm install 1.9.2 -C --with-openssl-dir=$HOME/.rvm/usr,--with-iconv-dir=$HOME/.rvm/usr

Credit to http://www.isnull.com.ar/

link|improve this answer
9  
FYI - If anybody gets "ERROR: Unrecognized command line argument: 'package' ( see: 'rvm usage' )", it's because 'Package' has been changed to 'pkg'. So 'rvm pkg install XXXX' now. – John MacIntyre Aug 6 '11 at 0:06
2  
This is actually a workaround. The proper fix would be to install a development version of the OpenSSL library. See answers below. On Debian/Ubuntu: apt-get install libssl-dev – tbh Feb 29 at 17:59
feedback

http://rvm.beginrescueend.com/packages/openssl/

link|improve this answer
I had a similar problem and this solved it for me. – David Oneill Dec 1 '10 at 23:58
feedback

You have to install library for openssl/net/http run the following code and then install openssl and iconv.. Following code will work on UBUNTU..

sudo apt-get install libopenssl-ruby1.9.1 this is for ruby 1.9.1.

sudo apt-get install libopenssl-ruby for ruby 1.8.x

link|improve this answer
feedback

first check your rvm having the openssl package. Go to /usr/local/src/rvm/ruby-1.9.2-p290/

then go to ext/openssl.

type ruby extconf.rb If we found errors like this

enter code here
=== OpenSSL for Ruby configurator ===
=== Checking for system dependent stuff... ===
checking for t_open() in -lnsl... no
checking for socket() in -lsocket... no
checking for assert.h... yes
=== Checking for required stuff... ===
checking for openssl/ssl.h... no
=== Checking for required stuff failed. ===
Makefile wasn't created. Fix the errors above

Then install apt-get install libssl-dev.Once installed rub ruby extconf.rb.Now the openssl will get installed

link|improve this answer
libssl-dev solved my problem Thanks – yozloy Jan 8 at 6:31
Yep, I needed libssl-dev on Ubuntu. Thanks! – Ben Kreeger Mar 5 at 21:11
feedback

This solved the problem for me:

rvm pkg install openssl
rvm reinstall 1.9.2 --with-openssl-dir=$rvm_path/usr

And don't forget to change the ruby version to your version you are using. If you have an old rvm you may should update this at first too.

link|improve this answer
feedback

You might want to try running ruby-1.9.2-rc2 instead of head? not sure if it will solve this issue or not, but I did have a lot of problems trying to run under head

pretty sure the the command would look like - rvm install 1.9.2-rc2

you will need to re-install rails again

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.