- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Disk 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
06-13-2001 05:46 AM
06-13-2001 05:46 AM
Disk mirroring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2001 05:55 AM
06-13-2001 05:55 AM
Re: Disk mirroring
at HP-UX mirroring is done by LVM (Logical Volume Manager).
To check if you have installed the mirroring software check this:
swlist | grep -i mirror
If you get something like:
B2491A_APZ B.10.20 MirrorDisk/UX
the mirror software is installed on your system.
Check each logical volume with:
lvdisplay /dev/vgXX/lvolY
and look for the line
Mirror Copies
If you see a '1' then this lvol is mirrored.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2001 05:56 AM
06-13-2001 05:56 AM
Re: Disk mirroring
1) Do swlist - if MirrorDisk/UX is not installed then you are definitely not mirroring in software
2) lvdisplay /dev/vgnn/lvolxx
This should show the number of mirror copies; if greater than 0 then you are software mirrored.
Unfortunately, there is no way (without running hardware/vendor specific routines) to know if you are hardware mirrored. If your pvdisplay indicates alternate paths that is a hint but not an absolute indication that mirroring is going on.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2001 05:57 AM
06-13-2001 05:57 AM
Re: Disk mirroring
if you are using raid 1 to do the mirror you are working with hardware mirror .
i know from fact that every body is using software mirror that you can see if you do lvdisplay to a logical volume.
if it hardare so you are using auto-raid or you need to check the scsi card that you are working with .
but the easy way is to work with software mirror .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2001 05:59 AM
06-13-2001 05:59 AM
Re: Disk mirroring
and look at the disk description if it says anything other than seagate it is more than likely a hardware mirroring disk array.
To verify if lvm is configured to do software mirroring.
lvcreate -?
if you see a -m option you can do software mirroring.
man lvsplit, man lvmerge
if there is no man, mirrordisk is not installed.
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2001 06:01 AM
06-13-2001 06:01 AM
Re: Disk mirroring
# swlist -l fileset -a state | grep -i mir
You will see mirror information if you installed mirror on your system
Method2:
mstm(stm) -->select scsi controller
tools-->information-->run
You will see mirror information
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2001 06:15 AM
06-13-2001 06:15 AM
Re: Disk mirroring
#lvdisplay -v /dev/vgxx/lvolx|grep -i "mirror copies"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2001 06:24 AM
06-13-2001 06:24 AM
Re: Disk mirroring
I have now confirmed that we are using software mirroring as I thought.
Thanks to you all for such a quick response, your points will be awarded soon!
L8R