- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- VGs in cluster
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
08-18-2004 04:41 AM
08-18-2004 04:41 AM
Please help if possible.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 04:56 AM
08-18-2004 04:56 AM
Re: VGs in cluster
If you mean you want the VGs up & the pkg(s) down, then after halting the packages just:
vgchange -a e /dev/vg_name
and
mount /dev/vg_name/lv_name /mnt_point
when you're done
umount /mnt_point
and
vgchange -a n /dev/vg_name
To make the filesystems available.
And no you cannot remove the VGs from the cluster while it's up.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 04:58 AM
08-18-2004 04:58 AM
Solution1) Shutdown the package (not the cluster !)using the volume group.
2) execute vgchange -c n /dev/vgname for all the VGs that you want to be able to mount when the cluster is down
3) Now you can halt the cluster and mount the volume groups
Again, for the package to be able to mount the volume groups, you need to execute vgchange -c y /dev/vgname when the cluster daemons are running in the system.
If you can tell us what you are trying to achive, our folks could possibly suggest you the best possible way to achive the same :-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 05:03 AM
08-18-2004 05:03 AM
Re: VGs in cluster
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 05:11 AM
08-18-2004 05:11 AM
Re: VGs in cluster
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 05:23 AM
08-18-2004 05:23 AM
Re: VGs in cluster
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 06:09 AM
08-18-2004 06:09 AM
Re: VGs in cluster
Read my vgchange command line again.
Note is does *not* use -a y - it uses -a e
In that case one does not need to use -c n
Why run an extra command just to use -a y?
I sure don't like to type that much.
The *only* requirement to use -a e is that the cluster daemon must be running.
Later,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 06:17 AM
08-18-2004 06:17 AM
Re: VGs in cluster
I fully understand it was vgchange -a e and not vgchange -a y.
But if I have understood Gabriel's question, he wanted to activate the volume groups when the **CLUSTER** is down and not just the **PACKAGE**.
***I want to take Service Guard out the equation and mount the same VGs from the array***
*** am currently trying to shutdown the cluster***
Now we are clear that clsuter daemons are not going to be running, so you cannot use vgchange -a e ...Am I missing something here ?
-- Sundar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 06:58 AM
08-18-2004 06:58 AM
Re: VGs in cluster
Understood.
I guess what's confusing is the last sentence
"Do I have to manually vgchange each vg in the cluster or can I edit the cluster config file to take the VGs out of the cluster automatically?"
To me that can be read A) The cluster is up & running & I want to remove the VGs from it. or B) I want to start the cluster w/o mounting the VGs. Either way implies the cluster is up.
Furthermore in his later post he asks
"I want to know if the only way to do this is to shutdown the cluster, manually issue vgchange -c n on each VG designated in cluster and then mount manually."
And the simple answer is no - stopping the cluster, using -c n & -a y is not the only way. You can stop the pkg(s) & use -a e prior to mounting. Here, I'm used to having multiple pkgs on servers, so I view halting the cluster as an absolute last resort. Obviously this user has a single pkg cluster.
I think we were just looking at it from different angles. I can see your point, I would hope you can see mine.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 07:18 AM
08-18-2004 07:18 AM
Re: VGs in cluster
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 07:19 AM
08-18-2004 07:19 AM
Re: VGs in cluster
Thanks again,
Gabe