- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Can't extend /var volume
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
10-15-2001 06:11 PM
10-15-2001 06:11 PM
To increase size I used:
# lvextend -L 1000 /dev/vg00/lvol8
This work fine.
I then needed to unmount the volume to run extenfs and the system would not allow because it was busy.
I do not have onlineJFS. Is there an easy way to unmont this volume?
David Owens
Ingersoll-Rand
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2001 06:19 PM
10-15-2001 06:19 PM
Re: Can't extend /var volume
fuser -cu /var
and killing off those processes. Also remember to kill off swagentd and rpcd (these programs use sockets in /var which are not picked up by fuser). Then you should be able to umount and extendfs /var and then bring it back into multiuser mode.
If that doesn't work, you might have to reboot the machine and bring it into single user mount. /var should not be mounted at this point and you should be able to do the extendfs.
Hope this helps.
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2001 06:21 PM
10-15-2001 06:21 PM
SolutionSometimes some filesystems will not umount no
matter what you try going from multi to single
user. You do one of two things.
First boot the system into single user mode,
then extend the filesystem using
# extendfs /dev/vg00/lvol8
interrupt the boot and interactive with ISL
ISL> hpux -is
extend the filesystem and then press control-D
this will continue the boot sequence and
mount all your filesystems. Another way to do
this is to boot off your make_recovery tape if
have one.
HTH
-Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2001 06:23 PM
10-15-2001 06:23 PM
Re: Can't extend /var volume
This is often a problem with filesystems like /var/ and /usr particularly in the absence of Online JFS. You can try to find and kill processes with open files to /var with 'fuser' and then proceed to 'extendfs'.
The easier way is to boot up in single-user mode and do your LVM maintenance with the commands in /sbin.
If you have already done the 'lvextend', you can still take this approach. Boot into single-user mode and begin where you left off.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2001 07:29 PM
10-15-2001 07:29 PM
Re: Can't extend /var volume
It worked when I went to single user mode at boot up.