- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- MIRROR - UX
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
11-30-2004 05:29 AM
11-30-2004 05:29 AM
MIRROR - UX
Attachment file the configuration actu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 05:40 AM
11-30-2004 05:40 AM
Re: MIRROR - UX
Then, lvextend the lvol with the 2 new disks as well.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2004 05:47 AM
11-30-2004 05:47 AM
Re: MIRROR - UX
you have to:
1. initialize disks:
pvcreate /dev/rdsk/disk1
pvcreate /dev/rdsk/disk2
2. extend vg with your new two disks
vgextend vgname /dev/dsk/disk1 /dev/dsk/disk2
3. extend logical volumen
lvextend -L new_size /dev/vgname/lvolX /dev/disk1 /dev/disk2
4. extend file system
if you have OnlineJFS installed use fsadm command
if not then umount lvol and use extendfs command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2004 08:34 PM
12-01-2004 08:34 PM
Re: MIRROR - UX
Out of query.
in your post you asked to just extend the lv after adding the disks in VG.
But as per Daniel he is having two disks in VG having mirror copy of each.
take a eg:
VG: VG01
PV name : pv1, pv2
New PV added : pv3, pv4
After adding these two new PVs, the lv should be extended in pv3 and should have mirror of this in pv4.
Correct me if I am wrong.
Can you clarify please
Rgds
Suraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2004 09:35 PM
12-01-2004 09:35 PM
Re: MIRROR - UX
1. initialize disks:
pvcreate /dev/rdsk/disk1
pvcreate /dev/rdsk/disk2
(use -f option if they have existing PV's on it)
2. extend vg with your new two disks
vgextend vgname /dev/dsk/disk1 /dev/dsk/disk2
3. Extending and mirroring logical volume for e.g. lvol12
** lvreduce -m 0
** lvextend -L
** lvextend -m 1 .......
{ PLease refer to the man pages for complete syntax of command }
4. extendfs ...
Hope that helps.
Regards,