Transfer file from server B to server C and running the script on server A


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Transfer file from server B to server C and running the script on server A
# 1  
Old 12-17-2013
Transfer file from server B to server C and running the script on server A

I have 3 servers A, B, C and server B is having some files in /u01/soa/ directory, these files i want to copy to server C, and i want to run the script from server A.

Script(Server A) --> Files at Server B (Source server) --> Copy the files to Server C(Target Server).

We dont have RSA key encypted for SSH, can we do it without using RSA key. if not then please share the process to genrate the key and also the requested script.

Thanks in advance !
# 2  
Old 12-17-2013
What OS ?
Are r-commands available ( remsh, rsh, rcp, rlogin etc...) if so you would need a .rhosts file in the users home directory else you are left with generating keys...
There have quite a few threads on the subject lately, do a little search
# 3  
Old 12-17-2013
OS - Linux 5
I am not sure about these commands.
# 4  
Old 12-17-2013
Here is an (untested) example of how to do it. Suppose I am on 10.0.0.1, and want to copy files from the /home/fpm/from directory on 10.0.0.2 to the /home/from/to directory on 10.0.0.3, I could issue the following command:
Code:
$ scp -r fpm@10.0.0.2:/home/fpm/from fpm@10.0.0.3:/home/fpm/to

The syntax is:
Code:
scp [[user@]from-host:]source-file [[user@]to-host:][destination-file]

# 5  
Old 12-18-2013
To avoid the files being sent twice over the network (from source to local, from local to target), I think it'd be better to login to either node and do the copy action from there.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Do I require remote login access to a windows server to transfer files from a UNIX server

Hi All I need to transfer a file from a UNIX server to a windows server. I saw that it is possible to do this using scp command by looking at the forum listed below: ... (2 Replies)
Discussion started by: vx04
2 Replies

2. UNIX for Dummies Questions & Answers

File Transfer From one server to another server

How to transfer a file from one sevrer to another server ? Please explain it with examples with all alternatives. (4 Replies)
Discussion started by: Awadhesh Kumar
4 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. Shell Programming and Scripting

Shell script to copy a file from one server to anther server and execute the binary

Hi , Is there any script to copy a files (weblogic bianary + silent.xml ) from one server (linux) to another servers and then execute the copy file. We want to copy a file on multiple servers and run the installation. Thanks (1 Reply)
Discussion started by: Nawrajesh
1 Replies

5. Shell Programming and Scripting

File transfer from one server to another server in unix

Hi, Can anyone help me. I am a new user in unix. I want to transfer (ftp) a file from one unix server to another server. Kindly help me. more details: server 1 file_name a.lst path: :/temp server 2 path : /develp/temp Thanks, Raj, (2 Replies)
Discussion started by: easterraj
2 Replies

6. Shell Programming and Scripting

Shell script for FTP a file from one server to another server

Hi Can any one help me for script. I need a script and this script has to execute daily to move the files. FTP from one server to another server EX: Sep 10 06:24 abc.txt Sep 11 06.56 abc.txt Sep 12 08.23 abc.txt these files are located at a/b/c/e/f in 123 server and copy... (0 Replies)
Discussion started by: mahantysk
0 Replies

7. Shell Programming and Scripting

Transfer file from local unix server to remote server

want to remove this thread. thanks (2 Replies)
Discussion started by: indira
2 Replies

8. HP-UX

Transfer file from local unix server to remote server

want to remove the thread thanks (2 Replies)
Discussion started by: indira
2 Replies

9. Shell Programming and Scripting

Running a script in a server from another server

Hi Guys Say I have two servers (A & B) and two scripts (script1 & script2). script1 will be running on server A and script2 will nbe running on server B. Now my need is to kickoff script2 (in server B) just after finishing running script1 (in server A) Any idea, how to achieve this?... (2 Replies)
Discussion started by: csaha
2 Replies

10. Shell Programming and Scripting

how to move a file from one server to another server using FTP in shell script?

I have a file --> file1.txt i need to copy this file to another server using FTP....the 2 servers are server1 and server2..may i know how to write a script that can do this? thanks in advance! Im a newbie to this... (4 Replies)
Discussion started by: forevercalz
4 Replies
Login or Register to Ask a Question