- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Extending the rootvol
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
08-17-2007 07:15 PM
08-17-2007 07:15 PM
Extending the rootvol
#./vxresize -f -g rootdg rootvol 25G
VxVM vxassist ERROR V-5-1-638 Failed to get a contiguous extension of volume rootvol
VxVM vxresize ERROR V-5-1-4703 Problem running vxassist command for volume rootvol, in diskgroup rootdg
The command is throwing the above message.
#./vxresize -f -g rootdg rootvol 25G
VxVM vxassist ERROR V-5-1-638 Failed to get a contiguous extension of volume rootvol
VxVM vxresize ERROR V-5-1-4703 Problem running vxassist command for volume rootvol, in diskgroup rootdg
Any help here?
Is it not possible to extend ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2007 07:27 PM
08-17-2007 07:27 PM
Re: Extending the rootvol
lvextend: Not enough free physical extents available.
Logical volume "/dev/vg00/lvol3" could not be extended.
Failure possibly caused by contiguous allocation policy.
Failure possibly caused by strict allocation policy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2007 09:07 PM
08-17-2007 09:07 PM
Re: Extending the rootvol
# vgdisplay vg00
Likely new physical volumes have to be added to vg00.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2007 09:13 PM
08-17-2007 09:13 PM
Re: Extending the rootvol
Extending / root file system:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=97821
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2007 07:20 AM
08-19-2007 07:20 AM
Re: Extending the rootvol
Correct. You cannot extend the root filesystem because it must remain contiguous, that is, every extent must be adjacent. The root filesystem is unique because of boot requirements so it should be carefully managed, just like /var. The only supported way to extend the root filesystem is to use your latest Ignite backup tape to reinstall HP-UX on your boot disks. But unless you have dozens of volume groups and/or thousands of LUNs and alternate links to add, the / filesystem won't have to be recreated. Find out where the unusual amount of space is being consumed:
# du -kx / | sort -rn | head -20
Only two filesystems should be at the top: /etc and /sbin. If /dev is more than 50-100 KB then the root user made a spelling error with a backup command. Find the error with:
# find /dev -type f
There must be no regular files in /dev. If /dev is OK, then look at / which should have only directories present. Unfortunately, root's $HOME is there by default so a lot of junk appears in /. To check if there are any files in /, use:
find /* -prune -type f
Regular files, especially big files, do not belong in the / directory.
Now look at any directories that do not begin with /sbin or /etc.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2007 08:43 AM
08-19-2007 08:43 AM
Re: Extending the rootvol
Mathmad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2007 02:29 PM
08-19-2007 02:29 PM
Re: Extending the rootvol
You can also see these files by exporting and mounting the underlying directory on another machine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2007 04:01 PM
08-19-2007 04:01 PM
Re: Extending the rootvol
http://seer.support.veritas.com/docs/231559.htm
and for LVM use ignite-ux to extend root file system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2007 08:13 PM
08-19-2007 08:13 PM
Re: Extending the rootvol
One supported way to extend is to take a backup of the vg00 configuration with Ignite and to restore it back. During restoring you will be prompted a window where you can define new size of root (/).