Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^2: A little demo for Net::SSH2

by Anonymous Monk
on Dec 12, 2013 at 18:36 UTC ( [id://1066895]=note: print w/replies, xml ) Need Help??


in reply to Re: A little demo for Net::SSH2
in thread A little demo for Net::SSH2

Hello All, I used an example from this tutorial in my code, which executes a command which has -i -c parameters(interval, no. of iterations). However Once the command completes the control never returns to the PERL code. Can anyone please help??? Below is the code:
use Net::SSH2; my $ssh2 = Net::SSH2->new(); $ssh2->connect('localhost') or die $!; $ssh2->auth_password('nasadmin','adminpassword') or die "Unable to log +in $@ \n"; my $chan = $ssh2->channel(); $chan->shell(); $chan->write("server_stats server_2 -monitor cifs-std -i 5 -c 5 \n"); select(undef,undef,undef,0.2); print $buf while ($len = $chan->read($buf,32)) > 0; $chan->close;

Replies are listed 'Best First'.
Re^3: A little demo for Net::SSH2
by Anonymous Monk on Mar 14, 2014 at 16:27 UTC
    I suspect your server_stats command is taking too long to generate output. Does it work with a "nas_server -list" command?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1066895]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (5)
As of 2024-04-18 05:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found