- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Mirror copies with Vxvm
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-28-2003 06:27 AM
10-28-2003 06:27 AM
I wold need to see the no of Mirror copies associated with VxVM File system. which command I should use? When I use "vxprint -g dg_name" it does not show the no of copies associated with the Volume. I would like to have an output like the one with "lvdisplay"
Thanks,
Sailesh
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2003 06:36 AM
10-28-2003 06:36 AM
Re: Mirror copies with Vxvm
I don't use VxVM, so I'm guessing:
vxprint -vt
-or-
vxprint -ht vol_name
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2003 06:36 AM
10-28-2003 06:36 AM
Re: Mirror copies with Vxvm
HTH.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2003 07:03 AM
10-28-2003 07:03 AM
Re: Mirror copies with Vxvm
Command would be
vxprint -g dg_name -v
You'll need to know your dg_names, vol_names & possibly plex_names to interpret the output.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2003 07:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2003 07:47 AM
10-28-2003 07:47 AM
Re: Mirror copies with Vxvm
if a Volume "v" has two Plexes "pl" then that would show the number of mirrors, ie excerpt:
v pglrc01 fsgen ENABLED 6291456 - ACTIVE - -
pl plgc01-01 pglrc01 ENABLED 6292242 - ACTIVE - -
sd disk0-04 plgc01-01 ENABLED 6292242 0 - - -
pl plgc01-02 pglrc01 ENABLED 6292242 - ACTIVE - -
sd disk1-04 plgc01-02 ENABLED 6292242 0 - - -
Volume "pglrc01" has two mirrors or "Plexes" namely: "pl plgc01-01" and "pl plgc01-02 "
You may do
vxprint -Aht|egrep "^v|^pl"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2006 11:36 AM
03-27-2006 11:36 AM
Re: Mirror copies with Vxvm
vxprint -hv volume_name |grep "^pl "|wc -l
The number also includes the original copy.
For example if it returns 2, that means you have one mirror copy of your volume.