transfer files from the server 1 to server 2


 
Thread Tools Search this Thread
Operating Systems Linux transfer files from the server 1 to server 2
# 1  
Old 11-02-2008
transfer files from the server 1 to server 2

I want to transfer files from the server 1 to server 2, but only information available FTP my server 2

How?

Is there a script help me in the transfer of files through FTP Smilie

# 2  
Old 11-03-2008
Actually i didn't get you as what you want to do..
But if you want transfer file from 1pc to another 2pc then use:

[root@nis-server ~]# scp -r 192.168.1.101:/root/install.log 192.168.1.126:/root/install.log


Exp. #scp -r <source pc>:<source file> <destination pc>:/<location where to copy the file.>

OR

about script, no idea.
# 3  
Old 11-03-2008
Quote:
Originally Posted by daya.pandit
Actually i didn't get you as what you want to do..
But if you want transfer file from 1pc to another 2pc then use:

[root@nis-server ~]# scp -r 192.168.1.101:/root/install.log 192.168.1.126:/root/install.log


Exp. #scp -r <source pc>:<source file> <destination pc>:/<location where to copy the file.>

OR

about script, no idea.

Thank you to help me Smilie

But I do not have the power to ssh

I want to transfer the file from the server 1 to host 2 On another server

The name of the file transfer in the Arve / file.tar.gz & file2.tar.gz & file5.tar.gz & file4.tar.gz

The information available to me is an example

PHP Code:
ip FTP 10.20.30.40 
port 
21 
Password 
123456 
How do I transfer Boutrkip fast

Last edited by bomozah; 11-03-2008 at 07:24 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Not able to transfer files using between server A and B

Hi All, I have generated public and private pair to avoid to enter password manually while sending files through sftp. But still I am facing issues and every-time prompt asking enter password. Below are steps I fallowed to make ssh connection between two servers. 1. Generated public and... (5 Replies)
Discussion started by: renukeswar
5 Replies

2. UNIX for Advanced & Expert Users

Best way to transfer files to remote FTPS server instead of local FTPS server

Hi, I am working on an application which runs on an Informatica Red-Hat 5.10 Linux Server. The application involves several Informatica ETL workflows which generate 100s of Text files with lot of data. Many of the files will each be up to 5 GB in size. Currently the Informatica server itself... (7 Replies)
Discussion started by: waavman
7 Replies

3. Shell Programming and Scripting

Shell scripting to transfer files from one to another server through ftps

Hi Guyz ,, I'm an ERP functional guy , I really need to automate a script which required a shell script but have a little knowledge in shell scripting. I need my generated files to be zipped first in one directory lets say (xyz) and then it needs to transfer another ftp server in... (3 Replies)
Discussion started by: Shogundion
3 Replies

4. Shell Programming and Scripting

Transfer files from one server with bash script

Hello to all, I want to copy from one server to another files of last 24 hours with size between 500MB and 2GB. The code below searches last files in 24 hours. find . -mtime -1 In order to copy faster I'd like to compress the files before copying them. How to automate the process of... (8 Replies)
Discussion started by: Ophiuchus
8 Replies

5. 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

6. Shell Programming and Scripting

Help with script to transfer files from one server to another

Hi I have the following script: #!/bin/sh set -x touch -mt 201210040000 /tmp/ref1 touch -mt 201210042359 /tmp/ref2 find /fs1/bscsrtx/BSCS_ix/WORK/LOG -type f \( -newer /tmp/ref1 -a ! -newer /tmp/ref2 \) > file_lst scp $(< file_lst) root@10.100.48.76:/ano2005/fs1_2015/LOG/ but somehow its... (7 Replies)
Discussion started by: fretagi
7 Replies

7. UNIX for Dummies Questions & Answers

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... (4 Replies)
Discussion started by: kiran_j
4 Replies

8. Shell Programming and Scripting

SFTP to transfer files from one server to another

Hello, i have to write a script to perform sftp from the remote server to another server. the files which are at the remote location are huge data log files which should be transfered to my server in a particular folder. could you please provide me the general code (simple )... (1 Reply)
Discussion started by: urfrnddpk
1 Replies

9. 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

10. 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
Login or Register to Ask a Question