R12 Quick Installation on Suse Linux or Oracle Linux fails

Hello

I tried several combinations of operating systems to try and install correctly using the Oracle R12 / quick installation but I could not. My last attempt was on Suse Linux 10. When the installation wizard is complete, database checks are successful but HTTP server is unresponsive and all subsequent checks fail.

The reading of google and the various threads on this forum, I found that for Oracle Linux, we must apply the patch that contains libdb.so.2. Since then, I do not have an account to support oracle, I cannot get this fix and based on rules, no body can send it in an email, which means that we can not install this distribution on Oracle Linux without having to pay for the supported. Since then, it is a learning exercise without the use of serious production of R12 apps, we do not have any arrangement with Oracle support.

For Suse, I also have the same problem, but when I try to start the opmn manually using opmnctl beginning, she responds with message, began. But when I use opmn stopall, the computer stops responding. Now, I don't know yet how to start debugging this problem.

I would give just to try to install it or there at - it a hope?

Thank you.

Hello

I finally managed to install R12 on Suse Linux Enterprise 10 SP3. I decided to start again after a repair for the past two days. Here's the process:

a. install Suse Enterprise 10 SP3 with office and all development packages offered in the facility.

b. click the computer--> install the software--> search for the 'db1 '. It will give you two or more packages. Install db1_185xx (from Berkley). This provides a required libdb.so.2.

c. then go through the installation as outlined in the instructions using rapidwiz.

It fills correctly and I can see the login screen now.

Now, I need to know how to put in place to automatically start all services after startup.

Thank you for your help.

Kind regards

Sohail naima.

Tags: Oracle Applications

