vote up 1 vote down star

I am trying to do 'rake db:migrate' and getting the error message 'no such file to load -- openssl'. Both 'openssl' and 'openssl-devel' packages are installed. Others on Debian or Ubuntu seem to be able to get rid of this by installing 'libopenssl-ruby', which is not available for RedHat. Has anybody run into this and have a solution for it?

flag

3 Answers

vote up 0 vote down

There is probably a gem you are missing. Can you provide the stack trace and the line of code where it originates?

Re-run rake with --trace to get the stack trace printed.

EDIT: Also what version of Ruby are you running? openssl.rb is in my 1.8.6 install

link|flag
vote up 2 vote down

it seems you need to make the ruby header file

go into the openssl directory and:

ruby extconf.rb
cd ../..
make
make install

See here

link|flag
This answer assumes that you've compiled your own ruby binary. The extconf.rb file is located in the ruby-X.X.X/ext/openssl/ directory. – Steropes Oct 1 '08 at 21:26
vote up 2 vote down

I had this problem on Ubuntu, after upgrading to 8.10. The solution for Ubuntu was

sudo apt-get install libopenssl-ruby

link|flag
Perfect. thanks! – Darrel Feb 17 at 0:23

Your Answer

Get an OpenID
or

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