How to automatically startup Oracle on SUSE Linux

I have Oracle 11g installed on a server running SUSE Linux 11. I followed the official Oracle instructions to try to set up Oracle for automatic startup.
My /etc/oratab file contains the following:
sidname:/opt/oracle/product/11gR2/db:Y
I created a /etc/init.d/dbora file, which contains the following:
#! /bin/sh  -x
# Change the value of ORACLE_HOME to specify the correct Oracle home
# directory for your installation.
ORACLE_HOME=/opt/oracle/product/11gR2/db
# Change the value of ORACLE to the login name of the
# oracle owner at your site.
ORACLE=oracle
PATH=${PATH}:$ORACLE_HOME/bin
HOST=`hostname`
PLATFORM=`uname`
export ORACLE_HOME PATH
if [ ! "$2" = "ORA_DB" ] ; then
   if [ "$PLATFORM" = "HP-UX" ] ; then
      remsh $HOST -l $ORACLE -n "$0 $1 ORA_DB"
      exit
   else
      rsh $HOST -l $ORACLE  $0 $1 ORA_DB
      if [ "$PLATFORM" = "Linux" ] ; then
          touch /var/lock/subsys/dbora
      fi
      exit
   fi
fi
case $1 in
'start')
        $ORACLE_HOME/bin/dbstart $ORACLE_HOME &
'stop')
        $ORACLE_HOME/bin/dbshut $ORACLE_HOME &
        echo "usage: $0 {start|stop}"
        exit
esac
exit
Then I ran the following commands:
chgrp dba /etc/init.d/dbora
chmod 750 /etc/init.d/dbora
ln -s /etc/init.d/dbora /etc/rc.d/rc0.d/K01dbora
ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/S99dbora
ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/S99dbora
shutdown -r now
After restarting, Oracle was not running:
server:~ # ps -fea | grep ora
root      2681  2563  0 21:18 ?        00:00:00 hald-addon-storage: no polling on /dev/fd0 because it is explicitly disabled
root      2688  2563  0 21:18 ?        00:00:00 hald-addon-storage: polling /dev/sr0 (every 2 sec)
root      4491  4333  0 21:19 pts/1    00:00:00 grep ora
server:~ # ps -fea | grep lsnr
root      4493  4333  0 21:19 pts/1    00:00:00 grep lsnr
Oracle runs fine after I start the instance (by logging into sqlplus as "sys as sysdba" and issuing the "startup" command) and listener. But it won't start up automatically after restarting the server. Why is that?

I got it working.  I had to change the dbora file to look like this:
#! /bin/sh  -x
# Change the value of ORACLE_HOME to specify the correct Oracle home
# directory for your installation.
ORACLE_HOME=/opt/oracle/product/11gR2/db
# Change the value of ORACLE to the login name of the
# oracle owner at your site.
ORACLE=oracle
PATH=${PATH}:$ORACLE_HOME/bin
export ORACLE_HOME PATH
touch /var/lock/subsys/dbora
case $1 in
'start')
        su - $ORACLE $ORACLE_HOME/bin/dbstart $ORACLE_HOME &
'stop')
        su - $ORACLE $ORACLE_HOME/bin/dbshut $ORACLE_HOME &
        echo "usage: $0 {start|stop}"
        exit
esac
exit
Then I had to delete the listener.log and startup.log files in $ORACLE_HOME because they were incorrectly owned by root.

