calling a script in remote server


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting calling a script in remote server
# 1  
Old 08-14-2008
calling a script in remote server

Hi,
I need to call a shell script present in the remote server from the shell sript in my server. Can any one help to do this ASAP...
Thanks
# 2  
Old 08-14-2008
Use ssh.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script connect to remote server, not find files and exit only from remote server, but not from scrip

I have a script, which connecting to remote server and first checks, if the files are there by timestamp. If not I want the script exit without error. Below is a code TARFILE=${NAME}.tar TARGZFILE=${NAME}.tar.gz ssh ${DESTSERVNAME} 'cd /export/home/iciprod/download/let/monthly;... (3 Replies)
Discussion started by: digioleg54
3 Replies

2. Shell Programming and Scripting

Sudo connect to a remote server and execute scripts in remote server

Hello Every one!! I am trying to write a shell script which will connect to a remote server and execute scripts which are at a certain path in the remote server. Before this I am using a sudo command to change the user. The place where I am stuck is, I am able to connect to the... (6 Replies)
Discussion started by: masubram
6 Replies

3. Shell Programming and Scripting

How to Append the output of a script running in remote server to a file in local server?

Hi guys, So i am in server1 and i have to login to server 2, 3,4 and run some script there(logging script) and output its result. What i am doing is running the script in server2 and outputting it to a file in server 2 and then Scp'ing the file to server1. Similarly i am doing this for other... (5 Replies)
Discussion started by: srkmish
5 Replies

4. Solaris

Script to get files from remote server to local server through sftp without prompting for password

Hi, I am trying to automate the process of fetching files from remote server to local server through sftp. I have the username and password for the remote solaris server. But I need to give password manually everytime i run the script. Can anyone help me in automating the script such that it... (3 Replies)
Discussion started by: ssk250
3 Replies

5. UNIX for Dummies Questions & Answers

Calling a remote shell script and applying a DB dump

Hi All, I have a requirement to call a remote shell script to apply a db dump. The remote shell script will reside in the /root/admin/bin directory and the database dump will be copied by the script from another area to /root/admin/var. the script will then invoke mysql to apply the db dump.... (1 Reply)
Discussion started by: daveu7
1 Replies

6. Shell Programming and Scripting

Calling script located at server-B from server A

i am using HP-UX, i am writing a shell script to call a script located at server-B from server A. i am able to ping Server-B from Server-A (working ), what all the environment varaibles i need to set to call a script located at server-B from server A. --------- #!/bin/sh... (3 Replies)
Discussion started by: only4satish
3 Replies

7. Shell Programming and Scripting

calling a shell script from another server

hi All, There is a requirement where i need to call a script which is on another server(say server2). Any pointers on how i can achieve this? I tried the command ssh **ipaddress** /home/mqm/jay.sh but its not working...after typing in the command the cursor goes to the next line thats... (7 Replies)
Discussion started by: jayii
7 Replies

8. Shell Programming and Scripting

calling a shell script present on another server using perl script.

Hi, I am working on a sever A. I want to write a perl script to execute a shell script persent on the server B. please help me in this. thanks in advance. (3 Replies)
Discussion started by: anandgodse
3 Replies

9. Shell Programming and Scripting

Need help on how to exit a script run on a server from a remote server

hi, I am using the below line to run a script from remote server(say server A) to another server(say server B). ssh username@servername ksh script name. The issue is the script logs into server B, executes the script on server B, transfers the file to server A but does not exit from... (4 Replies)
Discussion started by: yohasini
4 Replies

10. Shell Programming and Scripting

Can a script runned in local server access remote server?

Hi, Im creating a script that is supposed to run commands on remote server using sftp. My script is as below: #!/bin/ksh sftp remote_server mypassword cd /u08/mydir/allfiles mget * .. But this is what I got when I runned the script: Connecting to remote server...... (3 Replies)
Discussion started by: luna_soleil
3 Replies
Login or Register to Ask a Question