Script using rsh(remote shell)


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script using rsh(remote shell)
# 1  
Old 12-21-2005
Script using rsh(remote shell)

Hi,

I am writing a script that will require me to perform tasks across servers. I tried to use rsh <host> "Commands..." > /dev/null 2>&1. However, I am required to execute a long series of commands after that and rsh does not seem to support this and its also insecure.

I tried to use rsh to run a local script in the other server but due to the natural of the rsh command, it simply does not work.

Is there any other way for me work this out? Many thanks in advance.

Regards
Joseph
# 2  
Old 12-21-2005
You are right. Running a long list of commands is quite difficult. You are better off using a script. You can use a combination of rcp and rsh to accomplish this.
Code:
rcp /path/to/local_script remote_host:/remote/path
rsh remote_host /remote/path/script

Also, to counter the security issues faced with rsh/remsh/rcp family, you might want to check out ssh. You can find it at www.openssh.org.
# 3  
Old 12-21-2005
Hi,

Thanks for the reply. I have also tried this method but I am still having problems.

rsh <host> "cd /path/; ScriptABC Arg1; touch tempfile" >/dev/null/ 2>&1
And
rsh <host> -n ScriptABC Arg1 >/dev/null/ 2>&1 which is pretty much the same as above.

I tried to run this on the main script. The normal unix commands are done but the ScriptABC is not executed. I tried to run it manually, it works perfectly.

I want to run the rsh command as a background process, open shell do command and then disappear completely.

Regards
Joseph
# 4  
Old 12-22-2005
You cannot run a script that is present on the local system by 'rsh'ing to the remote system. You will have to rcp the script over to the remote system and then rsh and run it.
# 5  
Old 12-22-2005
Hi,

Thanks for the help! Finally manage to resolve this. I also discovered another problem when you perform a rsh from a script into another server, it may not be able to detect your profile, environment settings.

I did this rsh <host> ". <path>/.profile; <path>/script" to resolve this issue. Is there any other way to do the same time?

Regards
Joseph Ng
# 6  
Old 12-22-2005
Quote:
Originally Posted by joseph_ng
it may not be able to detect your profile, environment settings.

I did this rsh <host> ". <path>/.profile; <path>/script" to resolve this issue. Is there any other way to do the same time?
You can source the profile in the script itself. In the first few lines, you can have '. <path>/.profile'
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Triggering remote UNIX shell script from Remote desktop

I m trying to run a batch script in remote desktop which executes unix commands on the unix server...the problem is i wnt the output in HTML format.so in my batch script i m giving the cmd like ssh hostname path ksh HC_Report.ksh>out.html ...but it generates the HTML file in remote desktop .i... (2 Replies)
Discussion started by: navsan
2 Replies

2. Shell Programming and Scripting

execute remote commands with rsh

Hi, I earlier determined I cannot use FTP to execute remote commands on a server. My problem, I need to use a second server to get/put files via ftp onto my primary server and various tertiary servers. my server(A) ---> server (B) ----> server blah(c), server balh(C) I cannot directly... (1 Reply)
Discussion started by: mcclunyboy
1 Replies

3. Shell Programming and Scripting

rsh help - getting the output of remote script to local server.

Hi, I have a script that runs for an hour. Have to run it on remote server and need the output it produces on the remote server to decide for failure or success. I run it through a Autosys Job which logs the outputs, both 1 & 2. I use the commands 1) rsh <SERVER> 'nohup /tmp/xyz.ksh &' 2)... (5 Replies)
Discussion started by: aster007
5 Replies

4. Shell Programming and Scripting

awk on a remote machine using 'rsh'

Hi, I want to do a awk operation on a file on a remote machine. I am using rsh for this. rsh <remote> awk '{print $2}' process.txt output: awk: syntax error near line 1 awk:illegal statement near line 1 I can do the awk operation by logging into the remote machine. Can... (1 Reply)
Discussion started by: eamani_sun
1 Replies

5. Shell Programming and Scripting

command not working with rsh(remote shell)

Hi, root@air01a>SS7Manager -status This command gives correct output. But when I write this in script and run it on SUNMC (which can connect to air01 and by default login as root). It gives the error "SS7manager not found" or "can not open". Here is the scripts. #!/bin/sh rsh air01a... (4 Replies)
Discussion started by: lastkey
4 Replies

6. UNIX for Advanced & Expert Users

rsh: remote tape backup

I am trying to perform a remote tape backup from one SCO openserver to another remote SCO Openserver which happens to have a tape drive configured. I have added entries into host.equiv and .rhosts on the tape drive server: prodution_server root # This is equivalent to the hostname and... (1 Reply)
Discussion started by: cstovall
1 Replies

7. UNIX for Dummies Questions & Answers

RSH - Remote Shell

Dear All, I was wondering if there was any way that I could make RSH be non-blocking? i.e. make a remote connection to another machine and execute a function while being able to resume your program. T (4 Replies)
Discussion started by: thoang
4 Replies

8. Shell Programming and Scripting

Rsh: test $? on remote system.

Hi, a little help. I need to test the return code of a list file command on a remote system (Unix) using the rsh command. More exactly, to test is a directory exists, I try the following command: rsh $remoteHost "ls -la " $DirRemote Now, if the $DirRemote is not correct and I test... (3 Replies)
Discussion started by: gio123bg
3 Replies

9. Shell Programming and Scripting

rsh help with remote prompts

Hi, I'm writing a shell script that rsh's onto a remote machine and runs a perl script that requires values to be entered as the script executes. I also need to ba able to see the outputs from the perl script. When I try to run it I get an stty : Invalid argument and understand that this is... (4 Replies)
Discussion started by: ianf
4 Replies

10. UNIX for Dummies Questions & Answers

remote login through a script ( except rsh)

Hi Guys, I'm having a problem trying to change to a different user within a script . I want to change to a specific user and then run the subsequent commands using his previleges . I remember having used ' su ' some years back for this , can't figure it out now !! Help appreciated . (3 Replies)
Discussion started by: rahma
3 Replies
Login or Register to Ask a Question