Similar Questions

  • Installation of SuSE Linux service pack 3 on HP probook 4545 s

    Hi, iam buy mobile HP4545s with Suse Linux Enterprise Desktop service pack 2.

    This operating system is faster than Windows.

    My question is:

    I can't install Suse Linux Enterprise Desktop, service Pack3?

    What new hardware drivers iam need?

     

    Hello PSerkov,

    Your ProBook is a business model.  Your question would better answer on the HP Enterprise Business Community Forum

    Good luck!

  • Tecra A6: A few problems with the installation of SuSE Linux 10.2

    Installation successful... almost everything works.

    Problems:

    (No keyboard) keys not supported function (I / 0, aid, switch of the screen)

    Fingerprint reader: no available software, the hardware has been detected.

    Audio: The adapter high definition audio was detected as 82801 G (ICH7 Family) High Definition Audio Controller, snd-hda-intel driver. but the audio quality works more poor 1 channel, the other bad scratch (WinXP: Realtek High Definition Audio 65535 internal, it works well)

    ACPI: Power saver with SuSE 10.1 no longer worked with SuSE 10.2

    -EXTERNAL H/W-
    USB Document Schanner Fujitsu fi-5110EO detected and work (foundations only)

    I would be happy to receive some additional (or better driver) information about the sound card problem.

    Thank you!

    (No keyboard) keys not supported function (I / 0, aid, switch of the screen)

    If you have a Phoenix BIOS, then use the omnibook (http://omnibook.sourceforge.net), for the Toshiba BIOS module uses fnfx (http://fnfx.sourceforge.net/). But this isn't 100%, a developer of omnibook module already makes information of Toshiba A100 and perhaps a few other laptops Toshiba too.

    Fingerprint reader: no available software, the hardware has been detected.

    If this is the same as in the A100 (Bus 002 Device 002: ID 0483:2016 SGS Thomson Microelectronics fingerprint reader), then look at the http://thinkfinger.sourceforge.net/.

    Audio: The adapter high definition audio was detected as 82801 G (ICH7 Family) High Definition Audio Controller, snd-hda-intel driver. but the audio quality works more poor 1 channel, the other bad scratch (WinXP: Realtek High Definition Audio 65535 internal, it works well)

    SND-hda-intel works best with alsa 1.0.14_rc1, its has started working on my A100 after adding it into /etc/modules.conf:
    model options snd-hda-intel = uniwill-m31

  • Required rpm for suse linux 11 for 11.2.0.3 installation

    Hi all

    OS - SUSE Linux Enterprise Server 11 (x86_64)

    DB - 11.2.0.3

    I install 11.2.0.3 on suse linux for prerequisites, I get an error message for the packages needed, someone can tell me where to download these packages.

    I don't have the DVD, so I can't mount and install the rpm. Of zypper I get this error

    expdev1: ~ # zypper install libstdc ++-3.4.6

    Loading repository...

    Reading installed packages...

    «libstdc ++ not found-3.4.6'.»

    Resolution of dependencies of the package...

    Nothing to do.

    Can someone help me in this

    I went once more thanks to this document for the packages needed and the list of package warnings that I got.

    I checked each package by 'rpm - q' as mentioned and I found that all the required packages are already installed, but during the installation of oracle, is giving the alert to the new list of packages which i think is not necessary at all, and also they are not mentioned in the document so again I think it's a behavior when installing on vmware. The solution is to ignore and continue what I ordered, the installation is completed without error.

    I found somewhere to change the configuration file before installation to avoid these warnings.

  • How to automatically start 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 implement the Oracle for an automatic start.

    My/etc/oratab file contains the following:

    sidname:/opt/oracle/product/11gR2/db:Y
    

    I created a /etc/init.d/dbora file that 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
    

    So 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 the reboot, Oracle did not work:

    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 works very well after the start of the instance (by logging in as "sys as sysdba" sqlplus and the command 'boot') and the listener. But it will not start automatically after the server is restarted. Why is this?

    I got it to work.  I had to change the file released 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 files auto_listener.sh and startup.log in $ORACLE_HOME because they were incorrectly owned by root.

  • Quick installation of R12

    check out rapidwiz for R12; gives error RW-50004.
    Cannot run installation of database ORACLE_HOME

    RW-50010: error:-script returned an error: 127
    RW-50004: Error Code when you run the external process. Check the log file for more details.
    Install the driver database for the PROD instance running

    Published by: 877489 on October 10, 2011 03:05

    877489 wrote:
    controls post install fails now... RW 50016:Error file environment ORACLE_HOME not created APPS, iAS ORACLE_HOME and the environment APPL_TOP files not created.
    The DB is not upward and the listner too.
    EBS version "Oracle® E-Business Suite Certified Configuration Production version R12 CC 1.5 for Linux x 86-64"
    OS OEL4.8 x 64 bit

    This is a generic error, please check the files Setup logs for more information about the error.

    Thank you
    Hussein

  • Problem installation 10 R2 companion on Suse Linux 11.0 64 bit

    Dear Oracle experts,

    I face a serious problem during the Installation of the disk companion for 64-Bit Oracle 10 g 2 on Suse Linux 11.0.

    I'm trying to install the http server to the course, but the beginning the installation fails.
    Opmnctl startall command raises the error:

    /Home/Oracle/Oracle/product/10.2.0/Apex/opmn/bin/opmnctl startall
    opmnctl: from opmn and managed all process...
    /Home/Oracle/Oracle/product/10.2.0/Apex/opmn/bin/opmn: symbol lookup error: /home/oracle/oracle/product/10.2.0/apex/lib/libclntsh.so.10.1: undefined symbol: nnfyboot
    /Home/Oracle/Oracle/product/10.2.0/Apex/opmn/bin/opmn: symbol lookup error: /home/oracle/oracle/product/10.2.0/apex/lib/libclntsh.so.10.1: undefined symbol: nnfyboot
    /Home/Oracle/Oracle/product/10.2.0/Apex/opmn/bin/opmn: symbol lookup error: /home/oracle/oracle/product/10.2.0/apex/lib/libclntsh.so.10.1: undefined symbol: nnfyboot
    opmnctl: opmn startup failed


    Now I don't know what to do...
    Have I not some wrongf libraries?
    Where can I get libraries suitable?

    Best regards

    Daniel

    Dear Oracle experts,

    I could solve the problem.
    It is through a broken db4 library I had to install again.

    Best regards

    Daniel

  • Oracle instance startup when starting (Oracle 10 g on Suse Linux 10.2)

    Dear Oracle expoerts,

    I have a problem with a server, Oracle 10g R2 to start on Suse Linux 10.2 at boot time.

    I created a startup script (see below) and this startup script works perfectly if I call it with
    /etc/init.d/Oracle start as user root.

    But during system startup it doen't work.

    I've placed links to
    /etc/rc3.d/S99oracle
    and
    /etc/rc3.d/K01oracle

    As you can see in my script I also wrote that all calls to my boot option to be independent of
    Variable environment since during my desperate attempts to start the database, I thought that I had a problem with my
    environment variables.

    Now I can not find any reason why the belkow script should not working at boot time.

    I'm happy for any help.

    Best regards

    Daniel


    #! / bin/sh - x
    #
    # Change the value of ORACLE_HOME to specify the right Oracle home
    # To your installation directory.
    ORACLE_HOME=/home/Oracle/Oracle/product/10.2.0/Db_1
    ORACLE = oracle # user der Oracle data base browser
    PATH = ${PATH}: $ORACLE_HOME/bin
    HOST = "hostname".
    Platform = 'uname '.
    export ORACLE_HOME PATH


    case '$1' in
    implementation)
    /Home/Oracle/Oracle/product/10.2.0/Db_1/bin/lsnrctl start
    echo "Listener started.
    Su oracle - c /home/oracle/oracle/product/10.2.0/db_1/bin/emctl start dbconsole
    echo 'EM started... ". »
    /Home/Oracle/Oracle/product/10.2.0/Db_1/bin/DBSTART $ORACLE_HOME
    echo "dbstart called...". »
    Su-oracle - c ' /home/oracle/oracle/product/10.2.0/db_1/bin/sqlplus s / as SYSDBA @/ home/oracle/Systemskripte/startupDB.sql ' &
    ;;
    stop)
    judgment of su oracle - c $ORACLE_HOME/bin/lsnrctl &
    Oracle - c $ORACLE_HOME/bin/emctl known stop dbconsole &
    Oracle to su - c $ORACLE_HOME/bin/dbshut $ORACLE_HOME &
    ;;
    *)
    echo "use: $0 {start |}". stop}.
    output
    ;;
    ESAC
    #
    output

    Hello

    I don't know if its standard location, but I have on SLES script /etc/profile.d/oracle.sh
    Please modify this script and db should start automatically.

    Kind regards
    Tom
    http://OracleDBA.cz

  • SuSE Linux ARE 9 guest - installation problem

    Hi all

    under VMware 2.0.0 WinServber 2003, I tried to install SuSE Linux Enterprise Server as a guest operating system. But she didn't in this sense, I'm not able to read the contents of the console remotely.

    After that turn on/off the normal startup innstallationnprocess, but after passing all the tasks of detecting screen spit upward into two and one can only imagine that the last line says "from Yast"

    I tried to start the installation with another resolution, but has no - installation always splits the screen and you have two unreadable screens with mediocre colors (somehow amber "retarded") in the 2/3 of the top and bottom you have the typical SuSE.

    Any help or info how to make it useful to install SLES9 is welcome.

    Thank you and br

    / Ralf

    It is a known problem with Suse 9.

    try to install using the text mode

    Here you have a few references:

    http://www.Novell.com/coolsolutions/feature/15955.html

    http://en.openSUSE.org/Installing_SUSE_Linux_9.0_as_a_VMware_guest

    http://www.Novell.com/coolsolutions/QnA/1805.html

    concerning

    Jose

  • SUSE linux is the best for Oracle 9i or not

    Hi all

    I want to know if linux SUSE for ORacle 9i is better or not. My boss wants to migrate our course Oracle 9i on Solaris 8 with Suse Linux storage without stroage.

    Will be the suse linux is good for oracle 9i and

    Is it true that it will support SUSE linux Oracle within 6 months...


    Please let me know...

    Click on the link in my last post, each operating system is listed.

    Nicolas.

  • Problems with Qosmio G20 and SuSE Linux 10.3 installation

    Hello

    I can't install SuSE Linux 10.3, because the hard drive will not be detected.
    I think it's the Software Raid... in the BIOS are only the options of Raid 0 and JBOD. When I changed to JBOD, it says I need to install the new os.
    Windows XP Professional is installed on the computer and I want to have a system to dual-boot with Open SuSE 10.3.
    How can I solve the problem?

    MfG

    Man... that's a really complicated problem.

    First of all, please consult this site unofficial toshiba official: http://linux.toshiba-dme.co.jp/linux/eng/pc/QosG20_report.htm

    West a complete report on your machine where all material etc. are described. The two entries on the bottom of the site describe the problem that you have.

    Another good friend called 'google' redirected me [THIS | http://ubuntuforums.org/showthread.php?t=574116] site.

    You see, it s a problem since your RAID controller is not correctly recognized by some kernels/distributions.
    I have no perfect solution for you, but I propose to try another distro (since there are hundreds of them) who could probably work with your machine.

    The best would be to visit www.google.com and type something like "Qosmio G20 linux raid". Trust me, you will get many results. :)

    Keep rocking with linux ;)

    Welcome them

  • Oracle 10 g R2 on SuSe Linux 10 prerequisites

    Hello.

    I need to install Database 10 g 2 in a Suse Linux 10 568 but I m not able to find the needed packages that I need...

    Can someone show me how I can check it out?

    Thank you

    Salvation;

    Yes, it of Sami, please check & find your media

    Respect of
    HELIOS

  • Errors related to BSE quick installation 12.1 RW-500015 HTTP

    Hello I am trying full EBS 12.1.1 on RHEL 5.8 64 bits of the operating system using the Quick Setup program.

    I get the following errors on the control screen after installation and I have been unable to solve these problems. Any suggestions would be greatly appreciated!

    Thanks in advance.


    RW-500015 error: listener HTTP does not
    RW-500015 error: Server HTTP virtual directories does not
    RW-500015 error: Login Page does not
    RW-500015 error: Help Page does not
    RW-500015 error: JSP does not

    Published by: 917901 on March 12, 2012 08:45

    Hello I am trying full EBS 12.1.1 on RHEL 5.8 64 bits of the operating system using the Quick Setup program.

    I get the following errors on the control screen after installation and I have been unable to solve these problems. Any suggestions would be greatly appreciated!

    Have you completed all the steps according to the (Oracle E-Business Suite Installation and upgrade 12 Release Notes (12.1.1) for Linux x 86-64 [761566.1 ID])?

    RW-500015 error: listener HTTP does not
    RW-500015 error: Server HTTP virtual directories does not
    RW-500015 error: Login Page does not
    RW-500015 error: Help Page does not
    RW-500015 error: JSP does not

    It is a common mistake - please check the files Setup logs for more information about this error.

    R12 Post Installation steps: Apache fails: RW-50015 cannot load Libphp4.So, unresolved symbols [ID 736689.1
    Fresh R12 Installation fails with RW-50015 [ID 452101.1]
    R12 Rapidwiz Postinstall steps Http, JSP, connection, the virtual directory page, Help Page fails [414414.1 ID]
    Is it Ok to have a hyphen in the host name or domain for Oracle Application 12.1.1? [ID 1347448.1
    Could not load program FNDPSTAX, rtld: 0712-001 symbol nzospRandNum [1100836.1 ID]

    Thank you
    Hussein

  • R12.2 installation

    Hello


    I completed the installation of 11.5.10.2 R12.2 ( after setting the file system using the quick installation) and interrogate this sql


    Select RELEASE_NAME in the FND_PRODUCT_GROUPS;

    RELEASE_NAME

    --------------------------------------------------

    11.5.10.2

    Am I missing any action. ?

    _______________________________________________________

    2. based on the reference no. doc. E48834-10

    Apply AD 12.2 update driver (required) download and unzip the driver of AD upgrade to 12.2 (patch 10117518( )

    AutoPatch error:

    Please ask adgrants.sql file at the level of the database before you apply this hotfix

    I could not continue to work. could you please me? where I'm wrong.

    Thank you

    Prince

    Hello Hussien,

    When I call adpatch

    adpatch

    Copyright (c) 2002, 2012 Oracle Corporation

    Redwood Shores, California, USA

    Oracle E-Business Suite AutoPatch

    Version 12.2.0

    NOTE: You can use this utility to custom development

    unless you have written permission of Oracle Corporation.

    Variable env LOGDIR is undefined *.

    This is common or am I missing some env?

    Variable env LOGDIR is undefined *.

    ATTENTION: AutoPatch verifies more pre-requisites unapplied patches.

    You must use the wizard of Patch of OAM for this feature. Alternatively, you can

    see the Readme for more information.

    After re run the adpatch

    Analysis and fix the driver file loading...

    Processing line 10000.

    13961 rows processed.

    Do not check integrity patch as an indicator of integrity checking is disabled.

    Reading patch file of the driver.

    Determine the version target...

    The current version of target is 11.5.10.2

    AutoPatch error:

    Please ask adgrants.sql file at the level of the database before you apply this hotfix

    You must check the file

    / apps2/Property/Product/devr12/FS1/EBSapps/Appl/admin/PRO0DV/log/1

  • Deliver R12.2 installation for the upgrade

    Hello

    I'm braving question R12.2 installation for the upgrade

    Any idea on this issue.

    Fatal error: T2K install Service

    oracle.apps.fnd.txk.config.ProcessStateException: OPatch process failed: out = 73 see Journal for more details. CMD = /apps1/oracle/PROD/11.2.0/OPatch/opatch-skip_subset-skip_duplicate-verbose - silent - ocmrf /apps1/oracle/PROD/11.2.0/temp/PROD_prod/DBInstallHome/fnd/admin/template/txkForms_ocm.rsp /apps1/oracle/PROD/11.2.0/temp/PROD_prod/patches/16342486/16342486/ napply

    at oracle.apps.fnd.txk.config.OPatchActionNode.processState(OPatchActionNode.java:296)

    at oracle.apps.fnd.txk.config.PatchActionNode.processState(PatchActionNode.java:187)

    at oracle.apps.fnd.txk.config.PatchNode.processState(PatchNode.java:338)

    at oracle.apps.fnd.txk.config.PatchesNode.processState(PatchesNode.java:79)

    at oracle.apps.fnd.txk.config.InstallNode.processState(InstallNode.java:68)

    at oracle.apps.fnd.txk.config.TXKTopology.traverse(TXKTopology.java:594)

    at oracle.apps.fnd.txk.config.InstallService.doInvoke(InstallService.java:224)

    at oracle.apps.fnd.txk.config.InstallService.invoke(InstallService.java:237)

    at oracle.apps.fnd.txk.config.InstallService.main(InstallService.java:291)

    Impossible to install the patches Oracle Database Home

    RW-50010: error:-script returned an error: 1

    RW-50004: Error Code when you run the external process.  Check the log file for more details.

    Install the driver database for the PROD instance running

    Thank you

    ANUP

    RW-50004: Error Code when you run the external process.  Check the log file for more details.

    Please check the log files for more information about the error - quick troubleshooting install for E-Business Suite version 12.2 (Doc ID 1378579.1)

    Thank you

    Hussein

Maybe you are looking for