A pure-Ruby implementation of the SSH2 client protocol. It allows you to write programs that invoke and interact with processes on remote servers, via SSH2.
0
votes
2answers
61 views
Net::SSH::Perl module: Executing multiple commands
I want to execute two commands in a single line using Net::SSH::Perl module..
Actually first command sets some env variable, second runs some command which needs the env variable to be set for that ...
0
votes
1answer
51 views
AuthenticationFailed net-ssh ruby
When I'm trying to Net::SSH.start to my debian ssh server and transfer a files, every time I've a very strange error message - `start': Net::SSH::AuthenticationFailed, but all the authentication data ...
3
votes
1answer
217 views
How to debug a cap deploy error and find log files for Net::SSH::ChannelOpenFailed network error?
I run into Net::SSH::ChannelOpenFailed error when deploying (the error occurs at capistrano's assets:precompile task - see assets.rb below) and only on one server of two. Both servers have similar ...
1
vote
0answers
39 views
Net::SSH forward not working
I want to forward a port via Net::SSH like this:
ssh = Net::SSH.start('host', 'user', config: true)
ssh.forward.local(3333, 'localhost', 80)
ssh.loop
which to my understanding translates to the ...
0
votes
1answer
108 views
Using net/ssh/gateway to establish ssh tunnel to mysql
I'm attempting to establish a tunnel to a remote server via ssh, and then use the forwarded port to access MySQL.
I'm using it currently like this
$gateway = Net::SSH::Gateway.new('target.server', ...
0
votes
2answers
120 views
Setup Varnish server with Rubber gem
I am trying to instal varnish on a cache server. My following stack with be...
HA Proxy Servers ----> Cache (Varnish) Servers ----> Nginx + Unicorn Servers
I have been able to correctly setup all ...
3
votes
4answers
2k views
Can't install chef, gem version conflict with net-ssh net-ssh-multi net-ssh-gateway
Using rvm, and an empty gemset, I get this:
$ gem install chef --no-ri --no-rdoc
ERROR: While executing gem ... (Gem::DependencyError)
Unable to resolve dependencies: chef requires net-ssh ...
1
vote
2answers
204 views
Net-ssh timeout for execution?
In my application I want to terminate the exec! command of my SSH connection after a specified amount of time.
I found the :timeout for the Net::SSH.start command but following the documentation this ...
0
votes
1answer
234 views
Proxy tunnel through multiple systems with Ruby Net::SSH
I need some suggestions on how to use the Ruby Net::SSH and Net::SCP gem to proxy through several systems in order to execute commands or copy files.
It's very similar (if not almost exactly the ...
0
votes
1answer
87 views
Net::SSH could not settle on encryption_client algorithm
sftp through Ruby fails but works if you type the commands (ssh/sftp) by hand. What could be wrong here? I had to put a puts inside sftp.rb/rescue due to this bug to print the real error.
* ipaddr = ...
0
votes
0answers
137 views
Net::SSH timeout
I am unable to connect to any host via SSH using the Net::SSH module:
require 'net/ssh'
t = Net::SSH.start('host', 'username')
I have tried several different hosts in which I have the ssh keys set ...
1
vote
1answer
154 views
Net/SSH.start doesn't raise an exception if it fails
I'm using Net::SSH to connect to another server. It works fine, but I want to be able to deal with situations where it can't connect. Documentation for the method mentions nothing about exceptions, ...
1
vote
0answers
88 views
Ruby Net::SFTP error when using session.exec
I'm getting some unexpected behavior from Net::SFTP in Ruby (ruby 1.9.3p194).
Variant #1 fails. It starts an SFTP block and uses session.exec! to run a shell command.
Net::SFTP.start(...) do |sftp|
...
0
votes
1answer
123 views
ruby net/ssh failing to execute rake commands remotely
Hi I'm trying to use the ruby net/ssh gem (2.0.24) to connect to a remote server and run a rake task. I can run other simple tasks using the script outlined below, but rake is failing.
This is my ...
1
vote
2answers
98 views
How to properly implement Net::SSH port forwards
I have been trying to get port forwarding to work correctly with Net::SSH. From what I understand I need to fork out the Net::SSH session if I want to be able to use it from the same Ruby program so ...
3
votes
1answer
385 views
How to net-ssh sudo su in Ruby
I'm trying to figure out how to a send chain of multiple net-ssh commands after a sudo su - #{su_user} in Ruby.
My current code is below, and hangs with the sudo su command, even after the send_data ...
2
votes
0answers
108 views
Why does net-ssh-2.6.2 fail its own unit tests?
I've installed ruby (1.9.3) on both my Mac (running OSX 10.8.2) and PC (running Windows 7). I've installed (using "gem install ...") net-ssh, test-unit, mocha, and echoe. The install seems clean (the ...
1
vote
0answers
125 views
Ruby: Net::SSH::Multi using keys
I'm having problems getting Net::SSH::Multi library to work, it should connect to each box and run that command, I'm trying to get the output.
Here's my code:
#!/usr/bin/env ruby
require 'rubygems'
...
0
votes
2answers
155 views
How to create an RVM environment on a server through net-ssh?
I have a script which is installing Ruby/RVM (and more) on my server to get an environment ready to deploy a Rails project. This script is in ruby and use the net-ssh lib to do the job.
After having ...
2
votes
0answers
218 views
Run MySQL query over multiple SSH tunnels?
I have a situation somewhat similar to "How to create a ssh tunnel in ruby and then connect to mysql server on the remote host."
From my local machine, I want to run a query against a production ...
0
votes
0answers
91 views
How to use ssh-keygen2 authentication with Net::SSH (ruby)?
My work uses ssh-keygen2 to create public/private keys. The end result is the new ~/.ssh2 directory is a bit different than the original ~/.ssh directory. For example, there is ~/.ssh2/authentication ...
0
votes
1answer
96 views
How to access commands in bin folder through ruby net-ssh?
I'm using net-ssh to connect to my server and need to run some ruby command.
The following doesn't work:
puts ssh.exec!("ruby -v")
bash: ruby: command not found
I always need to specify the full ...
0
votes
0answers
193 views
How to exit from on_data in Net::SSH
Short/long story,,
I was suffering from keep PTY open and sending more than one command through pty. those commands could be related such as changing directory then work in it. ["cd /tmp" , "mkdir ...
1
vote
1answer
208 views
Ruby Net::SSH get Exit Status in PTY
I'm trying to write in some functionality into the Net::SSH::Telnet Library for a project of mine. Specifically I need to be able to read the exit-status of any command that I write.
Here's the ...
0
votes
1answer
241 views
ruby net-ssh calling bash script with interactive prompts
I have a problem that I hope you can help me with
I’m trying to use ruby to ssh onto a machine and run a bash script, this part is fairly easy but the bash script requires me to entry a username and ...
0
votes
1answer
135 views
kill pid started with gem net-ssh
If you start a command in a remote server with the net/ssh gem, and the command is on a deadlock, how do find the pid of the process running in the remote server and kill it?
Does net/ssh gem ...
0
votes
1answer
421 views
Multiple SSH hops with Net::SSH (Ruby)
So here's my setup:
Laptop -> Host 1 -> Host 2 -> Host 3
Laptop can reach Host 1, but not Host 2 or Host 3
Host 1 can reach Host 2, but not Host 3
Host 3 can reach Host 2, but not Host 1
What I'm ...
0
votes
1answer
346 views
ruby on rails ssh connection check validity
I'm making an ssh connection in my controller and displaying a view if the connection is established sucessfully.
I need my action to redirect to 'denied_access' view if the connection is not ...
0
votes
0answers
68 views
ruby on rails net ssh strickhostkeychecking=no
Hi i have a net:ssh connection in the controller. I might change the host name dynamically while establishing the connection. But when it logs in for the first time, shell might ask permission whether ...
1
vote
0answers
166 views
Calling scp from net:ssh
Here's the setup:
I have server A, which is running my ruby scripts and servers B & C. I need to be able to transfer files from B to C.
I've experimented with using Net:SCP, but I haven't found ...
0
votes
2answers
732 views
Ruby Net-SSH-Shell get standard out from execute! method
How do I get stdout from the .execute method in Net-SSH-Shell
With good 'ol Net-SSH, this is easy
Net::SSH.start('host','user') do |ssh|
puts ssh.exec! 'date'
end
Gives me Tue Jun 19 23:43:53 ...
1
vote
3answers
510 views
SUPPORTED_TYPE error when setting up a net-ssh connection
Has anyone out there seen this error before? I haven't been able to find any reference to SUPPORTED_TYPE in the source...
irb(main):013:0> connection = Net::SSH.start('host', 'user', :password => ...
2
votes
3answers
2k views
cannot load such file — net/ssh/authentication/agent/socket (LoadError)
If i run rails s
/Users/frankie/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.2.0/lib/active_support/dependencies.rb:251:in `require': cannot load such file -- net/ssh/authentication/agent/socket ...
0
votes
1answer
117 views
Is there a size limit for data returned by Net::SSH.exec command
I am trying to do file listing of a remote machine using the below code.
Net::SSH.start(host_name, 'ec2-user') do |ssh|
cmd = "ls #{get_ls_command(dir_loc, extension)}"
ssh.exec!(cmd) do ...
4
votes
2answers
847 views
Error “non-absolute home” via Net:SSH
The code in question
Net::SSH.start('server name', 'user')
This returns "non-absolute home". The 'user' in fact does have a home directory. One suggested approach was to modify ~/.ssh/config with ...
1
vote
1answer
459 views
Using ruby gem net-ssh to configure a Juniper router
I'd like to be able to use the ruby net-ssh gem to make changes to a Juniper M10i router. However, after sending "configure", I am unable to send any configuration commands.
For example, after ...
2
votes
3answers
171 views
SSH connection with Ruby without username using `authorized_keys`
I have authenticated a server using authorized_keys push so I could run command ssh 192.168.1.101 from my system and could connect via server.
Now, I tried with library , It didn't worked for me
...
1
vote
2answers
379 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 ...
1
vote
0answers
141 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
375 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 ...
0
votes
2answers
88 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 ...
3
votes
2answers
337 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, ...
1
vote
1answer
455 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 ...
2
votes
1answer
288 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 ...
0
votes
1answer
367 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 ...
1
vote
2answers
621 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 ...
2
votes
1answer
1k 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"]
...
0
votes
1answer
382 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'
...
4
votes
3answers
2k 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 ...
1
vote
1answer
604 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 ...

