Having trouble installing rails - SSL issues

View: New views
6 Messages — Rating Filter:   Alert me  

Having trouble installing rails - SSL issues

by Rafael Roque-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


I'm trying to install rails on a Debian Etch box. When I run gem install
rails --include-dependencies, however, I get this:

ERROR:  While executing gem ... (Gem::Exception)
    SSL is not installed on this system

The problem is, OpenSSL IS installed on my system. I even tried to
reinstall it to make sure, but everything was at its newest version. I
read in another thread that  gem shouldn't need this anyway, unless I
request strict security when I start the installation.

Anybody know what's up?

Cheers
--
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@...
To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Having trouble installing rails - SSL issues

by Isak Hansen :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


On 11/22/07, Sean Cahoon <rails-mailing-list@...> wrote:

>
> I'm trying to install rails on a Debian Etch box. When I run gem install
> rails --include-dependencies, however, I get this:
>
> ERROR:  While executing gem ... (Gem::Exception)
>     SSL is not installed on this system
>
> The problem is, OpenSSL IS installed on my system. I even tried to
> reinstall it to make sure, but everything was at its newest version. I
> read in another thread that  gem shouldn't need this anyway, unless I
> request strict security when I start the installation.
>
> Anybody know what's up?
>

Do you also have the libssl-dev package installed?

I recon the library provides a lot of 'crypto related' algorithms
beyond just SSL connections, e.g. message digests and whatnot, which
have a lot of uses.


Isak


> Cheers
> --
> Posted via http://www.ruby-forum.com/.
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@...
To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Having trouble installing rails - SSL issues

by Rafael Roque-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


Sean Cahoon wrote:

> I'm trying to install rails on a Debian Etch box. When I run gem install
> rails --include-dependencies, however, I get this:
>
> ERROR:  While executing gem ... (Gem::Exception)
>     SSL is not installed on this system
>
> The problem is, OpenSSL IS installed on my system. I even tried to
> reinstall it to make sure, but everything was at its newest version. I
> read in another thread that  gem shouldn't need this anyway, unless I
> request strict security when I start the installation.
>
> Anybody know what's up?
>
> Cheers


You must install  libopenssl-ruby
(I had the same problem installing on Debian distri apt-get install
libopenssl-ruby )
--
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@...
To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Having trouble installing rails - SSL issues

by Rafael Roque-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


You guys are great. libopenssl fixed it right up. Thanks.
--
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@...
To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Having trouble installing rails - SSL issues

by Smitty-5 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


I'm running into this same issue on a SUSE 10.1 box.  In looking
around, it appears that libopenssl-ruby is a debian-only package, but
I'm kinda new to linux so I'm probably missing something.

Any help is much appreciated.

Current Progress:
Installed Ruby
Installed RubyGem
installed openssl

The output of 'sudo gem install rails --include-dependencies' or 'sudo
gem install rails -y' is:

Bulk updating Gem source index for: http://gems.rubyforge.org
ERROR:  While executing gem ... (Gem::Exception)
    SSL is not installed on this system


Thanks,
Smitty



On Nov 25, 8:29 pm, Sean Cahoon <rails-mailing-l...@...>
wrote:
> You guys are great. libopenssl fixed it right up. Thanks.
> --
> Posted viahttp://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@...
To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---


Re: Having trouble installing rails - SSL issues

by Smitty-5 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


After a little further investigation I figured out that I needed to
install libopenssl-dev (or devel).  After installing that, then going
into the ruby source /ext/oppenssl and running:

ruby extconf.rb
make
make install

I was able then to run:

sudo gem install rails --include-dependencies


It seems to have installed successfully:

>rails -v
Rails 2.0.1

Thanks anyway...


On Dec 17, 8:18 am, Smitty <smith.hayw...@...> wrote:

> I'm running into this same issue on a SUSE 10.1 box.  In looking
> around, it appears that libopenssl-ruby is a debian-only package, but
> I'm kinda new to linux so I'm probably missing something.
>
> Any help is much appreciated.
>
> Current Progress:
> Installed Ruby
> Installed RubyGem
> installed openssl
>
> The output of 'sudo gem install rails --include-dependencies' or 'sudo
> gem install rails -y' is:
>
> Bulk updating Gem source index for:http://gems.rubyforge.org
> ERROR:  While executing gem ... (Gem::Exception)
>     SSL is not installed on this system
>
> Thanks,
> Smitty
>
> On Nov 25, 8:29 pm, Sean Cahoon <rails-mailing-l...@...>
> wrote:
>
>
>
> > You guys are great. libopenssl fixed it right up. Thanks.
> > --
> > Posted viahttp://www.ruby-forum.com/.- Hide quoted text -
>
> - Show quoted text -
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@...
To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@...
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---