Automatically start oracle after reboot

Is there a way to automatically start oracle after reboot? Our platform is Soaris 10 and Oracle 10.2.0.1.0

(1) Don't forget to edit $ORACLE_HOME/bin/dbstart. (Note:337927.1)
Original line:
ORATAB=/etc/oratab
Modified line:
ORATAB=/var/opt/oracle/oratab
(2) As per Note:336299.1 use:
dbstart $ORACLE_HOME
or
dbstart /u01/app/oracle/product/10.2.0 (or whatever is your Oracle_Home)
or you'll get: "ORACLE_HOME_LISTNER is not SET, unable to auto-start Oracle Net Listener"
HTH
Enrique

Similar Messages

  • DB Instance fails to automatically start on cluster reboot

    Hello -
    I cannot get the instance on node1 to automatically start on a reboot. It starts manually, and it starts automatically when the other node is rebooted. I also unregistered it, and re-registered the instance.
    Here is the errors from $ORA_CRS_HOME/log/ctolinuxpoc01/crsd/crsd.log:
    2009-02-03 15:52:08.496: [  CRSAPP][1494882624] StartResource error for ora.ractest.ractest1.inst error code = 1
    2009-02-03 15:52:10.098: [  CRSRES][1494882624] Start of `ora.ractest.ractest1.inst` on member `ctolinuxpoc01` failed.
    I do see for the DB instance log these errors:
    <txt>ASMB (ospid: 4422): terminating the instance due to error 15064
    </txt>
    </msg>
    <msg time='2009-02-03T15:43:25.399-05:00' org_id='oracle' comp_id='rdbms'
    client_id='' type='UNKNOWN' level='16'
    module='' pid='4149'>
    <txt>Errors in file /opt/app/oracle/product/11.1.0/diag/rdbms/ractest/ractest1/trace/ractest1_diag_4149.trc:
    ORA-27508: IPC error sending a message
    ORA-27300: OS system dependent operation:sendmsg failed with status: 22
    ORA-27301: OS failure message: Invalid argument
    ORA-27302: failure occurred at: sskgxpsnd1
    </txt>
    </msg>
    <msg time='2009-02-03T15:43:25.399-05:00' org_id='oracle' comp_id='rdbms'
    client_id='' type='UNKNOWN' level='16'
    module='' pid='4149'>
    <txt>System state dump is made for local instance
    </txt>
    </msg>
    <msg time='2009-02-03T15:43:25.399-05:00' org_id='oracle' comp_id='rdbms'
    client_id='' type='UNKNOWN' level='16'
    module='' pid='4149'>
    <txt>System State dumped to trace file /opt/app/oracle/product/11.1.0/diag/rdbms/ractest/ractest1/trace/ractest1_diag_4149.trc
    </txt>
    </msg>
    <msg time='2009-02-03T15:43:26.589-05:00' org_id='oracle' comp_id='rdbms'
    client_id='' type='UNKNOWN' level='16'
    module='' pid='4149'>
    <txt>Trace dumping is performing id=[cdmp_20090203154325]
    </txt>
    </msg>
    <msg time='2009-02-03T15:43:26.727-05:00' org_id='oracle' comp_id='rdbms'
    client_id='' type='UNKNOWN' level='16'
    module='' pid='4422'>
    <txt>Instance terminated by ASMB, pid = 4422
    </txt>
    </msg>
    The ASM instance was automatically started, and I am able to manually start the instance without any problems.
    Any help is appreciated!
    Thanks,

    ASMB (ospid: 4422): terminating the instance due to error 15064oerr ORA 15064
    15064, 00000, "communication failure with ASM instance"
    // *Cause:  There was a failure to communicate with the ASM instance, most
    // likely because the connection went down.
    // *Action: Check the accompanying error messages for more information on the
    // reason for the failure. Note that database instances will always
    // return this error when the ASM instance is terminated abnormally.
    ORA-27508: IPC error sending a message
    ORA-27300: OS system dependent operation:sendmsg failed with status: 22
    ORA-27301: OS failure message: Invalid argument
    ORA-27302: failure occurred at: sskgxpsnd1What is the output from following command?:
    /sbin/sysctl -a|grep net.core|egrep 'wmem|rmem'

  • Automatically start clusterware when reboot

    I have two node, RH RAC servers. I think the clusterware gets automatically started when servers are reboot. But currently it does not do it for me on both servers. Is there something that we missed? How to get this functionality back?
    Thanks for your help.

    Hi,
    As a super user, execute the 'crsctl enable crs' from the $ORA_CRS_HOME/bin directory on each server and that should enable the autostartup of the Oracle Clusterware. Have a look at 'Oracle Clusterware Quick How Guide' under library section of www.oraexpert.in for complete list of Oracle Clusterware commands.
    You can refer guide directly at http://www.oraexpert.in/OracleClusterQuickHow.html
    Thanks & Regards

  • Automatically starting Oracle Enterprise Manager with chkconfig

    Folks,
    While Oracle Linux 6 is out (6.2 actually), Oracle has yet to get everything 'working out of the box' with 6.2. Right now (June 2012) you've got to download patches from Oracle, the new way to start services in Linux 6, upstart, doesn't work with all Oracle features yet, etc. Update: You can still use chkconfig with OL6.
    Because of the above, I've been using Oracle Linux 5.8. Linux 5 uses something called chkconfig to register services. You first need to put a script in the right directory: /etc/rc.d/init.d. Linux looks in this directory for scripts and runs those scripts with either a start or stop after them depending on if the system is coming up or going down. Technically this happens every time you change your runlevel (google Unix runlevels for more info), not just when the system goes up or down.
    Here's a script that you can put in /etc/rc.d/init.d. I named mine oracleEM:
    [root@localhost ~]# cd /etc/rc.d/init.d
    [root@localhost init.d]# vi oracleEM
    Enter i to enter insert mode and then enter the below (or just copy and paste it)
    *#!/bin/sh*
    *#chkconfig: 2345 80 05*
    *#description: Oracle Enterprise Manager*
    ORA_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
    ORA_OWNER=oracle
    ORA_SID=orcl
    *# We're checking to see if ps returns 1 or 2 results for pmon_orcl*
    *# If there are two, Oracle is running, one we are just seeing our grep*
    ORACLE_STATUS=$(ps -eaf | grep pmon_$ORA_SID | wc -l)
    *if [ ! -f $ORA_HOME/bin/emctl ]*
    then
    echo "Enterprise Manager startup: cannot start"
    exit
    fi
    case "$1" in
    *"start")*
    *if [ $ORACLE_STATUS -lt 2 ]*
    then
    echo "Waiting for Oracle instance $ORA_SID to start before starting Enterprise Manager"
    fi
    *while [ $ORACLE_STATUS -lt 2  ];do*
    echo "Waiting...."
    sleep 5
    ORACLE_STATUS=$(ps -eaf | grep pmon_$ORA_SID | wc -l)
    done
    su - $ORA_OWNER -c "$ORA_HOME/bin/emctl start dbconsole"
    *"stop")*
    su - $ORA_OWNER -c "$ORA_HOME/bin/emctl stop dbconsole"
    esac
    Press the Esc key to leave insert mode, then type *:wq* to write the file and quit.
    We'll need to make the script executable, so we need to run the following command:
    [root@localhost init.d]# *chmod +x oracleEM*
    Finally we need to register the oracleEM script with Linux using the chkconfig command:
    [root@localhost init.d]# *chkconfig --add oracleEM*
    Now Enterprise Manager will start up automatically when you start your system, but only after Oracle has started.
    Rich
    Edited by: RichS on Jun 9, 2012 1:00 AM

    The script you are using will not work for RHEL or Oracle Linux since it is incorrect and missing important coding.
    You can probably fix the script by removing the dash (-) from the su command and adding the lockfile that is required for RHEL to process the stop routine at system shutdown. The dash will reset the shell environment and the startup won't work. You should also start it in the background in order not to prolong the system startup more then necessary.
    lockfile=/var/lock/subsys/oracleEM
    start)
       su $ORA_OWNER -c "$ORA_HOME/bin/emctl start dbconsole &" &>/dev/null
       touch $lockfile
    stop)
       su $ORA_OWNER -c "$ORA_HOME/bin/emctl stop dbconsole"
       rm -rf $lockfile
    ...You do not need to start your Oracle instance before starting dbconsole. So there is no need for the "sleep" routine. You can start the Oracle Database control console even when the instance is down:
    For instance:
    <pre>
    [oracle@vm005 ~]$ ps -ef | grep pmon
    oracle 17749 10343 0 22:48 pts/3 00:00:00 grep pmon
    $ emctl start dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
    https://vm005.example.com:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 11g Database Control ....... started.
    </pre>

  • SAP cannot start Oracle after Upgrading to 10g

    I have upgraded Oracle to 10g (10.2). After upgrading I run startsap but sapstart can start Oracle database but R3trans cannot verify that the database is started.
    the following log are in startdb.log. Please give me an idea what to do to solve this problem.
    S27adm 22> more startdb.log
    Mon Jun 2 13:00:22 GMT: 2008
    LOGFILE FOR STARTING ORACLE
    Mon Jun 2 13:00:22 GMT: 2008
    checking required environment variables
    ORACLE_HOME  is >/oracle/S27/102_64<
    ORACLE_SID   is >S27<
    Mon Jun 2 13:00:22 GMT: 2008
    check initora
    Mon Jun 2 13:00:22 GMT: 2008
    check initora
    Mon Jun 2 13:00:22 GMT: 2008
    checking V2 connect
    TNS Ping Utility for HPUX: Version 10.2.0.2.0 - Production on 02-JUN-2008 13:00:22
    Copyright (c) 1997, 2005, Oracle.  All rights reserved.
    Used parameter files:
    /oracle/S27/102_64/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (COMMUNITY = SAP.WORLD)(PROTOCOL = TCP)(HOST = er3asu81)(PORT = 1553)) (CONNECT_DATA = (SERVER = DEDICATED) (
    SERVICE_NAME = S27.world)))
    OK (0 msec)
    tnsping: V2 connect to S27
    Mon Jun 2 13:00:22 GMT: 2008
    Connect to the database to check the database state:
    R3trans: connect check finished with return code: 12
    Database not available
    Mon Jun 2 13:00:22 GMT: 2008
    Shutdown database
    First trying to shutdown the database - May be,
    the database is in the nomount or mount state
    Mon Jun 2 13:00:22 GMT: 2008
    starting database
    SQL*Plus: Release 10.2.0.2.0 - Production on Mon Jun 2 13:00:23 2008
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    Connected to an idle instance.
    ORACLE instance started.
    Total System Global Area 2533359616 bytes
    Fixed Size                  2199816 bytes
    Variable Size            2025713400 bytes
    Database Buffers          503316480 bytes
    Redo Buffers                2129920 bytes
    Database mounted.
    SP2-0158: unknown SET option "charwidth"
    no rows selected
    Not a terminal
    Not a terminal
    Database altered.
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning and Data Mining options
    Mon Jun 2 13:00:46 GMT: 2008
    Connect to the database to verify, that the database is now open
    R3trans check finished with return code: 12
    ERROR: Startup of database failed
        Notify Database Administrator.
    Mon Jun 2 13:00:46 GMT: 2008
    /usr/sap/S27/SYS/exe/run/startdb: Terminating with error code 2

    Verify .dbenv* files in your <sid>adm home directory and update them as recommended in 10g upgrade documentation in the SAP Marketplace.
    If still not resolved, do R3trans -d from <sid>adm home directory and post the recent trans.log file to review further.
    Good Luck
    Nag Anthati

  • How to let SOA Suite automatically start Oracle Database services if necess

    It occurs from time to time that I forget to start Oracle database services
    before I start Soa Suite. Can I somehow let SOa Suite startup script check in advance
    if Oracle database services need to be started (and start them automatically if necessary)?
    Peter

    Hi,
    This is a familiar issue. I've come up with the following solutions.
    1) On my linux machine, I start the database (EE) and soa suite at boot time using /etc/oratab.
    2) On my windows machine, I start the database (XE) at boot time, as a service that automatically starts. The soa suite is started manually. I could start the suite automatically as a service also, but because it takes up so much memory and I do not always want to run the suite, I prefer to start manually. In any way, the database is started automatically before the soa suite.
    Hope this will help you.
    Kind regards,
    H

  • Error while starting oms after reboot

    Hi All,
    I am receiving the error while restarting OMS after rebooting the server. Any help would be appreciated.
    Ping statistics for ::1:
        Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
        Minimum = 0ms, Maximum = 0ms, Average = 0ms
    C:\Windows\system32>ping xyz02srv141
    Pinging xyz02srv141.abc.com [::1] with 32 bytes of data:
    Reply from ::1: time<1ms
    Reply from ::1: time<1ms
    Reply from ::1: time<1ms
    Reply from ::1: time<1ms
    Ping statistics for ::1:
        Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
        Minimum = 0ms, Maximum = 0ms, Average = 0ms
    C:\Windows\system32>nslookup 10.12.2.141
    Server:  tatnet200.abc.com
    Address:  10.10.2.200
    Name:    xyz02srv141.abc.com
    Address:  10.12.2.141
    C:\Windows\system32>nslookup xyz02srv141.abc.com
    Server:  tatnet200.abc.com
    Address:  10.10.2.200
    Name:    xyz02srv141.abc.com
    Address:  10.12.2.141
    C:\Windows\system32>nslookup xyz02srv141
    Server:  tatnet200.abc.com
    Address:  10.10.2.200
    Name:    xyz02srv141.abc.com
    Address:  10.12.2.141
    C:\Windows\system32>echo %ORACLE_UNQNAME%
    ORACC
    C:\Windows\system32>emctl stop oms -all
    EM Configuration issue. D:\app\s_oracle_xyz02srv141\product\11.2.0\dbhome_2/xyz02srv141.abc.com_ORACC not found.
    C:\Windows\system32>
    Regards,

    C:\Windows\system32>emctl stop oms -all
    EM Configuration issue. D:\app\s_oracle_xyz02srv141\product\11.2.0\dbhome_2/xyz02srv141.abc.com_ORACC not found.
    Hi,
    Please check the path of command emctl. The above emctl command is for Grid/Cloud Control. The output indicates that 'emctl' for database control was executed.
    Regards,
    - Loc

  • Automatically start VMs after server reboot

    Hello,
    I use a OVM server (3.0.3) without clustering, and I'm doing failure simulations before going to production.
    When the server reboots after a electrical failure, all VM are in "offline" state, and I need to acknowledge all events before be able to start them (thanks the forum for this information).
    I would like to automatically boot the VM after the reboot, is there a way to do this ?
    Thanks,
    TM

    Have you tried to put a symlink to the vm.cfg in /etc/xen/auto? That works independent of VM Manager. I beleive VM Manager will update the machine to running in that situation. If not, at least your machines are running while you sort out the problems with VM Manager.
    ln -s /OVS/Repository/<repositoryUUID>/VirtualMachines/<vmUUID>/vm.cfg /etc/xen/auto/<simplename>
    Where repositoryUUID (hopefully the only one because the manager doesn't display it)
    vmUUID shows as ID on the Info page for the VM
    simplename is any name you like. I chose the name that shows as Name on the machine's Info page.
    Let us know if the Manager figures it out OK or if you have to jump through some hoops to get it to show "running" for these VMs.

  • Since 10.4.9 update: postfix needs to be started manually after reboot

    Although mail services are all activated in Server Admin, postfix refuses to start up automatically after a system reboot.
    All I need to do, is open a Terminal window and type "postfix start" and all is well.
    The problem is, if we have a power outage or something else, then mail reception and sending is off-line until I discover that the server has rebooted itself, and I type in the commands again.
    What could prevent postfix from starting up?
    Ronald

    Hi,
    below the output of the commands, only the IP address in the range of the netmask was replaced with 12.34.56 and the domain name was replaced with domain.
    The only strange thing is this line:
    smtpdclientrestrictions = permit_mynetworks permit
    which is the only line in which the parameters are not comma separated.
    But why that would stop automatic startup, while manual startup works, is beyond me.
    I also should add, I didn't mess with any config files except by proxy of Server Admin, since I'm more than aware of the fragile nature of such software dealing with such alterations.
    Thanks for your help.
    Ronald
    [tigger:~] root# postconf -n
    alias_maps = hash:/etc/aliases,hash:/var/mailman/data/aliases
    always_bcc =
    command_directory = /usr/sbin
    config_directory = /etc/postfix
    content_filter = smtp-amavis:[127.0.0.1]:10024
    daemon_directory = /usr/libexec/postfix
    debugpeerlevel = 2
    enableserveroptions = yes
    inet_interfaces = all
    localrecipientmaps = proxy:unix:passwd.byname $alias_maps
    luser_relay =
    mail_owner = postfix
    mailbox_transport = cyrus
    mailq_path = /usr/bin/mailq
    manpage_directory = /usr/share/man
    mapsrbldomains = dun.dnsrbl.net,spam.dnsrbl.net,bl.spamcop.net,dynablock.easynet.nl,proxies.blac kholes.easynet.nl,cbl.abuseat.org,sbl.spamhaus.org,dnsbl.njabl.org,relays.ordb.o rg,opm.blitzed.org
    masquerade_domains = domain.com
    messagesizelimit = 26214400
    mydestination = $myhostname,localhost.$mydomain,smtp,pop,imap,mailhost,domain.com,smtp.domain.c om,pop.domain.com,imap.domain.com,mail.domain.com,mailhost.domain.com,mail,local host,localhost.domain.com,127.0.0.1
    mydomain = domain.com
    mydomain_fallback = localhost
    myhostname = smtp.domain.com
    mynetworks = 127.0.0.0/8,12.34.56.96/27,12.34.56.64/27,12.34.56.32/27,12.34.56.192/27,12.34. 56.128/27,12.34.56.0/27,66.92.70.119/32,128.148.0.0/16,212.227.94.95/32,10.0.136 .0/24,207.210.106.210,61.222.108.90,140.211.11.2
    mynetworks_style = host
    newaliases_path = /usr/bin/newaliases
    ownerrequestspecial = no
    queue_directory = /private/var/spool/postfix
    readme_directory = /usr/share/doc/postfix
    recipient_delimiter = +
    relayhost =
    sample_directory = /usr/share/doc/postfix/examples
    sendmail_path = /usr/sbin/sendmail
    setgid_group = postdrop
    smtpdclientrestrictions = permit_mynetworks permit
    smtpdenforcetls = no
    smtpdpw_server_securityoptions = plain,login,cram-md5
    smtpdrecipientrestrictions = permitsasl_authenticated,permit_mynetworks,reject_unauthdestination,permit
    smtpdsasl_authenable = yes
    smtpdtls_certfile = /etc/certificates/DomainSSL.crt
    smtpdtls_keyfile = /etc/certificates/DomainSSL.key
    smtpdtlsloglevel = 0
    smtpduse_pwserver = yes
    smtpdusetls = yes
    unknownlocal_recipient_rejectcode = 550
    [tigger:~] root# ps -U clamav
    PID TT STAT TIME COMMAND
    66 ?? Ss 0:15.81 amavisd (master)
    188 ?? Ss 0:00.82 freshclam -d -D -pfreshclam.pid -c 1
    9683 ?? S 0:07.97 amavisd (ch8-avail)
    9795 ?? S 0:09.19 amavisd (ch7-avail)
    [tigger:~] root#

  • Wont Start Up After Reboot

    Hi,
    I am using Oracle 8.1.7 and I have little experience of Oracle. I have rebooted my Oracle server. I am using Oracle DBA Studio to connect to the domain that has been created, e.g. CONL_LOCALHOST.DOMAIN.CO.UK. When I try and connect I get an error saying:
    "SID given in connect descriptor could not be resolved"
    When the server was rebooted and it came back up there were the following messages in the Application Event Viewer:
    "The service has terminated abnormally. See the file C:\oracle\ora81\sysman\log\oms.nohup for details."
    "The process termination failed for JRE. %2."
    Any help on this would be very much appreciated
    Thanks

    Hi,
    The OracleOraHome81ManagementServer service is set to start automatically and does not start. It does not start if I try and start it manually and I just get the standard error. It just says "This could be an internal Windows error or an internal server error......"
    The contents of the tnsnames.ora file that is located in C:\oracle\ora81\network\ADMIN is detailed below. Does this look correct?
    # TNSNAMES.ORA Configuration File:C:\oracle\ora81\NETWORK\ADMIN\tnsnames.ora
    # Generated by Oracle Enterprise Manager V2
    # Date..........: Mon Nov 29 13:57:54 GMT 2004
    GLOBAL.DOMAIN.CO.UK =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = RBWM-ORACLE-CON)(PORT = 1521))
    (CONNECT_DATA = (SERVICE_NAME = GLOBAL))
    CONL_LOCALHOST.DOMAIN.CO.UK =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = LOCALHOST)(PORT = 1521))
    (CONNECT_DATA = (SID = CONL)(SERVER = DEDICATED))
    CONL2_LOCALHOST.DOMAIN.CO.UK =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = LOCALHOST)(PORT = 1521))
    (CONNECT_DATA = (SID = CONL2)(SERVER = DEDICATED))
    # TNSNAMES.ORA Network Configuration File: C:\oracle\ora81\NETWORK\ADMIN\tnsnames.ora
    INST1_HTTP.DOMAIN.CO.UK =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = RBWM-ORACLE-CON)(PORT = 1521))
    (CONNECT_DATA = (SERVER = SHARED)(SERVICE_NAME = GLOBAL)(PRESENTATION = http://admin))
    EXTPROC_CONNECTION_DATA.DOMAIN.CO.UK =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    (CONNECT_DATA = (SID = PLSExtProc)(PRESENTATION = RO))
    Someone suggested that I manually start the service from the command prompt, but I get the following error.
    Any ideas?
    I have looked in 'C:\oracle\ora81\DATABASE\' and there is not a file there called 'INITGLOBAL.ORA'
    The files in this directory are: oradba.exe, oradim.txt and PWDGLOBAL.ORA
    C:\>svrmgrl
    Oracle Server Manager Release 3.1.7.0.0 - Production
    Copyright © 1997, 1999, Oracle Corporation. All Rights Reserved.
    Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.0.0 - Production
    SVRMGR> connect internal
    Connected.
    SVRMGR> startup
    LRM-00109: could not open parameter file 'C:\oracle\ora81\DATABASE\INITGLOBAL.OR
    A'
    ORA-01078: failure in processing system parameters
    SVRMGR>
    Thanks for your help

  • Problem in starting services after rebooting the sap server.

    Hi ,
    I got a problem in starting SAP services files in SAP BI system on windows 2003 server. Whenever I reboot the system all sap services failed to start throw a message u201CCould not start SAPBDJ_00 service on local computer. Error 1069: The service did not start due to login failure".
    This is the common message for every sap service SAP<SID>_00,SAPOSCOLL,SAPCMSr.01,SAPSMD_98. Until unless I maintain   ./SAPservice<SID> password externally by going through service.msc and g to properties of particular service and g to logon option to maintain password manually to fix this.
    ./SAPService<SID> user is no locked and password maintained properly also I tried to change the service user to SIDADM user and restarted the server however getting the same problem.
    Could not find any fixes in internet so please help me to fix this issue.
    Regards,
    Vinod

    Hi Sunil,
    we are in midde of BI implementation. last week we built the DEv box and Updated kernel and suport packs and restarted then i observerved this issue. I have already tried to change the SIDADm user but intially after changing the user service will start and once you restart the server then the issues appear again.
    The password which i am using was the one set during the installation.
    Please suggest.
    Regards,
    Vinod

  • Firefox 5 hangs after new install at Checking the Add Ons and will not start even after reboot

    Downloaded V5, ran the install, started Firefox and first screen is 'Checking Add Ons', the status bar is shown and immediately hangs. Have tried to restart, have rebooted and start and Firefox will not come up. Have to drop back to V3.6

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    This can be a problem with the file(s) that store the extensions registry.
    Delete the files extensions.* (extensions.sqlite, extensions.rdf, extensions.cache, extensions.ini) and compatibility.ini in the Firefox [[Profiles|profile folder]] to reset the extensions registry. New files will be created when required.
    See "Corrupt extension files": http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the Tools button at the left side of the Search Bar (or click the "Find Updates" button in older Firefox versions) to do a compatibility check or see if there is an update.

  • Starting oracle after a system restart:

    Hi,
    I restarted my solaris 10 and want to restart my oracle database server.
    I have to oracle instances: cms & pcms.
    When I do a 'connect / as sysdba' I get a ORA-12162: TNS:net service name is incorrectly specified. But my listener.ora, sqlnet.ora and tnsnames.ora haven't changed since the last time and look ok (see down).
    I can tnsping only cms (not pcms).
    What can be wrong?
    -bash-3.00$ lsnrctl status
    LSNRCTL for Solaris: Version 10.1.0.3.0 - Production on 02-NOV-2005 16:37:14
    Copyright (c) 1991, 2004, Oracle. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(PORT=1521))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Solaris: Version 10.1.0.3.0 - Production
    Start Date 02-NOV-2005 15:53:31
    Uptime 0 days 0 hr. 43 min. 42 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /u01/app/oracle/OraHome/network/admin/listener.ora
    Listener Log File /u01/app/oracle/OraHome/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=db)(PORT=1521)))
    The listener supports no services
    The command completed successfully
    # tnsnames.ora Network Configuration File: /u01/app/oracle/OraHome/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    CMS.ACAIT.BE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.32.1.22)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = cms)
    PCMS.ACAIT.BE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.32.1.22)(PORT = 1522))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = pcms)
    # Filename: sqlnet.ora
    NAMES.DEFAULT_DOMAIN = acait.be
    SQLNET.AUTHENTICATION_SERVICES= (NONE)
    NAMES.DIRECTORY_PATH= (TNSNAMES, ONAMES, HOSTNAME)
    # tnsnames.ora Network Configuration File: /u01/app/oracle/OraHome/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    CMS.ACAIT.BE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.32.1.22)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = cms)
    PCMS.ACAIT.BE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.32.1.22)(PORT = 1522))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = pcms)
    )

    Thanks,
    But I don't see there's something wrong with my listener.ora
    I forgot to attach my listener.ora file:
    stener.ora Network Configuration File: /export/home/oracle/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_cms =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = cms)
    (ORACLE_HOME = /u01/app/oracle/OraHome)
    (PROGRAM = extproc)
    cms =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.32.1.22)(PORT = 1521))
    SID_LIST_pcms =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = pcms)
    (ORACLE_HOME = /u01/app/oracle/OraHome)
    (PROGRAM = extproc)
    pcms =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.32.1.22)(PORT = 1522))
    )

  • My Blackberry curve 8520 wont start up after rebooting.

    So i got a blackberry 2 days ago and thought i would get blackberry app world. So i downloaded it, it told me there was an error about java script or something like that. Then it say to finish downloading blackberry app world i have to reboot it. When i clicked reboot it went straight to a black screen! And it stayed lke this for the rest of the night, until morning. The red light keeps on flashing but when i try to turn it on, it wont. I tried taking the battery out but still didnt work i need HELP !!!!!!!!!!!'

    It show boot screen But it just stops till 75% of the bar I tried safe mode but it doesn't work please help me!

  • Compiz doesn't automatically start anymore after gnome 2.30 update

    My logs only show this "Apr  1 18:15:26 arch gnome-session[2435]: WARNING: Application 'compiz.desktop' failed to register before timeout" error. But i'm pretty sure it always showed that error even before i upgraded today.

    Is it starting for you when you use "compiz --replace &" in terminal? For me it is, but without emerald, so I don't have any window borders...
    EDIT: OMG, when I used Fusion-icon then it started normally... Weird...
    EDIT2: I've changed in /usr/share/applications/compiz.desktop line where compiz is started from "compiz" to "/usr/bin/compiz ccp" and it's working now.
    Last edited by megawebmaster (2010-04-01 20:15:46)

Maybe you are looking for

  • Free application and charged

    Hi there, I would like to know why when I want to download an application which is FREE and I try to download it, I type my password and then, I'm charged in my credit card for it. I don't understand the reason of this cost if the app is for free!  I

  • Grid control mgmt aganet question...

    I installed a new 2 node cluster 10.2.0.3 on linux Itanium and I setup the db as a standby database so that we can test our dtata gurad switchover which we are using to facilitate our ASM migration from our production database. We successfully switch

  • Make a call from the app

    Hi guys, I am trying to make a call from the app. There is a button labeled as phone number. When user clicks on that button, it should call to the phone number. How do I do ? Can suggest me simple code ? I don't know whether this is possible or not.

  • Email contents using ABAP

    Hi, I am using FM 'SO_NEW_DOCUMENT_SEND_API1' to send an email to internet address. Problem is even after populating the content internal table in table interface of FM, I am not seeing any contents in actual email. Here is the sample code: lt_object

  • Oracle data pump vs import/export utility

    Hello all, What is the difference between Oracle Data Pump and Import/Export utility? which on is the faster?