Similar Messages

  • 11g1 automatic startup under Fedora 9 Linux quit working

    11g1 automatic startup under Fedora 9 Linux worked for months
    Now I have to start 11g1 manually!
    since then I've been doing regular yum updates to a number of new kernels
    currently :
    LMKIII (root) /var/log [600|http://forums.oracle.com/forums/]>uname -a
    Linux LMKIII 2.6.27.19-78.2.30.fc9.i686 #1 SMP Tue Feb 24 20:09:23 EST 2009 i686 i686 i386 GNU/Linux
    on boot page, the usual command that starts 11g1 just zips on by
    I've looked in the boot messages to no avail. Still looking.
    Has to be a kernel change because I've lect 11g1 alone for months

    I did a www.ask.com for "dbstart pam.d" and got the answer.
    pam.d and SELINUX are very complex.
    I am still wary of lurking problems!
    Apr 16 18:43:57 LMKIII sshd[2176]: Server listening on 0.0.0.0 port 22.
    Apr 16 18:44:10 LMKIII rshd[2473]: PAM unable to dlopen(/lib/security/pam_rhosts_auth.so): /lib/security/pam_rhosts_auth.so: cannot open shared object file: No such file or directory
    Apr 16 18:44:10 LMKIII rshd[2473]: PAM adding faulty module: /lib/security/pam_rhosts_auth.so
    Apr 16 18:44:11 LMKIII rshd[2473]: pam_rhosts(rsh:auth): denied access to [email protected] as oracle
    Apr 16 18:44:11 LMKIII rshd[2473]: pam_unix(rsh:session): session opened for user oracle by (uid=0)
    Apr 16 18:45:11 LMKIII rshd[2473]: pam_unix(rsh:session): session closed for user oracle
    Apr 16 18:49:07 LMKIII kdm: :0[2881]: pam_unix(kdm:session): session opened for user oracle by (uid=0)
    Apr 16 18:50:41 LMKIII su: pam_unix(su-l:session): session opened for user root by oracle(uid=503)
    Apr 16 18:54:46 LMKIII su: pam_unix(su-l:session): session closed for user root
    Apr 16 18:54:49 LMKIII kdm: :0[2881]: pam_unix(kdm:session): session closed for user oracle
    Apr 16 18:55:01 LMKIII sshd[2176]: Received signal 15; terminating.
    Apr 16 18:56:55 LMKIII sshd[2171]: Server listening on 0.0.0.0 port 22.
    Apr 16 18:57:08 LMKIII rshd[2473]: PAM unable to dlopen(/lib/security/pam_rhosts_auth.so): /lib/security/pam_rhosts_auth.so: cannot open shared object file: No such file or directory
    Apr 16 18:57:08 LMKIII rshd[2473]: PAM adding faulty module: /lib/security/pam_rhosts_auth.so
    Apr 16 18:57:09 LMKIII rshd[2473]: pam_unix(rsh:session): session opened for user oracle by (uid=0)
    Apr 16 18:58:09 LMKIII rshd[2473]: pam_unix(rsh:session): session closed for user oracle
    Apr 16 18:59:26 LMKIII kdm: :0[2880]: pam_unix(kdm:session): session opened for user oracle by (uid=0)
    Apr 16 19:00:31 LMKIII su: pam_unix(su-l:session): session opened for user root by oracle(uid=503)
    Apr 16 19:01:50 LMKIII su: pam_unix(su-l:session): session closed for user root
    Apr 16 19:02:23 LMKIII su: pam_unix(su-l:session): session opened for user root by oracle(uid=503)
    Apr 16 20:48:14 LMKIII sshd[4117]: Address 194.80.134.6 maps to no-reverse-defined.ja.net, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
    Apr 16 20:48:14 LMKIII sshd[4117]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=194.80.134.6 user=root
    Apr 16 20:48:16 LMKIII sshd[4117]: Failed password for root from 194.80.134.6 port 51090 ssh2
    Apr 16 20:48:16 LMKIII sshd[4120]: Connection closed by 194.80.134.6
    Apr 16 21:11:12 LMKIII sshd[4287]: Address 194.80.134.6 maps to no-reverse-defined.ja.net, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
    Apr 16 21:11:12 LMKIII sshd[4287]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=194.80.134.6 user=root
    Apr 16 21:11:14 LMKIII sshd[4287]: Failed password for root from 194.80.134.6 port 53791 ssh2
    Apr 16 21:11:15 LMKIII sshd[4290]: Connection closed by 194.80.134.6
    Apr 16 21:28:54 LMKIII sshd[4383]: Address 194.80.134.6 maps to no-reverse-defined.ja.net, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
    Apr 16 21:28:54 LMKIII sshd[4383]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=194.80.134.6 user=root
    Apr 16 21:28:55 LMKIII sshd[4383]: Failed password for root from 194.80.134.6 port 44904 ssh2
    Apr 16 21:28:56 LMKIII sshd[4386]: Connection closed by 194.80.134.6
    Apr 16 21:46:47 LMKIII sshd[4481]: Address 194.80.134.6 maps to no-reverse-defined.ja.net, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
    Apr 16 21:46:48 LMKIII sshd[4481]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=194.80.134.6 user=root
    Apr 16 21:46:50 LMKIII sshd[4481]: Failed password for root from 194.80.134.6 port 36020 ssh2
    Apr 16 21:46:50 LMKIII sshd[4484]: Connection closed by 194.80.134.6

  • How can i install oracle 10g on linux cluster

    Dear all:
    please advice How can i install oracle 10g on linux cluster service ..
    thanks ,,

    Without RAC, you can only have one instance manage the database. One instance = one set of processes communicating via IPC.
    Unless you know of a way to have processes use memory-based IPC across nodes, you need to pick a node and install & run the database software on that node.

  • Oracle 8i, SuSe Linux, big performance Problem

    Hello,
    i have a very interisting problem on SuSe Linux 7.0 (or 7.1).
    Engine: Fujitsu Siemens Primargy, 4 Processors, 4 GB RAM
    I want to make a hot backup.
    After i set the tablespace in backup mode i make a copy of the tablespace.
    On that moment goes nothing more with Oracle.
    There is no input/output from/to the database. (Every select needs extremly long time)
    Have anybody an idea? (I hope so)
    What is the break?
    Oracle or SuSe Linux? (Any other jobs do the computer all right, very quick)
    Bye and thanks
    Michael
    null

    Hello,
    i forgot to give a very important detail:
    The load average goes from 0.4 up thru 5.X (at that moment i must kill the job)
    sorry that i don't write it in the main letter.
    Bye and thanks for every hint.
    Michael
    null

  • How to automate the Oracle database start and shutdown process

    How we can automate and oracle database start and stop procees with Linux start/shutdown process.
    I want to automatically start the oracle database at the time linux server and shutdown the database on shutdown linux server.

    Hi,
    I can share my scripts:
    1) /home/oracle/start_oracle.sh
    #Script should be ran as Oracle user
    cd /tmp
    export ORACLE_SID=orcl
    export ORACLE_HOME=/oracle/ora9i
    lsnrctl start
    sqlplus -S /nolog <<ENDSQL
    connect / as sysdba
    startup
    exit
    ENDSQL
    emctl start dbconsole
    isqlplusctl start
    NOTE: emctl and isqlplus are optional
    2) /home/oracle/stop_oracle.sh
    #Script should be ran as Oracle user
    cd /tmp
    export ORACLE_SID=orcl
    export ORACLE_HOME=/oracle/ora9i
    isqlplusctl stop
    emctl stop dbconsole
    sqlplus -S /nolog <<ENDSQL
    connect / as sysdba
    shutdown immediate
    exit
    ENDSQL
    lsnrctl stop
    NOTE: emctl and isqlplus are optional
    Then what you need:
    1) K91oracle_stop (put it in the desired run level)
    #!/bin/bash
    # description: Stop Oracle before reboots
    su - oracle -c "/home/oracle/stop_oracle.sh" >> /home/oracle/stoporacle.log
    2) S91oracle_start (put it in the desired run level)
    #!/bin/bash
    # description: Start Oracle after reboots
    su - oracle -c "/home/oracle/start_oracle.sh" >> /home/oracle/startoracle.log
    Bye.

  • Can't install Oracle on SuSE Linux 9.3 Pro

    Hi,
    i try since three weeks to install Oracle 9.2 Release 2. My last Problem was,
    that i didn't know how to log in as the created Oracle User. This Problem is solved.
    But when i install Oracle as the Oracle User and try to configure the Administrator
    Group, i get the error, that i don't have the specific permission to change that,
    so i gave the Oracle User all Rights about every directory (chown oracle:dba / ).
    After that the Installation proceed without any problem, but after the Installation,
    the Database Configuration Assistant failed to install and two other Assistants, too.
    So, i don't know where there problem is. I fulfilled every pre-installation Task, but
    it still isn't possible for me, to install Oracle 9.2 on a SuSE Linux 9.3 Professional
    System.
    If anyone could help me along this Installation, i would be very thankful.
    Thanks a lot
    Daniel

    But when i don't give the oracle user all rights, it isn't possible to proceed with theinstallation
    But if you give that rights then it's a security hole. According to your words I guess you have similar enviroment settings:
    ORACLE_BASE=/
    ORACLE_HOME=/<directory_name>
    Why you not installing on deeper directory such as /opt or some your own directory? For example
    ORACLE_BASE=/myoracledir
    ORACLE_HOME=$ORACLE_BASE/<directory_name>
    Then chown -R oracle:dba /myoracledir.
    Then oracle will be owner just for /myoracle directory and all its subdirectories.
    i just could look at the error details, but they didn't described the erroranyway.
    That's not so true. Error log you could find in /tmp/OraInstallYYYY-MM-DD_HH_MI_SS..

  • How to configurw n/w in SUSE Linux

    Hi all,
    i have to install oracle 10g on suse linux server, i have installed suse linux on m/c , iwant ot configure n/w in the same ,but i couldn't...
    i have used yast but still couldn't able to configure the n/w

    I got it working.  I had to change the dbora file to look like this:
    #! /bin/sh  -x
    # Change the value of ORACLE_HOME to specify the correct Oracle home
    # directory for your installation.
    ORACLE_HOME=/opt/oracle/product/11gR2/db
    # Change the value of ORACLE to the login name of the
    # oracle owner at your site.
    ORACLE=oracle
    PATH=${PATH}:$ORACLE_HOME/bin
    export ORACLE_HOME PATH
    touch /var/lock/subsys/dbora
    case $1 in
    'start')
            su - $ORACLE $ORACLE_HOME/bin/dbstart $ORACLE_HOME &
    'stop')
            su - $ORACLE $ORACLE_HOME/bin/dbshut $ORACLE_HOME &
            echo "usage: $0 {start|stop}"
            exit
    esac
    exit
    Then I had to delete the listener.log and startup.log files in $ORACLE_HOME because they were incorrectly owned by root.

  • Installation Error  ECC6.0 + Oracle 10202+ Suse Linux 10 ( 64 bit )

    Hi all,
    We are installing ECC 6.0 with Oracle 10202 on Suse Linux 10 ( 64 bit ) machine.
    We are facing error in the Import ABAP phase.
    Below is the error:
    Import Monitor jobs: running 1, waiting 1, completed 35, failed 0, total 37.
    Loading of 'TODIR' import package: ERROR
    Import Monitor jobs: running 0, waiting 1, completed 35, failed 1, total 37.
    ERROR 2008-02-25 23:56:45
    CJS-30022  Program 'Migration Monitor' exits with error code 103. For details see log file(s) import_monitor.java.log, import_monitor.log.
    ERROR 2008-02-25 23:56:45
    FCO-00011  The step runMigrationMonitor with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_ABAP_Import_Dialog|ind|ind|ind|ind|5|0|NW_ABAP_Import|ind|ind|ind|ind|0|0|runMigrationMonitor was executed with status ERROR .
    We stopped the installation and restarted the database, but its didnt worked.
    Any ideas in resolving the error ...!
    Kind Regards
    Neenad

    Hi all,
    error lines -  th_act_em_hdl
    It is a problem with time zone .. current time zone is zzz & changed to AST (Arabic standard time).
    Re: ECC 6.0 SR3 AIX and ORACLE installation error - work processes dies
    -rahul
    Edited by: Rahul on Nov 26, 2009 10:43 AM

  • Automatic Startup and Shutdown Database (LINUX REDHAT)

    Dear Experts,
    I am facing problem after sucessfully installed oracle that the Linux is not starting oracle services at booting and does not shutting down oracle while shutdown or restart the linux Machine, please let me know further process regarding this topic.
    Regards,
    Oracle User.

    Here is my DBORA script with permission 750.
    #!/bin/sh
    # chkconfig: 345 99 10
    # description: Oracle auto start-stop script.
    # Change the value of ORACLE_HOME to specify the correct Oracle home
    # directory for your installation.
    ORACLE_HOME=/u01/app/oracle/product/10.1.0/db_1
    # Change the value of ORACLE to the login name of the
    # oracle owner at your site.
    ORACLE=oracle
    PATH=${PATH}:$ORACLE_HOME/bin
    HOST=`hostname`
    PLATFORM=`uname`
    export ORACLE_HOME PATH
    if [ ! "$2" = "ORA_DB" ] ; then
    if [ "$PLATFORM" = "HP-UX" ] ; then
    remsh $HOST -l $ORACLE -n "$0 $1 ORA_DB"
    exit
    else
    rsh $HOST -l $ORACLE $0 $1 ORA_DB
    exit
    fi
    fi
    case $1 in
    'start')
    $ORACLE_HOME/bin/dbstart $ORACLE_HOME
    'stop')
    $ORACLE_HOME/bin/dbshut $ORACLE_HOME
    echo "usage: $0 {start|stop}"
    exit
    esac
    exit

  • How to automate an oracle 8i database startup

    I have an Oracle 8i database with the SID = MUKREC and installed on C:\
    Whenever the computer is restarted, the database doesnot startup automatically
    But has to be started manually. What could be the cause of this issue and how
    can I resolve it. So that whenever I restart the PC I donot have to start the
    database manually.
    Thanks
    Kaybroz

    Dear Pravintakpire,
    Thanks alot for the reply but,
    When I open the Services console, there is a service called OracleServiceMukrec and its startup type is already Automatic and the status is showing 'Starting'
    Me I suspect the issue may be arising on the init.ora file because when I try to use the GUI(DBA Studio) to start the database I realise that it is pointing to "C:\Oracle\Ora81\sysman\ifiles\def_MUKREC.ora" as the init.ora file yet it should be pointing to "C:\Oracle\admin\Mukrec\pfile\init.ora"
    So how should go about it and what's your opnion concerning this.
    Thanks

  • How to automatically startup a report in a new window after committing a form

    I have a form on a portal-page. The user enters values in the form and presses the INSERT button.
    After doing so, I want to show a report in a NEW window querying some values the user entered in the form.
    I was hoping to be able to use the After Processing Form PLSQL-section as follows:
    declare
    l_id integer;
    l_url varchar2(2000);
    begin
    l_id := p_session.get_value_as_NUMBER(
    p_block_name => 'DEFAULT',
    p_attribute_name => 'A_ID');
    l_url := 'APP_OWNER.MY_REPORT.show?'
    &#0124; &#0124; 'p_arg_names=id&p_arg_values='
    &#0124; &#0124; to_char(l_id);
    htp.p('<a href="' &#0124; &#0124; l_url &#0124; &#0124;' target="_blank"></a>');
    end;
    But I see only "Inserted one record" and no report is started.
    I've tried to use the after-form-processing part, but it seems I can only startup reports in the same window with GO and CALL.
    Also the ID-variable can not be read from that part.
    A second solution I tried was to put this PLSQL in the PLSQL-handler-section of the button, but for some reason all double quotes " are automatically changed into single quotes ' causing several Java-script errors. Perhaps a bug?
    Does anyone have a solution for this functionality?
    Thanks,
    Jan Willem Vermeer

    Hi,
    There are 2 scenarios I can think of:
    1. The value of ORD_ID is not known until the insert processing completed.
    2. The value of ORD_ID is known and can be retrieved without a roundtrip to the server.
    The 2nd scenario is being simpliest and could be done from Javascript w/out any server involvement, all you need is the getField() function (or any other function to get the field value) described here : http://technet.oracle.com:89/ubb/Forum81/HTML/000073.html
    Javascript piece goes something like this:
    myWindow = window.open("http://myhost/portal30/pos.APPROVAL_INVOICE_DYN.show?p_arg_names=ord_id&p_arg_values=" + getField(this.form,"ORD_ID"),
    "myWindowName","toolbar=yes,location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,height=400,width=600");
    The first scenario is more complicated.
    During the "accept cycle", when your PLSQL insert/update etc. event handlers are
    fired all the processing output will happen into the current window.
    Neither owa_util.redirect_url() nor wwa_app_module.set_target() will help.
    Both of them will do a redirect only in the current browser window,
    actually, wwa_app_module.set_target() internally calls owa_util.redirect_url().
    What you need is:
    1. Get the field value, and either: 1. store it somewhere in a package variable,
    or: 2. do this all at once in "before displaying the page"
    2. After the form processing is completed (but not in the onSuccess!!! code),
    open a new browser window w/Javascript specifying the same url you were passing to
    set_target().
    Here is my example, place following code into "before displaying the page" additional PLSQL block:
    declare
    l_id integer;
    begin
    l_id := p_session.get_value_as_NUMBER(
    p_block_name => 'DEFAULT',
    p_attribute_name => 'A_ORD_ID');
    if l_id is not null then
    htp.p('{SCRIPT} var myWindow = window.open("http://myhost/portal30/pos.APPROVAL_INVOICE_DYN.show?p_arg_names=ord_id&p_arg_values=' &#0124; &#0124; l_id &#0124; &#0124; '",
    "mySubWindow","toolbar=yes,location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,height=400,width=600");
    myWindow.focus();
    {SCRIPT}');
    end if;
    end;
    To do: you will need to add more logic to decide when to open a new window,
    whatever is appropriate for your application,
    rather than just 'is null' check I did.
    Hope this will help.
    Thanks,
    Dmitry

  • How to run the oracle form in linux system

    Hello all,
    My config is :-
    Forms [32 Bit] Version 10.1.2.0.2 (Production)
    Oracle Database 11g Release 11.2.0.1.0 - 64bit Production
    I can easily run my on Windows and Linux platform untill i am not use java bean in my form. After using the getMacaddress JAVA BEAN. I am not able to run my form on linux platform. If i remove the java bean from my form than form will run on linux.
    I am not familiar with linux so i am not able to trace the problem basicaly i don't  know which version of jre is used by linux system and i don't know how to find it.
    Please guide me.

    Now i install the jdk 1.6.0_20 and add into the jdeveloper 10.1.3.
    and i change my code for get mac id is -
    package demo;
    import java.net.InetAddress;
    import java.net.NetworkInterface;
    import java.net.SocketException;
    import java.net.UnknownHostException;
    public class App{
       public static void main(String[] args){
    InetAddress ip;
    try {
    ip = InetAddress.getLocalHost();
    System.out.println("Current IP address : " + ip.getHostAddress());
    NetworkInterface network = NetworkInterface.getByInetAddress(ip);
    byte[] mac = network.getHardwareAddress();
    System.out.print("Current MAC address : ");
    StringBuilder sb = new StringBuilder();
    for (int i = 0; i < mac.length; i++) {
    sb.append(String.format("%02X%s", mac[i], (i < mac.length - 1) ? "-" : ""));
    System.out.println(sb.toString());
    } catch (UnknownHostException e) {
    e.printStackTrace();
    } catch (SocketException e){
    e.printStackTrace();
    in form i create one jave bean area and add the implement class is
    demo.get_info.
    and on B1 (button) when-button-pressed
    :T1 :=GET_CUSTOM_PROPERTY('BEAN_MAC',1,'get_info');
    No error comes and no out put comes. So please guide me how to use the getHardwareAddress to get mac id.

  • How can I start oracle databse in linux ?

    I have rebooted the machine and oracle database did not start.
    How can I start manually oracle database ?
    Thanks a lot !!!

    sqlplus
    connect as sysdba
    startup pfile=<Path to your init.ora>

  • Oracle on SuSE Linux 6.0-6.1-6.2

    If you are installing Oracle 8.0.5.0, Oracle 8.0.5.1,Oracle
    8.1.5 (8i),Oracle WebDB 2.0.5.6.1,or Oracle OAS 4.0.7 please
    check the following page out for instructions...
    http://www.suse.de/~mha/oracle/
    null

    Oracle ias9i is certified with Oracle Server 8.1.6 and 8.1.7. When installed on the same machine, then you have to install Oracle Server first in it's own ORACLE_HOME, shut down all services after installation, and install ias9i in it's separate ORACLE_HOME. As you shut down all services of the database installation (and have no datbase up at installation time of ias9i), you have to start all database related parts of ias9i installation after the software install: bring up database, define tnsname for it in ias-home and start Portal Configuration Assistant. When you install ias9i, an Oracle Server 8.1.7 is installed in the same ORACLE_HOME as ias9i for the Database Cache feature only. It is not recommended to use that Installation for production databases. These hints are for NT-platform, i don't think there are differences in UNIX.

  • Issue while installing oracle in suse linux 11

    Hi all,
    When i try to execute runinstaller from root its not allowing me to run.
    I am trying to install oracle 10g.
    ./runInstaller -ignoreSysPrereqs
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2
                                          Failed <<<<
    >>> Ignoring required pre-requisite failures. Continuing...
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2011-10-03_07-00-51AM. Please wait ...
    The user is root. Oracle Universal Installer cannot continue installation if the user is root.
    : No such file or directory
    Is there some thing we can do to bypass and install with root.Thanks.

    Ambarish annapureddy wrote:
    >
    > Is there some thing we can do to bypass and install with root.Thanks.
    No, please install using orasid.
    Thanks

Maybe you are looking for

  • Need a Help with instalation SAP IDES 2005 SR2

    Hi All, I'm trying to install SAP IDES 2005 SR2 on my notebook HP (2GB RAM, 120GB HDD, 700 HDD external, dual core procesor), Win Server 2003 Enterpise, Oracle 10g (patch 2), jave 1.4.2.13, I've downloaded all installation files DVDs from SAP Marketp

  • Mail keeps disappearing in Snow Leopard

    All of my mail, mailboxes and folders keep disappearing in Mail 4.1. Ever since I updated to Snow Leopard this keeps happening. I constantly have to remove and reenter my MobileMe Imap Info and I am afraid one day I will not be able to reconfigure an

  • Deleted Audio Files - Do they remain on the HD?

    So when I delete a bad take in GB, it removes the region from the editor but I'm assuming the files remain on the hard drive.  Is that correct?  If so, where are they located or is there a way to destructively delete from the editor?  I just want to

  • Edit in ADF pivot table

    hi if i want to edit row Iselected,what i should do. in my application i edit the first row when i click the edit button every time. Best Regards

  • Transformations short dump

    Hi All, While saving or activating infocube transformations in BI development system getting abap short dump. Short dump: Runtime Errors         ASSERTION_FAILED Date and Time          04.08.2009 12:35:44 Short dump has not been completely stored (to