- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- error message: strict alloction policy
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-27-2002 01:17 AM
06-27-2002 01:17 AM
error message: strict alloction policy
I`m in single user mode under hp-ux 11.00. I want to extend my lv by #lvextend -L 704 /dev/vg00/lvol8 /dev/dsk/c0t11d0
-> (2 Gig Harddisk) but it fails with the error message 'Need more PV??s for "4 Stripes". Only have "1" PVs. Failure possibly caused by strict alloction policy'
Any hints?
Thanx in advance
Kayse
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 01:23 AM
06-27-2002 01:23 AM
Re: error message: strict alloction policy
Something is contradictory in your message. The error means that /dev/vg00/lvol8 is striped across 4 disks (or 2 mirrored to 2 more) but you say you only have 1 disk in vg00 ?
How many disks does this command return ?
vgdisplay -v vg00 | grep "PV Name"
This is how many disks are in vg00.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 01:24 AM
06-27-2002 01:24 AM
Re: error message: strict alloction policy
I guess your lvol is stripped.
Check it using :
# lvdisplay /dev/vg00/lvol8
If it is stripped, you will need as many disks as strippes to extend your LV.
Regards,
Fr??d??ric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 02:16 AM
06-27-2002 02:16 AM
Re: error message: strict alloction policy
Fr??d??ric, you??re right, it is stripped (with Allocation strict) So what do I have to do? Do you need more information?
Greetz Kayse
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2002 02:25 AM
06-27-2002 02:25 AM
Re: error message: strict alloction policy
you cant extend it. lvol8 is using 4 disks for striping, the only way you can extend it is to have 4 more disks to extend it onto!
You alternatives are to recreate lvol8 unstriped so that it will fit onto the 4/5 disks you have but this is a big job. You would need to create a new lvol to the size you want (unstriped) and shutdown the server to single user mode (init s) then copy all of the files on lvol8 to the new lvol, then edit /etc/fstab and change lvol8 to the new lvol then reboot. After the reboot you can remove the old lvol8 to free up some space.
The HP recommended command to copy files safely to a new lvol like this (especially if /opt or /var or /usr) is;
eg.
cd /var
find . | cpio -pdumxvl
where new mount point is where you have temporarily mounted the new lvol to (eg. to /tmp_mnt) just so you can do the copy.
Dont forget to remirror your lvol afterwards if its mirrored now (which usually all of vg00 is).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2002 05:54 AM
06-28-2002 05:54 AM