Tagged Questions

1
vote
0answers
116 views

Rails and net-ssh/sftp

I am developing an app that need to be constantly connected to ssh. Every action open a new ssh connection and new sftp-server on the target host, I was wondering if there is a solution for keep ...
1
vote
0answers
128 views

Net::SSH works from production rails console, AuthenticationFailed from production webapp

I have a rails app where a user can submit a form and it goes off and connects to a remote server via ssh to call a script. Eventually I plan to use delayed_job or something like that but I can't get ...
1
vote
2answers
236 views

Store ssh connections in rails

I have a rails app that needs to communicate with a couple of servers through ssh. I'm using the Net::SSH library and it works great. I would like however to be able to cache/store the ssh connections ...
1
vote
1answer
352 views

Net::SSH connection fails from inside resque job

I have an app that sets creates EC2 instances - I have a resque task that will configure the server (via ssh) once it's up and running: Net::SSH.start(server.dns_name, 'root', :keys => ...
1
vote
6answers
3k views

'no such file to load — net/ssh' from rails Controller on Ubuntu

I have a very simple controller: require 'net/ssh' class MyController < ApplicationController def foo render :text => 'bar' end end But when I request ...
0
votes
2answers
45 views

Ruby Net:SSH Control Master?

I currently have a Ruby (Rails) application that needs to make a lot of short SSH connections. This works fine using the Ruby Net::SSH library, except that the app has to log in and negotiate keys ...
0
votes
1answer
142 views

Net::SFTP keeps throwing errors in resque

I am running rails 3.1rc4 and keep running into this error message in my resque queues uninitialized constant Net::SFTP With the exception "NameError" In my gemfile I have included: gem 'net-sftp' ...