- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Volume group in MC/SG
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
12-16-2003 09:26 PM
12-16-2003 09:26 PM
I have a simple question. Do I have to halt the cluster when I am adding the new volume group (volume_group) to the cluster? Is it possible to add volume group to the cluster (make it cluster aware) while the cluster is running?
Thanks,
BZ
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2003 09:32 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2003 09:33 PM
12-16-2003 09:33 PM
Re: Volume group in MC/SG
Sure just use:
pvcreate -f /dev/rdsk/...&& vgcreate vgname /dev/dsk/.... && lvcreate -L size /dev/vgname & vgchange -c y /dev/vgname
You can add the volume group to the cluster ascii file so it will be activated cluster awaire if the cluster software is started.
to apply the ascii file use chcheckconf -v -C /etc/cmcluster/*.ascii and cmapplyconf -v -C /etc/cmcluster/*.ascii
This all can be done online.
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2003 09:39 PM
12-16-2003 09:39 PM
Re: Volume group in MC/SG
BZ
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-17-2003 02:50 AM
12-17-2003 02:50 AM
Re: Volume group in MC/SG
2) Create the new VG
3) Make it cluster-aware:
$ vgchange -c y
NOTE: this can only be done on a node where cmlvmd is active (node UP in cluster)
4) Add the VG and it's LVOL references to the package control script
5) Copy the package control script to adoptive nodes
6) Activate the VG on the node where it's package is UP
$ vgchange -a e
7) Mount the new VG's LVOLs to file systems
8) Test package halt/failover
-StephenDoud