Oracle shutdown steps in a cluster

Hi all,
The PRD setup is as follows
One single oracle 10.2.0.4 Database, with two physical Servers (DBServ-1, DBServ-2)
Running Application is SAP
Oracle is in a SUSE Linux cluster . (Not RAC environment. Just an OS level cluster to maintain fail over);
Currently DBServ-1 node is active, and DBServ-2 is standby
We needs to shutdown this entire setup and restart again.
What is the correct set of sequence to shutdown oracle DB?
Since DBServ-2 is standby, without any issue we can shutdown DBServ-2 as normal server shutdown. (ex: init 0)
But, oracle is up and running on DBServ-1 Node.
From where should i stop this?
Is it from the SuSE Cluster or from inside the DB? (login as / and issue shutdown immediate)
Regards,
Zerandib

Hi,
As i understand is OS is clustered not the db. Better is to manually shutdown the db clean and then start it.
TO start login through sqlplus sys as sysdba
1. startup
2. Once its done, start the listener
3. Start the application
Anand

Similar Messages

  • Installation of oracle fail safe on windows cluster - plz very urgent

    hi everybody,
    this is the first time i am going to install oracle failsafe on windows clusters.
    i am going to install oracle 9i release 2 software.
    so i have to install the patches.
    plz tell me with oracle cmds how to do the following.
    1. after installing oracle 9i rel 2 how to install the patches to it in windows environment?
    2. how to create oracle database on one node using shared disk for storage.
    3. how to install oracle fail safe on each cluster?
    4. how to configure cluster using fail safemanager?
    plz provide me soln asap very urgent.
    and don't forget to give me the soln with commands aqnd step by step.
    plz plz plz
    thanks in advance
    suresh

    For 9i , this is better:
    http://download-uk.oracle.com/docs/cd/B10501_01/rac.920/a96600/toc.htm

  • RAW disks for Oracle 10R2 RAC NO SUN CLUSTER

    Yes you read it correctly....no Sun cluster. Then why am I on the Forum right? Well we have one Sun Cluster and another that is RAC only for testing. Between Oracle and Sun, neither accept any fault for problems with their perfectly honed products. Currently, I have multipathed fiber hba's to a Storedge 3510, and I've tried to get Oracle to use a raw lun for the ocr and voting disks. It doesn't see the disk. I've made sure they are stamped for oracle:dba, and tried oracle:oinstall. When presenting /dev/rdsk/C7t<long number>d0s6 for the ocr, I get a "can not find disk path." Does Oracle raw mean SVM raw? Should I create metadisks?

    "Between Oracle and Sun, neither accept any fault for problems with their perfectly honed products"...more specific:
    Not that the word "fault" is characterization of any liability, but a technical characterization of acting like a responsible stakeholder when you sell your product to a corporation. I've been working on the same project for a year, as an engineer. Not withstanding a huge expanse of management issues over the project, when technical gray areas have been reached, whereas our team has tried to get information to solve the issue. The area has become a big bouncing hot potato. Specifically, when Oracle has a problem reading a storage device, according to Oracle, that is a Sun issue. According to Sun, they didn't certify the software on that piece of equipment, so go talk to Oracle. In the sun cluster arena, if starting the database creates a node eviction from the cluster, good luck getting any specific team to say, that's our problem. Sun will say that Oracle writes crappy cluster verify scripts, and Oracle will say that Sun has not properly certified the device for use with their product. Man, I've seen it. The first time I said O.K. how do we avoid this in the future, the second time I said how did I let this happen again, and after more issues, money spent, hours lost, and customers, pissed --do the math.   I've even went as far as say, find me a plug and play production model for this specific environment, but good luck getting two companies to sign the specs for it...neither wants to stamp their name on the product due to the liability.  Yes your right, I should beat the account team, but as an engineer, man that's not my area, and I have other problems that I was hired to deal with.  I could go on.  What really is a slap in face is no one wants to work on these projects, if given the choice with doing a Windows deployment, because they can pop out mind bending amounts of builds why we plop along figuring out why clusterware doesn't like slice 6 of a /device/scsi_vhci/ .  Try finding good documentation on that.  ~You can deploy faster, but you can't pay more!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Identifying Oracle Shutdown or session errors

    Oracle 11.1.7.0:
    We need to make our application be able to accept user requests or submissions on the queue even if Oracle is down or if Oracle is having some problems. For that purpose I need to identify specific Oracle error codes. I looked up online and found Jboss's exception sorter class. It looks something like this:
       public boolean isExceptionFatal(SQLException e)
          String error_text = (e.getMessage()).toUpperCase();
          /* Check oracle specific errors for broadcasting connectionerror
          return (error_text.indexOf("ORA-00600") > -1) //Internal oracle error
             || (error_text.indexOf("ORA-00028") > -1)  //session has been killed
              || (error_text.indexOf("ORA-01012") > -1)  //not logged on
             || (error_text.indexOf("ORA-01014") > -1)  //Oracle shutdown in progress
             || (error_text.indexOf("ORA-01033") > -1)  //Oracle initialization or shutdown in progress
             || (error_text.indexOf("ORA-01034") > -1)  //Oracle not available
              || (error_text.indexOf("ORA-02396") > -1)  //exceed ed maximum idle time, please connect again
             || (error_text.indexOf("ORA-03111") > -1)  //break received on communication channel
             || (error_text.indexOf("ORA-03113") > -1)  //end-of-file on communication channel
             || (error_text.indexOf("ORA-03114") > -1)  //not connected to ORACLE
              || (error_text.indexOf("ORA-01014") > -1)  //Oracle shutdown in progress
             || (error_text.indexOf("ORA-01033") > -1)  //Oracle initialization or shutdown in progress
             || (error_text.indexOf("ORA-01034") > -1)  //Oracle not available
             || (error_text.indexOf("ORA-03111") > -1)  //break received on communication channel
             || (error_text.indexOf("ORA-03113") > -1)  //end-of-file on communication channel
             || (error_text.indexOf("ORA-03114") > -1)  //not connected to ORACLE
             || (error_text.indexOf("TNS-") > -1)       //Net8 messages
             || (error_text.indexOf("SOCKET") > -1)     //for control socket error
             || (error_text.indexOf("BROKEN PIPE") > -1);
       }I just wanted to check if above error codes are the correct ones. I understand there are tons of Oracle error code but I am in particular interested where Oracle is down or is having some temporary problem for eg: archiver error. I am kind of not sure of how to go about figuring this out.

    I just wanted to check if above error codes are the correct ones. I understand there are tons of Oracle error code but I am in particular interested where Oracle is down or is having some temporary problem for eg: archiver error. I am kind of not sure of how to go about figuring this out.You can simulate these situations by
    1. shutting down the instance.
    2. filling the archive log destination with temporary files (which you need to clean up later).

  • Oracle licensing in a Vmware Cluster

    My question is related with Oracle licensing in a Vmware Cluster.
    We have two VMware cluster in our datacenter:  the first one (8 hosts – 16 sockets) is for not Oracle VM and the second (2 host – 3 sockets) only for Oracle VM. Both are connected to the same IBM V7000 with zoning and LUN masking that guarantees isolation.
    In the Oracle cluster, DRS and HA are deactivated and VMotion logs are monitored for license compliance.
    In this isolated environment, Oracle pretend to license every socket to any host connected to the V7000, regardless of the cluster that are connected the host.
    Do you know how similar implementations with Oracle have been resolved (in terms of licensing)?
    Thanks in advance!

    Definitely a useful article. Also useful is this one:
    http://houseofbrick.com/managing-oracle-licensing-in-a-shared-storage-environment/
    And the various Oracle licensing-related articles written by Michael Webster:
    http://longwhiteclouds.com/tag/oracle/
    http://longwhiteclouds.com/tag/licensing/
    To me personally it boils down to the very simple contractual key element:
    By contract, you have to license every physical processor of every physical server where Oracle was/is running (whether that was as a VM or physical is irrelevant).
    Conversely this means that by contract, you don't have to pay a penny for any physical server that never ever had Oracle software running on itself, period.
    It's amazing how Oracle reps can keep ****ing with their customers like this.

  • Oracle shutdown notification (OracleNotification) code sample

    Hi,
    I'm looking for a code sample demonstrating the use of OracleNotification for catching Oracle shutdown events.
    Thanks
    Philippe

    Hi,
    I'm looking for a code sample demonstrating the use of OracleNotification for catching Oracle shutdown events.
    Thanks
    Philippe

  • Oracle shutdown or initialization in progress

    Dears!
    I have installed 9iAS+8.1.7 on the same machine.9iAS & database
    was working.For any reason we changed the IP address of the machine and restart the machine.Again we change the IP address to
    the original one when 9iAS+database was installed,again restart the computer.But now when i connect through SQL*plus of database or 9iAS's SQL*plus to the database we failed to connect the error,"ORA-01033 utdown or initialization is in progress"
    Kindly help to resolve the prob.
    Many thanks!

    Hi,
    Please make sure the Tnsnanames.ora is having the Corretc IP Address. Please follow these steps:
    1. Go to the Oracle Bin dir. from command Prompt.
    2. Svrmgrl <Enter>
    3. Connect internal/password@service
    4. shutdown immediate
    5. Startup
    Mail me if you still have this problem, e-mail id: [email protected]
    Regards,
    G. Rajakumar.

  • URGENT!These errors shutdown one server in cluster.

    Hi,
    We are getting following errors in our portal which ultimately shutdown one server in the cluster.
    Can anybody help?
    Fri Mar 08 13:28:40 SGT 2002:<I> <JDBC Pool commercePool> A connection from pool commercePool was tested during reserve with a select count(*) from WLCS_IS_AL IVE and failed:
    Fri Mar 08 13:28:40 SGT 2002:<I> <JDBC Pool commercePool> java.sql.SQLException: Refcursor value is invalid at oracle.jdbc.dbaccess.DBError.check_error(DBError.java) at oracle.jdbc.ttc7.TTCStatement.<init>(TTCStatement.java) at oracle.jdbc.ttc7.TTC7Protocol.open(TTC7Protocol.java) at oracle.jdbc.driver.OracleStatement.<init>(OracleStatement.java) at oracle.jdbc.driver.OracleConnection.createStatement(OracleConnection.java) at weblogic.jdbc.common.internal.ConnectionEnv.test(ConnectionEnv.java:687) at weblogic.common.internal.ResourceAllocator.reserve(ResourceAllocator.java:626) at weblogic.common.internal.ResourceAllocator.reserve(ResourceAllocator.java:555) at weblogic.common.internal.ResourceAllocator.reserveWaitSecs(ResourceAllocator.java:544) at weblogic.jdbc.common.internal.ConnectionPool.reserve(ConnectionPool.java:174) at weblogic.jdbc.common.internal.ConnectionPool.reserveWaitSecs(ConnectionPool.java:145) at weblogic.jdbcbase.pool.Driver.connect(Driver.java:177) at weblogic.jdbcbase.jts.Driver.connect(Driver.java:244) at com.beasys.commerce.axiom.util.weblogic.helper.WebLogicHelper.getJtsConnection(WebLogicHelper.java:544) at com.beasys.commerce.axiom.util.weblogic.helper.WebLogicHelper.getConnection(WebLogicHelper.java:416)
    Thanking You in Advance, -Bharat

    Hey is that u r using connection pool.
    Check for number of connection in the Oracle Server opened.
    Check up number of connection persist both in oracle/java.
    Is driver not crashed or jvm right.
    Shyam

  • Oracle Shutdown From Sqlplus ???

    I want to shutdown oracle 10g rel 2 using sqlplus (shutdown Normal not abort). I start sqlplus in nolog mode then connect through sys as sysdba, shutdown abort is working But normal is not working BCZ acting session is current session.

    Use [Shutdown Immediate |http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/start.htm#sthref589] clause
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • How to install oracle on windows 2 nodes cluster

    Hi,
    As a beginner, I need to how to install (i.e. steps ) Oracle 11g R1 on windows 2003 SP2 enterprise, having 2 nodes (active -passive) clusters on it?
    Thanks,

    Hi
    This is hard to describe on the forum. I hope you are doing it for some fun so it is better to start from standalone version before progressing to clusters.... Don't take an offence but clustering and beginners are like throwing out the baby into the water in the middle of the ocean.... Not really adviseable...
    P.

  • Oracle ASM Configuration on Solaris Cluster - Oracle 11.2.0.3

    Hi,
    I want some clarifications!
    I need to set Active and Passive Cluster settup on Solaris 10 SPARC Operating System, the HA software is Solaris Cluster and Oracle 11.2.0.3.
    1) I understand "Single instance Oracle ASM is not supported with Oracle 11g release 2" so we need to go for Clustered ASM - is it required to use RAC framework in this case?
    2) When i use the RAC framework, do i need to have license for RAC?
    Am new to Oracle, any help is appreciated.
    Regards,
    Shashank

    Hi,
    I want some clarifications!
    I need to set Active and Passive Cluster settup on Solaris 10 SPARC Operating System, the HA software is Solaris Cluster and Oracle 11.2.0.3.
    1) I understand "Single instance Oracle ASM is not supported with Oracle 11g release 2" so we need to go for Clustered ASM - is it required to use RAC framework in this case?
    2) When i use the RAC framework, do i need to have license for RAC?
    Am new to Oracle, any help is appreciated.
    Regards,
    Shashank

  • Want to develop a booking calender in oracle XE- Step by step process

    I want to develop a booking calendar for meeting rooms, where a person should be able insert time (from and til) and able to view available rooms at that particular time.
    In application (Page 1) it should show registration form with following insert data:
    Date,
    Time from,
    Til time,
    Total number of Person.
    (Page 2) should view
    List of available rooms,
    Booking (button)
    (Page 3) registers data if person wants to book particular room:
    Name of person,
    Room number,
    Date,
    From time,
    Til Time,
    Comment
    Register button
    I am new to oracle so it would be great if you guide me through step by step.
    Thanks

    Why don't you try the tutorials in the Applicaton Express Documentation first? Application Express Documentation and Tutorials
    C.
    Message was edited by:
    cd

  • Oracle RAC + Clusterware and another Cluster with Clusterware for SAP

    Hi,
    I have some questions about implementation of Oracle RAC and Clusterware with SAP
    For exemple, an architecture with 4 servers ( 2 real and 2 vritual ).
    I would like to know if i can do this
    2 servers for the first cluster.
    First cluster is with Clusterware and Oracle RAC
    This is for all the SAP Oracle databases environment
    I think there is no problem here.
    Now, with 2 others servers il would like to make another cluster (with also clusterware ) for SAP Central services (SCS) and enque replication server (ERS)
    Because all architecture is for only one SAP environment with separate services.
    1 for Database (cluster 1)
    1 for Central services ( cluster 2, virtual machine )
    1 for Dialogue Instance (no cluster)
    To be clear, the second cluster is to make HA of central services SAP (SCS and ERS )
    My question 2 are :
    Is it a good job to do this ? or there is anything wrong ?
    Do i have to install antoher clusterware for this 2 servers or i have to make anything with the existing clusterware + oracle RAC ??
    Thank you very much for you help
    Edited by: user12395221 on 29 déc. 2009 15:36

    Hi Givre,
    have you checked: Providing High Availability for SAP Resources (http://www.oracle.com/technology/products/database/clusterware/pdf/sap-availability-on-rac-twp.pdf) available on otn.oracle.com/clusterware? Not being an SAP expert myself, I still think, this paper describes the configuration - at least partially - that you are trying to set up.
    Just an idea. Thanks,
    Markus

  • Oracle ASM  installation in Solaris Cluster

    hello Experts,
    Could someone please tell me how to install Oracle ASM in Solaris Cluster and how to integrate it into the cluster resources.
    Details,
    2 Nodes (Pri & Sec) solaris 10 SPARC 64 bit OS
    solaris cluster 3.3 u5/11
    Thanks & Regards

    hi,
    pls take a look at tihs doc
    http://docs.oracle.com/cd/E18728_01/html/821-2678/gjcwv.html
    regards,

  • Deploying OracleAS Single Sign-On Server Cluster setup with a Proxy Server

    I have a question regarding setting up a OracleAS Single Sign-On Server in a cluster mode along with a Apache Proxy Server.
    Step1 - I'm planning to install OracleAS Single Sign-On Server on two nodes sso1.oracle.com and sso2.oracle.com in a Cluster. Both the nodes in the cluster accesed via Load balancer i.e sso.oracle.com.
    Step2 - Then I'm planning to setup two Apache Servers as Proxy Server i.e apache1.oracle.com and apache2.oracle.com. These two apache servers are accessed via Load balancer i.e apache.oracle.com
    The question I have is
    1)while setting up OracleAS Single Sign-On cluster I would provide Load balancer host i.e sso.oracle.com as part of the install. So that all the user requests coming to sso1.oracle.com/sso2.oracle.com get redirected back to Load balancer.
    2)But as part of the Apache Server proxy setup I am also supposed to redirect from SSO server to apache.oracle.com
    But using ssocfg.sh I can only provide either sso.oracle.com or apache.oracle.com NOT BOTH.
    In this case what I should
    1) avoid redirecting to sso.oracle.com instead redirect only to apache server OR are there any other methods to configure.
    I have above setup working fine in DEV environment, where there is only one sso server and one apache proxy server. Problem really comes when I go for setting OSSO server as a cluster in this case I have to redirect to load balancer as well as proxy server?

    why not using webcacheclustering between the apache and the 2 sso's?

Maybe you are looking for

  • Saving the data in a jtextarea

    I have a mancala game that records which players turn it is, how many moves have been made, and which cup was selected. I am able to successfully save the game, but can't figure out how to save the data in the JTextArea. Please help me figure out how

  • Printing in Black And White

    I'm using iPhoto '08 7.1.5 and trying to print a color photo that I made black and white and it only prints the blackest blacks and the whitest whites, but nothing in between, giving me a partially printed picture. Is there some kind of setting that

  • Is there a limit on number of SANs in Lync certificate

    Hi, We are in the process of deploying Lync 2013 for a very large client. They have multiple companies and multiple sister companies. We are planning to use a single cert for the whole deployment. Net / Net 120 - 130 domains.   My question is, is the

  • Custom Portal iView (Retrieve user; Append text to URL; Redirect to URL)

    Hi all, I wish to create a custom Portal iView. I wish to fulfill the following requirements using this iView: 1) I wish to retrieve the Portal User ID of the user who is currently login in Portal. (Will the IUser class solve the purpose? I know IUse

  • MuVo FM 5GB teething probl

    Hi, I just got a MuVo FM 5GB about a month ago. It was working fine until one day when I try to eject it from the USB port after downloading music to it. The error message came onto the screen and told me to scan it. After I did that, I try disconnec