Plink connections to multiple unix servers


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Plink connections to multiple unix servers
# 1  
Old 08-11-2008
Plink connections to multiple unix servers

Hi,

I have a simple windows batch file which connects to a UNIX server and runs a shell script in my home directory on the server.
It works perfectly, using plink + ssh keys in the background.

What I plan to do is expand this batch file to connect to multiple servers and execute one script on each server.

Has anyone any opinions or feedback on this plan?
# 2  
Old 08-27-2008
I am looking at doing the same thing...

I made a simple BAT file that send a file with PSCP and a command with PLINK, it works fine but it hangs after PLINK...

What i would like to do is:

PSCP --- dreambox1
PLINK --- dreambox1
PSCP --- dreambox2
PLINK --- dreambox2
PSCP --- dreambox3
PLINK --- dreambox3

Thankx
# 3  
Old 08-28-2008
I got it working it was a timeout problem...

to get trough this problem i PSCP a SH script along with my file with the timeout cmd then used plink to start the SH script.

PSCP --- dreambox1--- file
PSCP --- dreambox1--- SH
PLINK --- dreambox1--- start SH
PSCP --- dreambox2--- file
PSCP --- dreambox2--- SH
PLINK --- dreambox2--- start SH
PSCP --- dreambox3--- file
PSCP --- dreambox3--- SH
PLINK --- dreambox3--- start SH

Last edited by patx; 08-28-2008 at 10:49 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to apply the update statement in multiple servers on multiple dbs at a time .?

Hi , Can any please help the below requirement on all multiple servers and multiple dbs. update configuration set value='yes' ;1) the above statement apply on 31 Databases at a time on different Ip address eg : 10.104.1.12 (unix ip address ) the above ip box contains 4 db's eg : db... (2 Replies)
Discussion started by: venkat918
2 Replies

2. Windows & DOS: Issues & Discussions

How to run UNIX alias from plink?

Hi, I am new to unix and plink in general. I want to run plink.exe on windows to execute alias command on unix. Is it possible? I can run simple unix commands from plink for ex: plink.exe -pw mypass myusername@hostip touch filename It successfully creates the "filename" file on the hostip host. ... (1 Reply)
Discussion started by: Ivanhou8219
1 Replies

3. Homework & Coursework Questions

Parallel execution on multiple servers in UNIX

I have a requirement (in a shell script) to connect to several servers at once and execute a series of commands. I am aware that ssh can be used for sequential execution. But since most of the commands that I need to execute take a long time, I have to go for the parallel option. Is there... (2 Replies)
Discussion started by: sneha1887
2 Replies

4. Shell Programming and Scripting

Plink (processing multiple commands) using Bash

I'm completely brand new to bash scripting (migrating from Windows batch file scripting). I'm currently trying to write a bash script that will automatically reset "error-disabled" Cisco switch ports. Please forgive the very crude and inefficient script I have so far (shown below). It is... (10 Replies)
Discussion started by: MKANET
10 Replies

5. UNIX for Advanced & Expert Users

what limits connections to Redhat servers?

Hey guys, We have two server environments that are acting different however they are different OS's... Ubuntu vs Redhat We have an Ubuntu environment that is able to maintain about 450 connections/second until about 120,000 connections. In our Redhat environment we are not able to match this... (1 Reply)
Discussion started by: s ladd
1 Replies

6. Shell Programming and Scripting

need a script that does a simple task on multiple unix servers.

hi guys, i need a script that does a simple task on multiple aix servers. if possible with both telnet and ssh. the simple task i wanna do is connect to a server and run "ifconfig -a" and get the output. nextweek i need to do similar jobs on like 50 servers... :( can anybody help me with making... (2 Replies)
Discussion started by: curtis911
2 Replies

7. Red Hat

How to Multiple internet connections manage into a single connection.

Dear all, Hope you are all fine & enjoying your good health. Look at this equation 1+1+1=3 So simple I just want to say that I have three internet connections of 1mb, 1mb & 1mb but I can use only 1mb connection at a time & other two connections are useless for me. But now I want to make all... (0 Replies)
Discussion started by: saqlain.bashir
0 Replies

8. UNIX for Advanced & Expert Users

grep for a line in a file on multiple unix servers

Hi, I need to grep(look) for a line in filename named /tmp/Test on all 90 unix servers. Without logging to each servers manually and grep'ing for the line, is there a way to pull this info in output file thru' the ksh/sh/bash script. Can someone pl. help to create this script for me? Ex.... (3 Replies)
Discussion started by: Mike1234
3 Replies

9. Shell Programming and Scripting

rsh to change multiple ip in multiple servers?

good day. i jsut wanted to know what is the best script or the best way changing a lot of Ip's in all servers. Do you have any idea? im using awk to change IP,what if, you have lots of servers. You need to change it one by one? It will take time to change it manually. (2 Replies)
Discussion started by: kenshinhimura
2 Replies

10. Shell Programming and Scripting

How do I make multiple connections to the server in this case

Given the following code #!/usr/bin/perl -w use IO::Socket; my($handle, $line, $kidpid); $handle = IO::Socket::INET->new( PeerAddr =>"64.22.229.139", PeerPort =>"4321", Proto=>"tcp", ... (0 Replies)
Discussion started by: frequency8
0 Replies
Login or Register to Ask a Question