Tagged Questions
5
votes
2answers
634 views
Generate SSH Keypairs (private/public) without ssh-keygen
I'm working on a Ruby/Rack application that needs to generate SSH keypairs. As much as I'd like to call ssh-keygen from the application, I can't because it's designed to run on Heroku and they don't ...
3
votes
1answer
685 views
ruby net-ssh login shell
Is there any way i can get a login shell in ruby using net-ssh?
Is that even possible?
By login shell i mean the ones the source /etc/profile..
2
votes
2answers
126 views
How do I run Net::SSH and AMQP in the same EventMachine reactor?
Some background: Gerrit exposes an event stream through SSH, see here. It's a cute trick, but I need to convert those events into AMQP messages. I've tried to do this with ruby-amqp and Net::SSH but, ...
2
votes
3answers
595 views
Using the ruby gem net-ssh-multi to execute a sudo command on multiple servers at once
In a previous question I figured out how to start a password-authenticated ssh sessions on multiple servers to run a single command. Now I need to be able to execute a "sudo" command. The problem ...
2
votes
2answers
200 views
How to SSH into a server and then SFTP from there to another server?
Here's the situation:
I have SSH access to ServerA
I have SFTP access to ServerB, but only from ServerA
I want to use Ruby to SSH into ServerA, then SFTP files from ServerB to ServerA.
I can ...
2
votes
2answers
479 views
Unable to connect remote host through net/ssh
This is pretty weird. I have my public key added at host machine. I can simply run
ssh -p <port> -l <username> hostt.com
which simply opens the remote shell. I can even run my ...
2
votes
1answer
474 views
Dynamic SSH tunnel using ruby
I would like to transform this unix command into a ruby script
ssh -2 -f -c blowfish -N -C user@ip -D 8080
This is to enable all my web traffic to be encrypted in a ssh tunnel.
I tried with ...
2
votes
3answers
753 views
Net::SSH::Multi using the session.exec, how do you get the output straight away? Ruby
So I've been trying to use the Net::SSH::Multi to login to multiple machines using the via SSH, and then executing shell commands on the remote machines with session.exec("some_command").
The Code:
...
2
votes
1answer
192 views
Having problems with net::ssh::multi can't require it! Ruby
So I've tried to install net::ssh::multi on mac using gems:
gems install net-ssh-multi
The installation went fine, however when I type:
require 'net/ssh/multi'
it says load error.
I have no idea ...
1
vote
0answers
41 views
Unable to create file with correct permissions using Net::SSH library
I'm having troubles correctly setting file permissions using the Net::SSH library. Although I can correctly set the file's permissions after creating it, I need the file to have the correct ...
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
1answer
60 views
Net-SSH Ruby Authentication
Can someone please shed some light on this issue I have with net-ssh. I am new to ruby and am working on this project.
How do I tell net ssh to use the username and password provided to connect to ...
1
vote
1answer
109 views
net-ssh and remote environment
I want to execute some remote command on my server using net-ssh library.
I have the following example:
Net::SSH::start(host, user, options = {:keys => '~/.ssh/id_rsa'}) do |ssh|
puts ...
1
vote
0answers
214 views
Cannot connect using keys with Ruby and net/ssh
I'm having trouble connecting via ssh from ruby using the 'net-ssh' gem, getting Net::SSH::AuthenticationFailed. The code is below
require 'net/ssh'
keys = ["path_to_private_key"]
...
1
vote
1answer
171 views
Net::SSH fails to connect
I've written a ruby script to do some work on a remote host. Running it from a Mac with 10.6. The IP works fine with a manual ssh -l devacct 10.10.10.10, but as you can see it fails in the script.
...
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
884 views
How to get exit status with Ruby's Net::SSH library?
I have a snippet of code, simply trying to execute a script on a remote server, in the event that it fails, I'd like to make a follow-up call, imagine this:
require 'rubygems'
require 'net/ssh'
...
1
vote
1answer
235 views
Executing Password Change over Ruby Net-SSH
I am looking to execute a password change over Net-ssh and this code seems to hang:
Net::SSH.start(server_ip, "user", :verbose => :debug ) do |session|
session.process.popen3("ls") do |input, ...
1
vote
1answer
1k views
Ruby net-ssh: How to authenticate with pubkey using a gateway
I am trying to run a script in several machines I have at work, to gather some information about them, such as which OS they're running, what services run on them, some configurations, etc. I have a ...
1
vote
3answers
489 views
Local installation of ruby / rubygems with no root access
I have a machine at work from wich I'd like to run a script that gathers some information about other machines. I want to do it in Ruby, since it's what I know best, but I've ran into some problems, ...
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
2answers
61 views
Marshaling Strings in Ruby
I'm encountering a bug using Capistrano. I've narrowed down the bug to literally this line of code:
puts message
Where "message" is a string that has come from a remove server via net-ssh.
So I'm ...
0
votes
0answers
56 views
Error on successful upload using ruby's net-ssh gem
When using net/ssh and net/scp gems I always get the following error:
2011-09-03 10:18:13,163 [0x0-0x41b41b].com.apple.dt.Xcode: /Library/Ruby/Gems/1.8/gems/net-scp-1.0.4/lib/net/scp.rb:352:in ...
0
votes
0answers
52 views
Using Ruby and net-ssh, how do I authenticate using the key_data parameter with Net::SSH.start?
I've read the net-ssh documentation, and I am still perplexed. I can authenticate manually (using ssh -i ...), and also by placing the key in a file and using the :keys parameter. However, I dont ...
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'
...
0
votes
1answer
267 views
Ruby net-ssh-multi: passing a password as a parameter at runtime
I am trying to use net-ssh-multi to run a command on a group of servers. For this taks, ssh-key authentication is not an option; a password has to be passed to each server defined in the session.use ...
0
votes
1answer
255 views
net-ssh and ActiveRecord 3: bringing it all together
I'm working on a small Ruby program that will connect to a remote MySQL Bugzilla database, perform a query of records, and email details of those records to a group on a daily basis.
So far, I've ...
0
votes
2answers
229 views
How do I process a URL in ruby to extract the component parts (scheme, username, password, host, etc)?
I'm trying create a program using ruby (and Net::SSH) to connect to servers and perform some tasks. The details of the server are to be provided as something like:
ssh://user:pass@host:port (for a ...
0
votes
4answers
2k views
Using Net SSH to execute commands with sudo
I've been trying to write a small library using Thor to help assist me in quick creating new projects and sites. I wrote this small method:
def ssh(cmd)
Net::SSH.start( server_ip, user, :port ...
0
votes
0answers
444 views
Local-to-remote port forwarding using Ruby/Net::SSH for remote db connection
I'm accessing a remote database using a local-to-remote port forwarding from my windows box. It works like a charm using putty for port forwarding but it fails when I try to forward using ...
0
votes
2answers
185 views
Can i Use the value of a variable from within a ruby script inside ssh.exec()
If i have a # {} , like #{results}, in the snippet below:
results = Array.new
f = open("/Users/kahmed/messages", "r")
f.each_line ...
0
votes
5answers
743 views
Respond to a SSH prompt before first command with ruby and Net::SSH
I'm trying to connect, using Net::SSH, to a server that immediately after
login executes a script that requires input from user. The user has to enter "1" or "2" and will receive some data via in the ...
0
votes
3answers
2k views
Using Ruby and SCP/SSH, how to determine if a file exists before uploading a copy
I'm uploading a file to a remote server using SCP, but what's the proper way of seeing if that file exists before doing so?
0
votes
1answer
291 views
What to do when Net-SSH complains about exec! method missing?
This is driving me crazy. I run into this every now and then on a new ubuntu/debian server.
Basically I can't do a exec! through net-ssh. Note, that I can require 'net/ssh' perfectly fine.
sample ...