- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Online JFS Not Using SAM
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-11-2001 06:44 AM
04-11-2001 06:44 AM
I'm doing the following
lvextend -L 500 /dev/vg00/lvol9
extendfs /dev/vg00/rlvol9
At the extendfs end, it errors that lvol9 cannot be extended as it is mounted.
A bdf did not show the new file system size, yet when I tried to use SAM to do increase the file system size it showed that lvol9 had now grown to 500MB.
Am I missing something here? I thought the whole point of Online JFS was that size increases can be done on the fly without un-mounting? Can this only be done through SAM?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2001 06:49 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2001 06:52 AM
04-11-2001 06:52 AM
Re: Online JFS Not Using SAM
Extend the logical volume e.g. /dev/vg01/lvol5 to the needed size:
# lvextend -L [lv_size_MB] /dev/vg01/lvol5
Extend the JFS file system online:
# fsadm -F vxfs -b [lv_size_MB]M /mountdirectory
NOTE: You need to add M directly to the lv_size_MB.
Check the size of the increased file system:
# bdf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2001 06:54 AM
04-11-2001 06:54 AM
Re: Online JFS Not Using SAM
Rob
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2001 06:57 AM
04-11-2001 06:57 AM
Re: Online JFS Not Using SAM
An excellent guide to standard LVM tasks, including routine JFS mainenance is found in the HP-UX System Administration Tasks manual:
http://docs.hp.com/hpux/onlinedocs/B2355-90672/B2355-90672.html
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-11-2001 07:04 AM
04-11-2001 07:04 AM
Re: Online JFS Not Using SAM
Thanks for the URL James