- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: percentage of mirroring
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
05-17-2007 01:38 PM
05-17-2007 01:38 PM
percentage of mirroring
i am mirroring an lvol. Is there any way i can find out what is the completed percentage of mirroring.Any command which shows "so much percentage is completed ".
thanks,
changee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 01:42 PM
05-17-2007 01:42 PM
Re: percentage of mirroring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 01:44 PM
05-17-2007 01:44 PM
Re: percentage of mirroring
Read up on 'vgdisplay' and/or 'lvdisplay' as it should show the status of mirroing in progress. I am pretty sure its 'vgdisplay -d'.
Jov
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 01:47 PM
05-17-2007 01:47 PM
Re: percentage of mirroring
# lvdisplay /dev/vgXX/lvolNN|grep -c stale
...will display the number of stale extents remaining.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 01:55 PM
05-17-2007 01:55 PM
Re: percentage of mirroring
lvdisplay -v /dev/vg01/lvol6 |grep -i stale|wc -l
what i was looking in particular is a way to find the percentage of mirroring.
i donnow wether something of this kind is available in hp.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 02:05 PM
05-17-2007 02:05 PM
Re: percentage of mirroring
Jov
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 02:19 PM
05-17-2007 02:19 PM
Re: percentage of mirroring
You can easily write a simple script that finds the number of logical extents for a given logical volume passed as the script's argument. Then, loop while the number of stale extents exceeds zero, calculating and printing the percentage of non-stale extents. Sleep for 15-30 seconds during each iteration.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 02:54 PM
05-17-2007 02:54 PM
Re: percentage of mirroring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2007 03:22 PM
05-17-2007 03:22 PM
Re: percentage of mirroring
I wanted to c if theres any way of making life simple rather than grep' for stale LE's.
thanks once again.
changee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2007 04:46 AM
05-20-2007 04:46 AM
Re: percentage of mirroring
Just image that your volume named /dev/vg02/lvol2
Command to check is:
#lvdisplay -v /dev/vg02/lvol2|grep stale|wc
--> to find all PE NOT COMPETED
#lvdisplay -v /dev/vg02/lvol2|wc
To count all PE on LV
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2007 03:48 PM
05-23-2007 03:48 PM
Re: percentage of mirroring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2007 05:43 PM
05-29-2007 05:43 PM
Re: percentage of mirroring
this will show you the remaining stale extenets which is to be mirrored.
& the time to complete depends on the pe extent size.
Thanks,
Vivek