- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- extend a stripe
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
04-29-2003 08:14 AM
04-29-2003 08:14 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2003 08:44 AM
04-29-2003 08:44 AM
SolutionIf I may quote from the lvextend man page:
"LVM striped logical volumes are always allocated using a strict
allocation policy. Consequently, striped logical volumes may only be
extended by a number extents that is a multiple of disks the logical
volume is striped across. For example, for a logical volume striped
across 3 disks, the logical volume will be extended in increments of 3
extents, with each of the 3 extents allocated on a different disk in
the volume group."
The answer to your question, then, is 10.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2003 08:44 AM
04-29-2003 08:44 AM
Re: extend a stripe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2003 08:47 AM
04-29-2003 08:47 AM
Re: extend a stripe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2003 05:01 PM
04-29-2003 05:01 PM
Re: extend a stripe
Ran across this with ASU. This application had a file system with 24 disks within a logical volume stipped at 64 kb and no one would ever clean this file system out. It grew and grew and grew. It grew to 96% and still no one would clean it out.
Then the user found out that they needed to buy another 24 disks to make the file system grow, or, clean it out.
Which do you think they performed?
They bought a whole new disk array rather than clean up this file system and added 24 disks.
And obstinite users that they were, they wouldn't allow for 4 disk pvg's, which is what a lot of people recommended.
So, if you have a physical volume group with 4 disks you can label them and add them in as needed.
1) vgcreate -g pvg0 /dev/vg01 /dev/dsk/c2t9d0 (* First disk into pvg0 *)
2a) vgextend -g pvg0 /dev/vg01 /dev/dsk/c4t8d0 (* additional disk into pvg0 *)
-or-
2b) vi /etc/lvmpvg
(* manually add disks *)
vg01
pvg1
c2t9d0
c4t8d0
c1t9d0 (* add in *)
c3t8d0 (* add in *)
lvcreate -D y -s g -r n /dev/vg01
(* lvcreate determines pvgs w/out specifiying them *)
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B9106-90008/B9106-90008_top.html&con=/hpux/onlinedocs/B9106-90008/00/02/208-con.html&toc=/hpux/onlinedocs/B9106-90008/00/02/208-toc.html&searchterms=stripe%7cpvg%7clvcreate&queryid=20030429-185924
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2003 07:24 AM
04-30-2003 07:24 AM