- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: MC Serviceguard question i.e file system names
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-19-2008 04:18 PM
06-19-2008 04:18 PM
MC Serviceguard question i.e file system names
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2008 10:49 PM
06-19-2008 10:49 PM
Re: MC Serviceguard question i.e file system names
What is your shared volume group configuration and mountpoints ?
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2008 11:00 PM
06-19-2008 11:00 PM
Re: MC Serviceguard question i.e file system names
If both packages contain a filesystem that must be mounted at /d001, those two packages cannot run together on the same node. In a two-node cluster, this is a big problem.
If you have this problem, you must reconfigure one of your application packages to use a different path.
A lot of the work in setting up a reliable HA cluster goes to _planning_ a configuration for the cluster and the applications within it. You cannot just take two stand-alone servers, sprinkle some ServiceGuard fairy dust on them and make them a cluster.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2008 01:58 AM
06-20-2008 01:58 AM
Re: MC Serviceguard question i.e file system names
Some of my clients have this kind of configuration : same mount points between a production server and a dev server. Application on production server is supposed to fail to dev server, dev application is not.
What I am used to do is to have a package for dev application, even if it is not supposed to failover. This way, I can relie on control file logic to unmount dev filesystems before starting production package on the dev server.
Of course doing this way leads me to make some modifications outside the normal "customer defined functions" area of the package control script. Typically, I add a call to a function of my own, like "StopDevPackage", just at the very beginning of treatment of package startup (if [[ $1 = "start" ]] ...)
I guess that HP will not support such modifications, but it works pretty well.
The supported way will be to reconfigure dev application so that mount points differ from production, but sometimes it is not possible :-(
Eric
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2008 05:51 AM
06-20-2008 05:51 AM
Re: MC Serviceguard question i.e file system names
On a 2 node cluster running active/active with same fs name - here's a couple scenarios and comments and you see if any fit. Eric mentions one method.
#1 Active Prod/Active Dev
Prod fails over to Dev box. With same mountpoints. This option says you failover and ONE pkg (Prod) gets to keep running.
You must halt Dev before Prod pkg takes off. At top of your pkg.cntl file in your PROD pkg put the following:
/usr/bin/cmhaltpkg -n $(/usr/bin/uname -n) dev-pkg-name
This checks that if Dev pkg is running on THIS box...halt it. Then it will proceed start continue and start up Prod pkg.
And this should be fully supported.
#2 Active Prod/Active Dev
Your mountpoints are the same.
This option lets you failover both pkgs to one box and both keep running.
Change one them!. Remember a mountpoint is just something you "hang" your data on. See if it is realistic to change d001 on the Dev box to dv001.
You'd might have to adjust some variable contstants. The dba's could hit the database environment &/or maybe you need to look at some /etc/profile or user account .profile. But do it once and your done.
Hope these help you,
Rgrds,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2008 08:38 AM
06-20-2008 08:38 AM