- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- mirroring internal drives
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
12-04-2000 09:49 AM
12-04-2000 09:49 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2000 10:44 AM
12-04-2000 10:44 AM
Re: mirroring internal drives
An easy-to-follow procedure for mirroring can be found in the System Administration Tasks manual.
http://docs.hp.com/hpux/onlinedocs/B2355-90672/B2355-90672.html
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2000 10:44 AM
12-04-2000 10:44 AM
Solutionpvcreate -B /dev/rdsk/c?t?d?
vgextend vg00 /dev/dsk/c?t?d?
mkboot /dev/dsk/c?t?d?
mkboot -a "hpux -lq" /dev/dsk/c?t?d?
repeat above for original root disk
for i in /dev/vg00/lvol*
do
echo lvextend -m 1 $i /dev/dsk/c?t?d?
lvextend -m 1 $i /dev/dsk/c?t?d?
done
Verify afterwards with vgdisplay -v vg00
I also recommend turning off mirror write cache and consistency for primary swap, but this can be done only in lvm maintenance mode and is not really necessary.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2000 11:02 AM
12-04-2000 11:02 AM
Re: mirroring internal drives
Disk and File Systems Management.
I don't think so SAM allows you to mirror onto a specific disk of your choice.
Suggest command line.
...Madhu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2000 11:06 AM
12-04-2000 11:06 AM
Re: mirroring internal drives
"Mirror disk operations require the installation of the optional HP MirrorDisk/UX software, which is not included in the standard HP-UX operating system."
First check to see if you have the ability to mirror with software.
Tony
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2000 04:51 AM
12-05-2000 04:51 AM
Re: mirroring internal drives
Be careful, that Your swap/dump volume (lvol2) is in the first 2GB of Your disk. If you have a big lvol10 in vg00, You will have trouble with the for-loop.
You can set the ALT-bootpath with "setboot -a hardwarepath_of_mirrordisk".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2000 08:28 AM
12-05-2000 08:28 AM
Re: mirroring internal drives
I'd rather have a good recovery tape. And use the drive space for something useful.
A disk having problems will probably corrupt the mirror.
Just my opinion. Comments welcome
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2000 09:50 AM
12-05-2000 09:50 AM
Re: mirroring internal drives
mirroring provides protection against hardware failure, pure and simple. It is essential to have a protection against drive failures in a system where availability is important. Where disk space is a concern, raid arrays provide availablity with lower overhead in terms of "wasted" disks. There is a performance degredation with raid arrays, though.
Also, while not integral to maintaining production, having data mirrors allows smooth and esay recovery options for a multitude of upgrade/testing situations.