- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Want to Resize the size of logical volume(mount po...
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
09-06-2005 07:35 PM
09-06-2005 07:35 PM
Good Day,
Can any one help me to resize the size of logical Volume(/product/abcxx) coz its size 5 GB and I wanna Increase it to 10 GB.
repaly will be appreciated.
Thanks in Advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 07:40 PM
09-06-2005 07:40 PM
Re: Want to Resize the size of logical volume(mount point)
could you post a bdf and a lvdisplay -v /dev/vgxx/lvolname. Do you have OnlineJFS installed ?
Best regards
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 07:40 PM
09-06-2005 07:40 PM
Re: Want to Resize the size of logical volume(mount point)
The server Configuration is
HP-UX abc-prd B.11.11 U 9000/800
Bye.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 07:41 PM
09-06-2005 07:41 PM
Re: Want to Resize the size of logical volume(mount point)
Disks and filesystems -> logical volumes -> select the LV you want to increase -> actions -> increase size.
You may want to substitute filesystems for logical volumes in the above sequence. That way you will increase the lv and the fs in one go.
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 07:46 PM
09-06-2005 07:46 PM
Re: Want to Resize the size of logical volume(mount point)
The easiest way is to use SAM. Satrt SAM, select "Disk and Filesystems", select "Logical Volumes" and then open the "Action" menu. Select "Increase size" from the menu.
If Online JFS is installed, the filesystem is increased online. If not, SAM unmounts the filesystem if it not is in use.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 08:01 PM
09-06-2005 08:01 PM
Re: Want to Resize the size of logical volume(mount point)
You must use SAM
1)Select 'Disk and Filesystems'
2)Select 'Logical Volumes'
3)Select 'Action'
4)Select 'Increase size
If you have installed JFS the filesystem is increased online, otherwise SAM unmounts the filesystem if it not is in use.
If the filesystem is in use launch this command:
# fuser filesystem_name
and after kill the porcess.
Regards, Ernesto.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 08:04 PM
09-06-2005 08:04 PM
Re: Want to Resize the size of logical volume(mount point)
The bdf is here
Filesystem kbytes used
/dev/vg00/lvol3 4194304 1510528
/dev/vg00/lvol1 505392 82320
/dev/vg00/lvol7 5242880 1428392
/dev/vg00/lvol6 2097152 1517616
/dev/vg00/lvol5 1048576 4224
/dev/vg04/lvol1 5120000 4524481
avail %used Mounted on
2664480 36% /
372528 18% /stand
3785096 27% /var
575024 73% /usr
1037728 0% /tmp
559200 89% /product/abcde
and there are many mounted points these are some for reference.
I wanna Increase /product/abcde .
I tried by SAM but in Actions menu there is no sub menu called {Increase Size}.
Please Guide me in some details.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 08:10 PM
09-06-2005 08:10 PM
Re: Want to Resize the size of logical volume(mount point)
In the SAM main window, you must first open "Disk and Filesystem", in thet window you should open "Logical volumes". Highligt the volume you want to increase, then open the "Action " menu. Now, you should find "Increase size".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 08:11 PM
09-06-2005 08:11 PM
Re: Want to Resize the size of logical volume(mount point)
bdf /product/abcxx
would give info about volume lets say:
/dev/vg01/lvol1
To get info about volume group:
vgdisplay -v vg01
to get info about logical volume
lvdisplay -v /dev/vg01/lvol1 | more
If you don't need to add disk and you have OnlineJFS installed you would be able to online extend volume and then the filesystem:
lvextend -L 10240 /dev/vg01/lvol1
fsadm -F vxfs -b 10485760 /product/abcxx
for more information look at this document:
http://www5.itrc.hp.com/service/iv/node.do?admit=552267591+1108810758895+28353475&node=prodITRC%2FWW_Start%2FN1%7C16%7C11
you want to look at the chapter : Modifying a LV
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 08:13 PM
09-06-2005 08:13 PM
Re: Want to Resize the size of logical volume(mount point)
===========Extending Filesystem==============
With OnlineJFS:
===================
fsadm -F vxfs -b 10240M /mountpoint
Without OnlineJFS:
=======================
Unmount filesystem
lvextend -L 10240 /dev/vgname/lvname
extendfs -F vxfs /dev/vgname/lvname
Mount filesystem
Checking whether Online jfs product is installed on the system
swlist | grep -i jfs
Regards,
Syam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 08:16 PM
09-06-2005 08:16 PM
Re: Want to Resize the size of logical volume(mount point)
In sam after entering in to
-sam
-disks and filesystems
-logical volumes
-Actions
in Actions menu i can't find Increase Size sub menu.
Please guide me in detail.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 08:17 PM
09-06-2005 08:17 PM
Re: Want to Resize the size of logical volume(mount point)
Regards,
Syam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 08:38 PM
09-06-2005 08:38 PM
Re: Want to Resize the size of logical volume(mount point)
You must highligt the volume you want to increase. Then. the Increase size appears in menu.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 08:38 PM
09-06-2005 08:38 PM
Re: Want to Resize the size of logical volume(mount point)
In Actions menu there is only these sub menus
Actions
â Open Item
â â â â â â â â â â â â â â â â â â â â â â â â â â â â â â â â
â Go to Top Level
â Add Custom Application...
â Add Custom Application Group...
â ===============================
and I don't have OnlineJFS installed.
thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 08:44 PM
09-06-2005 08:44 PM
Re: Want to Resize the size of logical volume(mount point)
Good Day,
Shyam can u please give me the commands in details.
Please shyam guide me.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 08:45 PM
09-06-2005 08:45 PM
Re: Want to Resize the size of logical volume(mount point)
Logical Volumes menu?
I get that menu when I'm in the menu above (Disk and Filesystems)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 08:48 PM
09-06-2005 08:48 PM
Re: Want to Resize the size of logical volume(mount point)
# fstyp /dev/vg04/lvol1
xvfs or hfs --> use this in your extendfs command
# umount /product/abcde
# lvextend -L 10240 /dev/vg04/lvol1
# extendfs -F vxfs /dev/vg04/rlvol1
whatch the r in rlvol1
# mount /product/abcde
Could be you first need to shutdown your application using /product/abcde
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 08:58 PM
09-06-2005 08:58 PM
Re: Want to Resize the size of logical volume(mount point)
Seems as you are at the top level of SAM. SAM is a general tool for system administration, not only for managing filesystems.
You must open the appropriate subwindows in SAM before you can mange your filesystem/LVMs (see my previous posts).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 09:03 PM
09-06-2005 09:03 PM
Re: Want to Resize the size of logical volume(mount point)
I got it "Increase Size" and I did this thanks very very much to all for distrubing.
Thanks Thanks alot again.
Ahmed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 09:03 PM
09-06-2005 09:03 PM
Re: Want to Resize the size of logical volume(mount point)
Mohammed Ahmed, navigating through SAM is done with the arrow keys the space bar (to select) and the Enter key (to enter selected menu) and Tab to get to the top menus and back.
Of course you might know all this already, in which case perhaps SAM is doing something odd or you are having display problems and my humblest apologies for not explaining things at the right level.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 09:04 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2005 09:05 PM
09-06-2005 09:05 PM
Re: Want to Resize the size of logical volume(mount point)
please copy & paste the fsadm command on your unix shell prompt after changing the mount point name. That will do your work if online jfs is installed.
Else please post the output of the following.
#bdf
#swlist|grep -i jfs
Regards,
Syam