- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Change configuration
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
07-25-2004 11:11 PM
07-25-2004 11:11 PM
I need to increase the space to a logical volume that is mounted by a package of cluster. /dev/vgshare/lvol2. But it's running an application that uses it filesystem mounted in the logical volume. And if i stop the package i lost the commmunication to the configuration of vgshare and lvol2.
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2004 11:53 PM
07-25-2004 11:53 PM
Re: Change configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2004 12:04 AM
07-26-2004 12:04 AM
Re: Change configuration
Looks like you don't have root access to your System... Let us know more details about system and your System Priviledges
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2004 12:06 AM
07-26-2004 12:06 AM
Re: Change configuration
then vgchange -a e vgname
This allows you to work on the logical volume to extend it, and then the file system.
When the work has been done, vgchange -a n vgname, and restart the package.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2004 12:55 AM
07-26-2004 12:55 AM
Re: Change configuration
swlist -v -l fileset |grep OnlineJFS
SHould see something like:
tag OnlineJFS
software_spec OnlineJFS,l=/,r=B.11.11,a=HP-UX_B.11.11_32/64,v=HP
control_directory OnlineJFS
Product Name OnlineJFS
The OnlineJFS product is a superset of the standard VxFS File System.
OnlineJFS.VXFS-ADV-RUN
software_spec OnlineJFS.VXFS-ADV-RUN,l=/,r=B.11.11,a=HP-UX_B.11.11_32/64,v=HP,fr=B.11.11,fa=HP-UX_B.11.11_32/64
Product Name OnlineJFS
ancestor OnlineJFS.VXFS-ADV-RUN
If yes, then, to increase to say 8GB:
lvextend -L 8192 /dev/vgshare/lvol2
fsadm -b 8192M /mountpoint
If no OnlineJFS:
Stop package
vgchange -c n /dev/vgshare
vgchange -a y /dev/vgshare
lvextend -L 8192 /dev/vgshare/lvol2
extendfs -F vxfs /dev/vgshare/lvol2
vgchange -a n /dev/vgshare
vgchange -c y /dev/vgshare
start package
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2004 01:48 AM
07-26-2004 01:48 AM
Re: Change configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2004 12:42 AM
07-27-2004 12:42 AM
Solution# vgchange -a e
This will not harm any files or perturb the system in any way.
You will then have access to the logical volumes in the file system.
To grow a file system that does not have ONLINE JFS available, use these steps:
# lvextend -L
(Insure -L is larger than it current is!)
After the size of the logical volume has been increased, grow the file system within it:
# extendfs -v /dev/vgshare/rlvol2
Once completed, mount the file system and use 'bdf' to verify your change.
Next, deactivate the VG:
# vgchange -a n vgshare
.. .and start the package.
-StephenD.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2004 01:14 AM
07-27-2004 01:14 AM
Re: Change configuration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2004 04:42 AM
07-27-2004 04:42 AM
Re: Change configuration
vgcfgbackup does - but that is done automatically with every LVM command, at least on the node where the command is executed. I recommend that you vgcfgbackup vgshare (all shared VGs) on the other node as well.
-sd-