- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Extend the volume group on cluster system
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
06-06-2008 03:44 AM
06-06-2008 03:44 AM
I have the cluster with two nodes. In my autoraid I had 5 LUN on which I create one vg. Now I create the other LUN and want to extend my vg on this LUN. How to do this?
Thank you for your reply
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2008 03:55 AM
06-06-2008 03:55 AM
Re: Extend the volume group on cluster system
To do this hot, you need OnlineJFS or a tool that ships with CFS to extend the filesystem.
I would suggest scheduling downtime to cover yourself on this because extending the filesystem hot can lead to unexpected outcomes.
Here is the doc you need:
http://www.repton.co.uk/library/symantec_storage_foundation_cluster_file_system.pdf
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2008 04:43 AM
06-06-2008 04:43 AM
SolutionYou can extend the volumegroup on the active clusternode:
- vgextend vgXX /dev/dsk/cXtYdZ
- vgexport -p -m vgXX.map -f vgXX.dev /dev/vgXX
Then copy the vgXX.map and vgXX.dev files to the backup-node.
On the backup system, you have to vgexport the volumegroup and then vgimport it with the new devices:
- vgexport vgXX
- mkdir /dev/vgXX
- mknod /dev/vgXX/group c 64 0xXX0000
- vgimport -m vgXX.map -f vgXX.dev /dev/vgXX
- vgchange -a r vgXX
- vgcgfbackup vgXX
- vgchange -a n vgXX
The rest depends on what are you going to do with the additional diskspace?
- extend an existing lvol?
- create a new lvol?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2008 06:35 AM
06-06-2008 06:35 AM
Re: Extend the volume group on cluster system
Thank you for your help. After extending the volume group, I'd like to extend an existing lvol. More detail for the procrdure will help me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2008 07:47 AM
06-06-2008 07:47 AM
Re: Extend the volume group on cluster system
Here is the Technical knowledge base - document
http://www12.itrc.hp.com/service/cki/docDisplay.do?docLocale=en&docId=emr_na-c01053585-1
Regards,
Asif Sharif
Asif Sharif
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2008 10:27 AM
06-06-2008 10:27 AM
Re: Extend the volume group on cluster system
http://forums12.itrc.hp.com/service/forums/questionanswer.do?threadId=1052984
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2008 05:18 AM
06-09-2008 05:18 AM
Re: Extend the volume group on cluster system
first you have to extend the volume lvolY to the new disk cXtXdX:
lvextend -l
Then you have to extend the filesystem:
- If you have onlineJFS installed:
fsadm -F vxfs -b
- If you don´t have onlineJFS you have to unmount the filesytem and then extend it:
extendfs /dev/vgXX/rlvolY
Be sure you have an backup of your data!!
Check the lvol-config on the standby node:
vgchange -a r vgXX
vgdisplay -v vgXX
vgchange -a n vgXX
If this node doesn´t sees the right information, do the vgexport/vgimport again