- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Again: "Listener" High Availability? (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
Discussions
Discussions
Discussions
Forums
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
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
тАО11-22-2000 07:56 AM
тАО11-22-2000 07:56 AM
Again: "Listener" High Availability? (ORACLE)
I'm rookie, I recently posted How-To: "Listener" High Availability? ...I just want to clarify that I do have 'floating' IP, the HP personnal configured this...when I said HOST-A and HOST-B I meant PKG-A and PKG-B (sorry, my fault). What I'm doing is starting and stoping oracle instances from the customer_defined_run_cmds and customer_defined_halt_cmds respectively.
I get the file systems mounted and everything but as I said, I get "database not mounted".
I believe is an Oracle issue...cause the HP personnal configured this two packages to mount their file systems where oracle databases (binaries & data) are...again, I am just customizing...
function customer_defined_run_cmds
{
su - oracle -c "/home/oracle/orastart.sh TBSCS"
su - oracle -c "/home/oracle/orastart.sh DRTEST"
function customer_defined_halt_cmds
{
su - oracle -c "/home/oracle/orastop.sh TBSCS"
su - oracle -c "/home/oracle/orastop.sh DRTEST"
any other suggestions???
---------- John Palmer Wrote ----------
Hi,
You need to configure your Serviceguard Package to have its own 'floating' IP address and configure the listener to listen on that address only.
Let me know if you need full details on how to configure this.
Regards,
John
------------- Pramod Wrote -----------------
Hi,
There is an IP associated with each package configured in MC/SG to make the package failover transparent to the end user and this IP is know as floating IP address.
This IP would be boud to the system on which the concerned package is running ( done by MC/SG control script) and all the user/application package must use this IP address for transparency.
From your input it seems that you haven't configured any floating IP with the package ( oracle) and you are using the IP address of the primary system in your package ( oracle ) configuration file.
You need to configure the Floating IP address in your control script and use that IP in your oracle config file instead of Host A IP address.
Refer the docs at http://www.docs.hp.com/hpux/onlinedocs/B3936-90026/B3936-90026.html for more informations.
Regards,
Pramod
---------- Rookie Wrote ---------
I'm trying to configure databases high availability within HP9000 Cluster (Two nodes).
When node A fails, its database file systems are mounted in node B but I cannot access the node B database. I added both hosts names and oracle_sid's in each listener.ora file, but I cannot see the instance when I do "ps - eaf|grep pmon"; however when I try to startup the database manually It says database is already running and when trying to stop it I get "database not mounted".
Here is how I configured my hosts in listener.ora:
SQLNET.AUTENTICATION_SERVICES = (BEQ,NONE)
LISTENER =
(ADDRESS_LIST =
(ADDRESS= (PROTOCOL= TCP)(HOST = PKG A)(PORT = 1521))
(ADDRESS= (PROTOCOL= TCP)(HOST = PKG B)(PORT = 1526))
...But I saw an example somewhere like this:
LISTENER =
( ADDRESS_LIST =
(ADDRESS =
(PROTOCOL=tcp)
(HOST=
(PORT=1521)
(COMMUNITY=UK_SUP_TCPIP)
)
(ADDRESS =
(PROTOCOL=ipc)
(KEY=700)
(COMMUNITY=UK_SUP_TCPIP)
)
)
I didn't try this way cause I didn't know what is that Key=700.
Any suggestions please ???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-22-2000 08:10 AM
тАО11-22-2000 08:10 AM
Re: Again: "Listener" High Availability? (ORACLE)
Basically, for daily ups and downs of the database (since presently on some boxes we are not doing a hot backup) I ALWAYS run my scripts from /usr/local/bin.
I set up a script (shutdown_oracle.sh) that just does the su -oracle -c and then states to run the down scripts that are sitting out under /home/oracle/stop_db.sh.
NOW in my /etc/cmcluster/~.pkg I just run the /usr/local/bin/shutdown_oracle.sh
So far, it works ok for me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-23-2000 03:39 AM
тАО11-23-2000 03:39 AM
Re: Again: "Listener" High Availability? (ORACLE)
Do you obtain any Oracle error messages - its not too clear from above?
You seem to be starting and stopping the database from the local server(s). If this is the case, then your listener configuration, (right or wrong), would be irrelevant as svrmgrl does not use the listener. If you having problems mounting the database then, from an Oracle perspective, are the database control files in the location indicated by the init
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-23-2000 04:13 AM
тАО11-23-2000 04:13 AM
Re: Again: "Listener" High Availability? (ORACLE)
The IPC lines don't matter, you should be concerned with the TCP lines that is what your system uses.
(ADDRESS_LIST =
(ADDRESS= (PROTOCOL= IPC)(KEY= test))
(ADDRESS= (PROTOCOL= IPC)(KEY= PNPKEY))
(ADDRESS= (PROTOCOL= TCP)(Host= hostname)(Port= 1521))
)
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(GLOBAL_DBNAME= hostname.)
(ORACLE_HOME= /oracle)
(SID_NAME = test)
)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-24-2000 01:25 AM
тАО11-24-2000 01:25 AM
Re: Again: "Listener" High Availability? (ORACLE)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-01-2000 01:39 AM
тАО12-01-2000 01:39 AM
Re: Again: "Listener" High Availability? (ORACLE)
Yes, it's true, HP sells an solution for HA Oracle Databases. It costs approx $750. Although, it is quite easy to write the scripts yourself.
With regards,
Dieter Degrendele