- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Quickest method to copy files between two servers
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2003 09:03 PM
02-02-2003 09:03 PM
Quickest method to copy files between two servers
I need to copy oracle offline backup files (avg. filesize 2-4GB, total Database size 75GB) between two servers as one of my tape drives has conked off...which is the quickest way to copy..
FTP, RCP...
One way i have thought of is that both servers have hotswaps..so remove disks from one server and put it in other server..vgimport..mount the lvols as something do the copy and back...Will this work..could there be any problem..Both the servers has the same type of external disk storage..
rgds
nainesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2003 09:28 PM
02-02-2003 09:28 PM
Re: Quickest method to copy files between two servers
Other way rcp.
Removing disks and vgimport will be lengthy procedure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2003 09:41 PM
02-02-2003 09:41 PM
Re: Quickest method to copy files between two servers
ftp is a little more reliable, though nfs and a regular copy command will work as well.
I ended up having to go to my backup plan which was an fbackup, which I'd have around in any case.
Oracle data is usually important enough to have a backup plan.
p
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2003 09:42 PM
02-02-2003 09:42 PM
Re: Quickest method to copy files between two servers
You could possibly have a look at using 'rdist' to do the copy. There is a man page for it.
Aslo have a look at this document.
http://www.docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90147/B2355-90147_top.html&con=/hpux/onlinedocs/B2355-90147/00/00/85-con.html&toc=/hpux/onlinedocs/B2355-90147/00/00/85-toc.html&searchterms=rdist&queryid=20030202-222009
HTH
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2003 09:44 PM
02-02-2003 09:44 PM
Re: Quickest method to copy files between two servers
I would prefer doing NFS mount and use dd/cpio to copy, where in no physical work involved.
vgimport is used in case of root disk failure
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2003 10:57 PM
02-02-2003 10:57 PM
Re: Quickest method to copy files between two servers
Ravi - i guess nfs mount and dd/cpio is a good option..But i tried the vgimport on 2 disks and was able to copy the data in 2 hrs..including the configuration part..that was fast..if i go thru copy or cpio or dd still it has to pass thru the network and it will take time. FTP took around 1 hr to copy 3 GB file..
Michael : RDIST is a good suggestion from the point that its something new for me and needs to be explored..
thanx again mates..
rgds
nainesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2003 05:50 AM
02-04-2003 05:50 AM
Re: Quickest method to copy files between two servers
To copy /u01 on system A to /u01 on system B:
On system A:
This is the absolute fastest way I've found to copy files from one machine to another across a network and it also:
-copies links
-copies device files
-preserves permissions
-preserves data and time
Remember, you have to put systemA in systemB's /.rhosts file for the remsh to work, but you can take it out when the copy is done and if you're behind a firewall, as most are, it's not really an issue.
-greg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2003 05:52 AM
02-04-2003 05:52 AM
Re: Quickest method to copy files between two servers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2003 06:28 AM
02-04-2003 06:28 AM
Re: Quickest method to copy files between two servers
why not create an NFS mount and immediatly backup that ReadOnly mounted FS ??
I think it is the fastest, however you need to know that you will be generating a lot of network traffic.
or else :
tar cvf - . | remsh
(Tested and works good)
Regs David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2003 06:36 AM
02-04-2003 06:36 AM
Re: Quickest method to copy files between two servers
Tar, Cpio and DD will not do CRC checking on the file from start to finish to ensure that it's good. Even with NFS checking is minor.
The file sizes you mention are supported by secure shell.
So, while other things may be more convenient, ssh is faster and more accurate.
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2003 09:25 AM
02-04-2003 09:25 AM
Re: Quickest method to copy files between two servers
I allways use "rsync" it is reliable and faster. You can get the download from "http://samba.anu.edu.au/rsync/documentation.html"