Help with Copying files between two remote servers


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Help with Copying files between two remote servers
# 1  
Old 11-29-2013
Help with Copying files between two remote servers

Hi All,

Please help me for a shell. I am a New to unix

I am trying to DB dump file from one server and copying it to another server.

From My Local ServerA connecting to remote ServerB using ssh and taking dump of a instance. That Dump file i need to copy to ServerC.

I am able to connect from ServerA to ServerB and generate the dump file but do not how to copy file from ServerB to ServerC.

Please help.

Thanks,
Maddy
# 2  
Old 11-29-2013
What you tried so far..?

Have you checked scp and rsync ...?
# 3  
Old 11-29-2013
Have you considered sftp from ServerB to ServerC when you are connected to ServerB with the ssh session?




Robin
# 4  
Old 12-02-2013
thanks for your response.

From ServerA using ssh connected to ServerB and taken dump file. From ServerB using the following command trying to copy that dump file to ServerC But I am ending up with Permission denied error.

Code:
scp /oracle/DATAPUMP/*.* oracle@SERVERC:/oracle/test1/DATAPUMP

Thanks,
maddy

Moderator's Comments:
Mod Comment edit by bakunin: please use CODE-tags like the ones i added for you. Thank you

Last edited by bakunin; 12-02-2013 at 02:25 PM.. Reason: added copy word
# 5  
Old 12-02-2013
u can try using

Code:
scp <path tofile in present server> user@destinationserver:path

# 6  
Old 12-02-2013
Yes I tried the same
# 7  
Old 12-02-2013
can try the below

Code:
temp: should contain 

put <path to the file that you want to copy>

sftp -b temp -o IdentityFile=your private key user@server

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell script for connecting multiple servers and then copying 30 days old files

Shell script for connecting multiple servers and then copying 30 days old files from those server . HI , I have 6 multiple servers pla1,pla2,pla3,pla4,pla5,pla6 1. These six servers have common shared mount point /var/share 2. Running script from /var/share to connect these servers.I... (1 Reply)
Discussion started by: rcroyal88
1 Replies

2. Shell Programming and Scripting

Copying files to remote server

I am trying to copy code to remote server, doing something like this However it is copying one file and than the script exits i=0; j=0 while read fn; do dir=${fn%/*} # Gets directory path fnm=${fn##*/} # Gets filename excl. path rgx_nwk="s/${nwk}/${nwk}.sac/g" ... (2 Replies)
Discussion started by: kristinu
2 Replies

3. AIX

Copying files between two servers

Hi, I have a 60 GB file (tar file) in server1 and I have mounted server2 (using nfs mount) on server1 and then I am copying the file from server1 to server2. Even after 6 hours, the file copying is still not completed. It has just copied 20 GB of file so far. Please help me identify this... (3 Replies)
Discussion started by: qAnand
3 Replies

4. Shell Programming and Scripting

how to delete files on two remote servers simultaneously?

dear all, i'm preparing a script which can do these actions : 1. stop remove server's certain service 2. clean the files on remote servers simultaneously (because lots of files need to be deleted) 3. after files/logs are removed, restart the service again i'm stuck on how to clean remote... (4 Replies)
Discussion started by: tiger2000
4 Replies

5. UNIX for Dummies Questions & Answers

Copying files to a remote NFS filesystem

Hi guys Maybe a stupid question.. IS possible, in unix, to copy files to a remote NFS shared filesystem without mounting it? Just like windows does: copy * \\folderA\folderB Thanks.. (4 Replies)
Discussion started by: iga3725
4 Replies

6. UNIX for Dummies Questions & Answers

Copying files from unix servers to other locations e.g. C directory

Hi, I am just wondering is it possible to move or copy a file from a UNIX server to a different location e.g. the C drive on a computer? I have used the cp command to move files to different locations on unix servers but it would be handy to move a file to my C drive. I am currently... (3 Replies)
Discussion started by: crunchie
3 Replies

7. Shell Programming and Scripting

Remove Duplicate Files On Remote Servers

Hello, I wrote a basic script that works however I am was wondering if it could be sped up. I am comparing files over ssh to remove the file from the source server directory if a match occurs. Please Advise me on my mistakes. #!/bin/bash for file in `ls /export/home/podcast2/"$1" ` ; do ... (5 Replies)
Discussion started by: jaysunn
5 Replies

8. Shell Programming and Scripting

copying files from remote computer

hi, i want to copy files from a remote computer in a network to a specific directory on my PC. ( script ) Forexample , IP of the remote PC is 172.16.5.24 login:aaaa Passw:123 /folder1/file1.txt to my pc folder /fd/awa.txt kinldy help Thanks (2 Replies)
Discussion started by: krabu
2 Replies

9. UNIX for Dummies Questions & Answers

Copying files from laptop to remote server using SSH

Hello, I'm sorry if this sounds like a very simple question, but I'm having some difficulty with it being a complete newbie to UNIx. I use Windows, and always have, but need some UNIX access for work, picking up files from our group space, etc. Basically, I'm using Cygwin and can SSH into the... (3 Replies)
Discussion started by: patwa
3 Replies

10. AIX

copying files to a remote aix server using tar!

Hi, I am using AIX 5.2, and I want to copy some files from one server to a remote server using tar command. Can anybody tell me exact command? Thanks. Aqeel (2 Replies)
Discussion started by: system-admin
2 Replies
Login or Register to Ask a Question