- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Resynch primary and 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
10-05-2005 11:28 PM
10-05-2005 11:28 PM
c4t0d0 - primary root disk
c4t1d0 - root mirror copy
To test that I could boot from the mirror disk I did the following:
1. shutdown server.
2. pulled out primary disk
3. Started server up and chose the ALT disk from EFI boot menu.
4. Server booted correctly.
5. Shut server down - inserted primary disk
6. Booted server from primary disk
7. server booted correctly - BUT when I do vgdisplay -v vg00
my logical volumes are not sync and looking at the logical volumes (lvdisplay -v /dev/vg00/lvol9 etc....) they are stale - how do I resynch my primary (c4t0d0) with the mirror (c4t1d0)copy?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2005 11:32 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2005 11:33 PM
10-05-2005 11:33 PM
Re: Resynch primary and mirror disks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-05-2005 11:50 PM
10-05-2005 11:50 PM
Re: Resynch primary and mirror disks.
You can use:
vgsync /dev/vg00
for whole volume group synchronisation or
lvsync /dev/vg00/lvol9
for particular logical volume.
Regards,
Borislav
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-06-2005 12:01 AM
10-06-2005 12:01 AM
Re: Resynch primary and mirror disks.
Big Thanks!