- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Backup mirror disks
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
07-11-2001 06:48 AM
07-11-2001 06:48 AM
I would like to know if somebody know how to do a full off line system backup on the machine which is mirrored and to let the users continue being connect. The idea is to stop a mirror and backup it and after that restart the sync. It's that possible? If it is would you sent me instruction on how to do.
Regards,
Augusto
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2001 06:57 AM
07-11-2001 06:57 AM
SolutionSplit an online logical volume which is currently mounted on /usr so that a backup can take place:
lvsplit /dev/vg00/lvol1
fsck /dev/vg00/lvol1b
mount /dev/vg00/lvol1b /usr.backup
Perform a backup operation, then:
umount /usr.backup
lvmerge /dev/vg00/lvol1b /dev/vg00/lvol1
Robin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2001 10:59 PM
07-11-2001 10:59 PM
Re: Backup mirror disks
personally I really dislike splitting a single mirror. Mirroring is intended to guarantee your disks are 100% safe; if you split your mirror during backup which takes couple of hours, then your disks are only "safe" 80%-90% of the whole time. Imagine disk crash, reboot, backup procedure aborted, ... during backup.
Alternatives are :
-double mirroring: so you can split one mirror for backup and still have your disks mirrored. You "only" need 3 disks for every data disk ;)
-snapshot: if you have OnlineJFS you can create snapshots of your filesystems and backup that frozen situatin while users can keep on working.
regards,
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2001 11:24 PM
07-11-2001 11:24 PM
Re: Backup mirror disks
Splitting a double mirror to do backups does place your data at risk whilst the backup is ongoing as you are running on a single disk.
I like many other sysadmins use a tripple mirror on my live data base and when I split the mirror to leave the bussiness running on a double mirrir.
I back up to disk (which is the quickest option) and as soon as this is complete I join the mirror back in and then start a backup routine which backs up the data from the static disk copy.
HTH
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2001 06:16 AM
07-12-2001 06:16 AM
Re: Backup mirror disks
lvsplit or snapshot will probably work for static Files, but not for Database-Files (eg. Oracle) unless you you do an 'alter tablespace begin backup ...' before splitting to preserve Integrity of your Database.
correct me, if I'm wrong
Christian