- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Remote FS mount?
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
06-13-2002 01:06 PM
06-13-2002 01:06 PM
Running a tape backup and restoring to the new box is a feasible option for us, but that is about 36 hours backup and 36 hours restore time. We want to see if we can greatly reduce that timeframe to reduce downtime.
We could nfs mount the filesystems and move stuff over that way, and we could ftp the stuff over, but this may take longer than a backup and restore.
The other idea that someone had was to do something like a remote mount (different from nfs) of the filesystem and use dd or cpio to do a file by file copy. In theorey, this would take a lot less time to move because we wouldn't have to wait for the silly buffers to fill, it would just move things as it got them.
The question is, does anyone know how we would 'remote mount' the filesystems from the old box to the new box? Also, what is the best way to copy the data once we have the mount in place?
We are coming from and old D270 with HPUX 10.20 and converting to an rp2470 fibre attached to a SAN.
Thanks
John
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2002 01:11 PM
06-13-2002 01:11 PM
Re: Remote FS mount?
Example-
cd sourcedir
tar cf . - | compress -c | remsh newsystem "cd newdir ; zcat - | tar xf . )
(or something similar...)
-- Rod Hills
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2002 01:13 PM
06-13-2002 01:13 PM
Re: Remote FS mount?
tar cf - . | compress -c | remsh newsystem "cd newdir ; zcat - | tar xf - )
You would then setup remote login into your new system from the old system.
-- Rod Hills
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2002 01:16 PM
06-13-2002 01:16 PM
Re: Remote FS mount?
I don't know of any other standard way to remote mount in HP-UX other than NFS. There may be 3rd party apps out there but I'm unaware of them.
If you have reasonable network bandwith, you should be able to NFS mount the D data to the RP & copy it over - at least at night. Or whenever traffic is lowest. I wouldn't make it any more complicated than it has to be.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2002 01:23 PM
06-13-2002 01:23 PM
Re: Remote FS mount?
Thanks
John
(Points are coming, but I want to leave the thread open...)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2002 01:27 PM
06-13-2002 01:27 PM
Re: Remote FS mount?
2 servers (A - old ; B - server that has access to a NAS device ; remsh has to work between both servers).
On B ..
# cd /data/new-location
# remsh A "cd /data/old-location;find . -xdev|cpio -coax"|cpio -icvdmuxla
Data from /data/old-location in server A cpio'ed across to B in /data/new-location. It was reliable and reasonably simple enough. I do not know though if this is the fastest way.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2002 01:33 PM
06-13-2002 01:33 PM
Re: Remote FS mount?
(You're probabily right about not getting to much savings by compressing if these are images.)
-- Rod Hills
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2002 01:44 PM
06-13-2002 01:44 PM
SolutionThe other thing to keep in mind is that you could do a combination of network and tape transfers. Also, while the entire backup and the entire restore might take 36 hours each, it does not follow that the total time must be 72 hours. You can backup and restore in say 1 hour chunks and keep both tape drives active most of the time.