Ssh connection from Sun OS to Linux server

 
Thread Tools Search this Thread
Homework and Emergencies Emergency UNIX and Linux Support Ssh connection from Sun OS to Linux server
# 1  
Old 11-27-2012
Ssh connection from Sun OS to Linux server

Hello,

I ahve written a shell script which is doing ssh from UNIX Sun Os to multiple Linux servers one by one using loop. but after first iteration the script is getting exit. Rather it should connect to other linux server as well one by one. Please refer belwo code.

Code:
 
#!/bin/ksh
#set -x
HOME="/home/khichi"
CMD="grep hello /home/skhichi/a.txt"
cat $HOME/Linux_$SERVER | while read line
do
 ssh $line $CMD >> $HOME/hello
done

$HOME/Linux_$SERVER is having five linux server name.
the loop is getting exit after passing first server.

Not sure if this is script problem or ssh from unix to linux Smilie
Anyone?

Thanks,
# 2  
Old 11-27-2012
Use the SSH -n option.
# 3  
Old 11-27-2012
Thanks Bro .... it helped much .. relaxed now Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Tcp connection to Linux server fails

I am trying to send json messages to a port on a linux server from a remote server running a .net program. I have one implementation running with successful incoming messages to port 1514. I tried to replicate the same thing but just to another port but cannot get it to work as I get the following... (3 Replies)
Discussion started by: unienewbie
3 Replies

2. Shell Programming and Scripting

Connect (SSH) to Windows server via Linux server through a script and passing command.. but failing

I am trying to connect to Windows server via Linux server through a script and run two commands " cd and ls " But its giving me error saying " could not start the program" followed by the command name i specify e g : "cd" i am trying in this manner " ssh username@servername "cd... (5 Replies)
Discussion started by: sunil seelam
5 Replies

3. Solaris

Ssh to Solaris 10 server - close connection

Can ssh to server. Asks for password. Then seems to time out and close the connection. Any ideas? ---------- Post updated at 09:30 AM ---------- Previous update was at 07:51 AM ---------- Here is output from ssh -vvv -l user <IPaddress> debug3: packet_send2: adding 64 (len 59 padlen 5... (4 Replies)
Discussion started by: psychocandy
4 Replies

4. UNIX for Advanced & Expert Users

How keep running a program n an another computer via a connection ssh when the connection is closed?

Hi everybody, I am running a program on a supercomputer via my personal computer through a ssh connection. My program take more than a day to run, so when I left work with my PC I stop the connection with the supercomputer and the program stop. I am wondering if someone know how I can manage... (2 Replies)
Discussion started by: TomTomGre
2 Replies

5. Ubuntu

ssh connection unstable on remote server

Hi I hope someone can spot what is wrong with this ssh connection as it has me baffled. I am trying to set up a remote ssh connection (passwordless) to a remote 'server', (Ubuntu laptop at home). I have tried these steps with rsa and dsa key types, (currently dsa) - 1) ssh-keygen... (4 Replies)
Discussion started by: steadyonabix
4 Replies

6. Solaris

Please help me.. connection failed between OpenSSH-3.8.1 to Sun SSH-1.1

hi All, We tried to establish a connection from OpenSSH3.8.1 running on Windows Box to SunSSH-1.1 running on Solaris 10. Please see the debug statements. C:\Documents and Settings\sadmin\.ssh>ssh sadmin@10.4.3.8 -v -v -v OpenSSH_3.8.1p1, OpenSSL 0.9.7d 17 Mar 2004 debug1: Reading... (2 Replies)
Discussion started by: venusunil
2 Replies

7. Solaris

sun server connection

Hi, i'm really sorry to disturb you all, but i do need assistance. i am supposed to get a sun server up and running, and i dont have the slightest idea what to do. This is my first time with a sun server. On the rack, there is an e4500, d1000, 2 a5200's . there is also a netra t 1400, but its... (3 Replies)
Discussion started by: kehindedare
3 Replies

8. Solaris

Server unexpectedly closed network connection error in passwordless in ssh through

Hi , when i try to passwordless connection login in ssh through putty, i am getting the "Server unexpectedly closed network connection" error.i have already finished the public and private key settings for the particular user. thanks MaroV (1 Reply)
Discussion started by: vr_mari
1 Replies

9. Cybersecurity

Enable SSH for root over certain network connection of a server...is it possible?

Hi - I have a SUSE Enterprise Linux Server V9 that I have an issue with. Policy says that root connectivity via ssh needs to be disabled. So, to do that, I made the following change in the sshd_config section: # Authentication: #LoginGraceTime 2m #PermitRootLogin yes PermitRootLogin no... (3 Replies)
Discussion started by: cpolikowsky
3 Replies

10. Linux

not able to ssh linux server

Hi, I am unable to ssh linux server and while trying ftp from winscp it am getting error "No Route To Host ", and not able to login. I have checked chkconfig --list ssh service is on (2 Replies)
Discussion started by: manoj.solaris
2 Replies
Login or Register to Ask a Question