Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Install SSH servers and clients on both server hosts. Then use a CPAN module like Net::SCP or others to securely copy files between servers.

For even more powerful functiontality, consider using git, which supports SSH. There are CPAN modules available that have practically already written the perl code for you.

I have never used one of these modules myself yet, though they look very well documented and easy to use.

I have used rsync, which Arunbear suggested, in the past and it worked well.

Now I usually set up password-less SSH on each server and then use git or scp from the command-line.

To setup password-less SSH (after you have installed an SSH client and server on both hosts):

$ cd ~/.ssh $ ssh-keygen -t rsa

You will be prompted to enter a filename in which to save the key (~/.ssh/id_rsa): <thishost>on<targethost>

$ ssh-copy-id -i <thishost>on<targethost>.pub <targethost>

or for Macs or other OSs which do not have ssh-copy-id:

<targethost>$ cd ~/.ssh <targethost>$ ssh <thishost> cat ~/.ssh/<thishost>on<targethost>.pub +>> authorized_keys

Test SSH with Identity Key:

$ ssh -i ~/.ssh/<thishost>on<targethost> <targethost>

Lastly, create file ~/.ssh/config

Host <targethost> Hostname <targethost> StrictHostKeyChecking no User <Your username> IdentityFile ~/.ssh/<thishost>on<targethost>

The beauty of the config file is, I can ssh into any one of my hosts or mobile devices, regardless of OS, without providing username or password. CAUTION: You MUST carefully protect access to any host on which you use password-less SSH.

UPDATE:

Several years ago I used Sparkleshare to sync between desktop hosts/servers, in conjunction with rsync on iOS devices (jailbroken), to keep personal files synchronized. It worked pretty much OK back then. You might want to check it out if your files in question are larger than what Dropbox or iCloud. etc. can handle or if git is not suitable.

Anne


In reply to Re: Copy the files between servers by Anneq
in thread Copy the files between servers by ramuks123

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (3)
As of 2024-04-25 22:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found