- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Service Guard and Oracle
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
05-16-2002 10:22 AM
05-16-2002 10:22 AM
Service Guard and Oracle
The backup database is a sync'd copy of the production database sitting on a disk array. The backup database is up and active on the server they want to failover to.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 10:30 AM
05-16-2002 10:30 AM
Re: Service Guard and Oracle
The way service guard normally work is this,
Service guard running with an oracle database. Oracle database processes monitored by service Guard. If there is a problem with the database and the oracle database process is killed / dies off, the database package will be failed over to the standby node and the database gets started on the failover node.
The sort of situation you are talking about is more like an OPS (Oracle Parallel Server ) configuration, where oracle datbase is running on both the service guard nodes. If the oracle database dies on one node, the same is started automatically on the other node from where the database died on the first node.
Hope this helps.
regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 10:36 AM
05-16-2002 10:36 AM
Re: Service Guard and Oracle
SERVICE_NAME
SERVICE_FAIL_FAST_ENABLED
SERVICE_HALT_TIMEOUT
as well as the following in the package control script:
SERVICE_NAME[0]
SERVICE_CMD[0]
SERVICE_RESTART[0]
By defining SERVICE_CMD[0], you can make use of any custom made script. Perhaps the Master Toolkit can be used as a starting point.
HTH,
Mladen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 10:43 AM
05-16-2002 10:43 AM
Re: Service Guard and Oracle
We started to setup our Oracle instance in a package with the Oracle processes monitored for failover, but then we realized that if we took down the database for a cold backup, the monitor process would tell ServiceGuard to failover the package. Oops! Now, if you plan to keep Oracle up all the time and never take it down, monitoring the processes for failure will work just fine.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 10:51 AM
05-16-2002 10:51 AM
Re: Service Guard and Oracle
So if your main Oracle application is in packageA, and your Oracle backup is in packageB, you can configure the following in your packageB config file:
RESOURCE_NAME /cluster/package/package_status/packageA
RESOURCE_POLLING_INTERVAL 60
RESOURCE_START AUTOMATIC
RESOURCE_UP_VALUE != UP
So, when packageA halts, packageB will start automatically (on its default node). You will still need to define "SERVICE" in the packageA config and control script in order to halt packageA when the right conditions are detected.
Warning: you will also need the latest patches for HA Monitors
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2002 11:07 AM
05-16-2002 11:07 AM
Re: Service Guard and Oracle
"Outline for configuring a complex ServiceGuard package"
contains the basics.
You can avoid the problem described by John if you configure a check for a flag file in your script. See
"UXSGKBQA00000030"
for more information.
Mladen