Oracle 8.1.7 installation on Mandrake 9.2 Linux

Hello Oracle Linux experts,
I've got problem with installation of Oracle 8.1.7 on Mandrake 9.2 linux... I know that Mandrake not certified for running Oracle 8i - but may be someone could help ? I managed to install it successfully on 8.x and 9.0 versions
of Mandrake - but 9.2 (currently installed one giving me problems). I could finish the installation - but unfortunately not all oracle modules (including oracle binary) built successfully. And I've got some errors on a linking stage (even if I run setup_stubs.sh - and according to log file generated by this script all modules have been rebuild) Any suggestions ? Am I missing something ? This are the steps that I was using for Mandrake 9.0 and now I am trying the same ones on 9.2:
---cut---
This is what I've done:
1. Create oracle installation account (in my case 'ora817' and use 'dba' as primary group) As shell for this account I used 'bash'
2. Create all required directory structure for Oracle installation i.e.
ORACLE_BASE=/apps/ora_817
ORACLE_HOME=${ORACLE_BASE}/product/8.1.7
3. In home directory of ora817 use create / update file .bash_profile:
---.bash_profile---
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
# PATH=$PATH:$HOME/bin
# export PATH
# unset USERNAME
JAVA_HOME=/usr/local/java; export JAVA_HOME
ORACLE_BASE=/apps/ora_817; export ORACLE_BASE
ORACLE_HOME=${ORACLE_BASE}/product/8.1.7; export ORACLE_HOME
PATH=${PATH}:${ORACLE_HOME}/bin; export PATH
if [${LD_LIBRARY_PATH} == ""]
then
LD_LIBRARY_PATH=${ORACLE_HOME}/lib:/usr/lib:/usr/local/lib
else
LD_LIBRARY_PATH=${ORACLE_HOME}/lib:${LD_LIBRARY_PATH}
fi
export LD_LIBRARY_PATH
export LD_ASSUME_KERNEL=2.2.5
umask 002
unset LANG
unset LANGUAGE
---.bash_profile---
4. Update / create .bashrc file in the same directory:
---.bashrc---
# .bashrc
# User specific aliases and functions
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
unset LANG
unset LANGUAGE
unset LC_MONETARY
unset LC_NUMERIC
unset LC_MESSAGES
unset LC_COLLATE
unset LC_CTYPE
unset LC_TIME
unset NLS_LANG
---.bashrc---
Then you would have to logout and login back so that changes take place and that's it - your Oracle Universal Installer will start !!!
Few other notes:
Before installation you would have to make sure that you got Java JDK-1.1.8 - file should be called:
jdk118_v3-glibc-2.1.3.tar.bz2
You could find it on the net.
During installation there will be step when you would have to run file $ORACLE_HOME/root.sh - make sure that you edit this file before execution:
Line 102:
RMF=/bin/rm -f
is changed into
RMF="/bin/rm -f"
and line 156
RUID=`/usr/bin/id|$AWK -F\( '{print $2}'|$AWK -F\) '{print $1}`
is changed into
RUID=`/bin/id|$AWK -F\( '{print $2}'|$AWK -F\) '{print $1}'`
Please note that id command in Mandrake 9.0 linux located in /bin directory and not in /usr/bin !
Also path for 'sed' module should be changed from /usr/local/bin to just /bin
After installation I suggest to unset LD_ASSUME_KERNEL
env variable and install and run glibc-2.1.3-stubs.tar.gz package that will relink modules for use with newer version of glibc. Copy this package to $ORACLE_HOME directory, untar it - i.e.
tar -xvzf ./glibc-2.1.3-stubs.tar.gzand then run ./setup_stubs.sh script. (make sure that you do so by the same user that was used during oracle installation)
This file you could get from oracle OTN web site.
---cut---
Regards,
Alex

Just some additional information - I think that I found the problem - but no solution so far:
When I am trying to rebuild (relink) oracle (using relink script from $ORACLE_HOME/bin - it worked for all other options apart from 'oracle' and as a result oracle binary in
$ORACLE_HOME/bin is missing....) this is kind of error that I've got:
---cut---
- Linking Oracle
rm -f /apps/oracle/product/8.1.7/rdbms/lib/oracle
gcc -o /apps/oracle/product/8.1.7/rdbms/lib/oracle -L/apps/oracle/product/8.1.7/rdbms/lib/ -L/apps/oracle/product/8.1.7/lib/ -L/apps/oracle/product/8.1.7/lib//stubs/ -Wl,-E /apps/oracle/product/8.1.7/rdbms/lib/opimai.o /apps/oracle/product/8.1.7/rdbms/lib/ssoraed.o /apps/oracle/product/8.1.7/rdbms/lib/ttcsoi.o /apps/oracle/product/8.1.7/rdbms/lib/kpuasvr.o /apps/oracle/product/8.1.7/lib/nautab.o /apps/oracle/product/8.1.7/lib/naeet.o /apps/oracle/product/8.1.7/lib/naect.o /apps/oracle/product/8.1.7/lib/naedhs.o /apps/oracle/product/8.1.7/rdbms/lib/config.o -lserver8 -lskgxp8 -lclient8 -lvsn8 -lwtcserver8 -lcommon8 -lgeneric8 /apps/oracle/product/8.1.7/rdbms/lib/defopt.o -lknlopt -lslax8 -lpls8 -lplp8 -lserver8 -lclient8 -lvsn8 -lwtcserver8 -lcommon8 -lgeneric8 -lknlopt -lslax8 -lpls8 -lplp8 `cat /apps/oracle/product/8.1.7/rdbms/lib/nmliblist` -ldbicx8 -ldbicx8 -ljox8 -lserver8 -lwwg8 -lobk `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtcserver8 -lcommon8 -lgeneric8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtcserver8 -lcommon8 -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lclient8 -lvsn8 -lwtcserver8 -lcommon8 -lgeneric8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lserver8 `if /usr/bin/ar tv /apps/oracle/product/8.1.7/rdbms/lib/libknlopt.a | grep "kxmnsd.o" > /dev/null 2>&1 ; then echo " " ; else echo "-lordsdo8"; fi` -lordts8 -lctxc8 -lctx8 -lzx8 -lgx8 -lctx8 -lzx8 -lgx8 -lordvirt8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /apps/oracle/product/8.1.7/lib/sysliblist` `if [ -f /usr/lib/libsched.so ] ; then echo -lsched ; else true; fi` -Wl,-rpath,/apps/oracle/product/8.1.7/lib:/lib:/usr/lib -lm `cat /apps/oracle/product/8.1.7/lib/sysliblist` `if [ -f /usr/lib/libsched.so ] ; then echo -lsched ; else true; fi` -ldl -lm -ldl `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lsql8 -lsql8
/usr//bin/ld: /apps/oracle/product/8.1.7/rdbms/lib/oracle: hidden symbol `__fixunssfdi' in /usr//bin/../lib/gcc-lib/i586-mandrake-linux-gnu/3.3.1/libgcc.a(_fixunssfdi.oS) is referenced by DSO
collect2: ld returned 1 exit status
make: *** [apps/oracle/product/8.1.7/rdbms/lib/oracle] Error 1
---cut---
Any comments ?

Similar Messages

  • Oracle 8.1.7 installation on Mandrake 8.1 (New)

    Has anybody tried installing ORACLE 8.1.7 on the new release
    Mandrake 8.1 distro? I did try to install but it freezes at
    start of installer, though it worked perfectly with the earlier
    distro (mandrake 8.0)
    any comments or suggestions ?

    You can try the oracle9i solution to the link problem and see if it fixes the 8i link problem. It can't hurt to try and it only takes a second. See the following url and look at the 9i on 8.1 instructions. There is a section about a link error on disk two. This fix may work in 8.1.6 as well. Please let me know if it works. I can make a note in my page.
    http://members.home.net/joseph.j.flynn/oracle.htm

  • Oracle 8.1.7 installation problem on ( linux) red hat 7.1

    HI,
    I AM TRYING TO INSTALL ORACLE 8.1.7 ON LINUX RED HAT(7.1).
    AFTER DOING ALL THE STEPS WHEN I RUN(./runInstaller) I am getting message
    "Initializing java virtual machine from ../stage/components/oracle.swd.jre/1.1.8/1/datafiles/Expanded/Linux/bin/jre. please wait" and the execution terminates.
    PLEAE HELP ME please help me !!!!!!
    Also let me know which file to untar in the CD (linux81701.tar & glibc-2.1.3-stubbs.tar) also installed JDK1.1.8.
    Please help Me..

    Hi,
    My name is Fridirick REMBEAUX and I have the same problem. ;))
    I did not understand the first point after :
    1. /usr/i386-glibc21-linux/bin/i386-glibc21-linux-env.sh
    At which url can I get this script ?
    I think that maybe it's not the same problem because the installer and so the jre
    still executed but nothing else appears.
    And I'm also lost. When did the oracle products work well ??
    I think I damned.
    Hi
    I get same Problem on Rh7.3 !But when i execute 2 Step will be OK!
    1. /usr/i386-glibc21-linux/bin/i386-glibc21-linux-env.sh
    2. export LD_ASSUME_KENERL=2.2.5
    HI,
    I AM TRYING TO INSTALL ORACLE 8.1.7 ON LINUX RED HAT(7.1).
    AFTER DOING ALL THE STEPS WHEN I RUN(./runInstaller) I am getting message
    "Initializing java virtual machine from ../stage/components/oracle.swd.jre/1.1.8/1/datafiles/Expanded/Linux/bin/jre. please wait" and the execution terminates.
    PLEAE HELP ME please help me !!!!!!
    Also let me know which file to untar in the CD (linux81701.tar & glibc-2.1.3-stubbs.tar) also installed JDK1.1.8.
    Please help Me..

  • ORACLE 8.1.7 INSTALLATION PROBLEM  ON LINUX (URGENT)

    HI,
    I AM TRYING TO INSTALL ORACLE 8.1.7 ON LINUX RED HAT(7.1).
    AFTER DOING ALL THE STEPS WHEN I RUN(./runInstaller) I am getting message
    "Initializing java virtual machine from ../stage/components/oracle.swd.jre/1.1.8/1/datafiles/Expanded/Linux/bin/jre. please wait" and the execution terminates.
    PLEAE HELP ME please help me !!!!!!
    Also let me know which file to untar in the CD (linux81701.tar & glibc-2.1.3-stubbs.tar) also installed JDK1.1.8.
    Please help Me..

    Try setting the LD_ASSUME_KERNEL=2.2.5 environment variable before you run the installer.
    I needed to do this to get the 8.1.7 installer running on RedHat 7.1 and 7.2.
    Scott
    HI,
    I AM TRYING TO INSTALL ORACLE 8.1.7 ON LINUX RED HAT(7.1).
    AFTER DOING ALL THE STEPS WHEN I RUN(./runInstaller) I am getting message
    "Initializing java virtual machine from ../stage/components/oracle.swd.jre/1.1.8/1/datafiles/Expanded/Linux/bin/jre. please wait" and the execution terminates.
    PLEAE HELP ME please help me !!!!!!
    Also let me know which file to untar in the CD (linux81701.tar & glibc-2.1.3-stubbs.tar) also installed JDK1.1.8.
    Please help Me..

  • Oracle Application Server 10g Installation Guide for Windows

    The link to Oracle Application Server 10g Installation Guide for Windows on the OTN Web Site don't work. Using search on site does not turn up any installation document for Oracle Application Server 10g.
    How can I find the Installtion Guide or the Quick Installtion Guide for Oracle Application Server 10g for Windows?

    Hi,
    The docs you seek are available through the OTN documentation pages at: http://otn.oracle.com/documentation/index.html.
    Click on the link for "Oracle Application Server Release 10g (9.0.4)" and then on the "View Library" link for part B10468_04 - Oracle Application Server 10g Online Documentation 10g (9.0.4.0.0) for Microsoft Windows.
    The Docs are located under the Documentation tab.
    Alternatively, here is the direct link to the Documentation Tab interface of the Library:
    http://download.oracle.com/docs/cd/B10468_04/docs.htm
    Regards,
    Les

  • Problem with Oracle 11g(32 bit) installation on windows 7 ultimate edition

    Hello all,
    I have a problem with Oracle 11g(32 bit) installation on windows 7 ultimate edition (32 bit).
    I have successfully installed it immediately after OS installation. But today, i have decided to deinstall it and go for Oracle 10g version for 32 bit.
    Everything went normal during installation, but i can see the services is not present in services.msc. Also its throwing some exception for dbca, netca
    Now i tried to deinstall it and again go for 11g. But even the same story here..
    Can anybody give me a solution for this..
    -Regards
    Rajesh Menon

    Saqib Alam wrote:
    i recently install Oracle 11g R1 on windows 7 ultimate, i installed it and working perfectly.
    ur problem is that u install latest version and now u trying to installing old version.
    now u need to uninstall 10g and delete oracle from services, if the probleme presist then u should
    install fresh windows 7.
    Regards
    SaqibNo need to install a fresh OS. That's like tearing your house down just because you wired a lamp wrong and blew a circuit breaker.
    There are MeaLink notes on how to eradicate an Oracle install from Windows, but it boils down to this:
    Stop all Oracle services
    In the registery:
    - Delete all oracle services from the register (HKLM\SYSTEM\CurrentControlSet
    - Delete the entire Oralce folder from HKLM\Software
    reboot
    Delete the ORACLE_HOME directory and any other Oracle related directories/files. Offhand, it seems like there is an Oracle directory under Program Files.
    reboot

  • SEGV Oracle 8.1.6 installer on RH 6.1

    Hi,
    When I try to install Oracle 8.1.6 on a stock RedHat 6.1 system, the java installer dies on me with the message:
    SIGSEGV received at bffff1e0 in /opt/orastage/Oracle8iR2/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/native_threads/libawt.so. Processing terminated.
    Any on how to overcome that?
    Thanx in Advance
    Lefty Kreouzis
    [email protected]

    Oracle 9.2 was the first version of the database certified on Windows XP Professional. It may not be possible to install 8.1.6 on XP Pro-- if it is possible to install the database, random things may not work correctly. My suggestion would be to either upgrade your database to Oracle 9.2 or downgrade your operating system to Windows 2000 Professional.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Oracle 8.1.7 installer on Linux RH 7.3 does not start

    Hi Folks,
    Does somebody know what to do when everything is fine, but the installer does not want to show up.
    I run:
    [oracle8@centauro Disk1]$ /bin/sh
    sh-2.05a$ ./runInstaller
    sh-2.05a$ Initializing Java Virtual Machine from ../stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/bin/jre. Please wait...
    and nothing happen, I also check processes
    sh-2.05a$ ps
    PID TTY TIME CMD
    1325 pts/3 00:00:00 bash
    1475 pts/3 00:00:00 sh
    1482 pts/3 00:00:00 runInstaller
    1483 pts/3 00:00:31 jre
    1488 pts/3 00:00:00 ps
    sh-2.05a$
    It says its running but nothing show up.
    Any clue, I appreciate any help
    TKS
    CLAUDIO

    use ORACLE8.1.7 install on linux 7.2 or 9.0 class

  • Oracle RAC 11g R2 installation complete installation guide

    Hi,
    Please suggest any oracle docs for Oracle RAC 11g R2 installation complete installation.
    I am in process for installating Oracle RAC 11g r2 first time in my life this weekend.please help.

    Hi Praveen,
    Tim Hall has a perfect guide for installing Oracle RAC, you can review all the articles here:
    http://www.oracle-base.com/articles/11g/articles-11g.php#db11g_release_2_installations
    Consider also getting familiar with Real Application Clusters, because installing is only the very top of the solution and knowledge of how it works is a must:
    http://www.oracle.com/pls/db112/portal.portal_db?selected=16&frame=#oracle_real_application_clusters
    Regards,
    Sve

  • Oracle 9i Release 2 - Installation hangs please help

    OS: SUSE 10
    I have to Install oracle 9i Release 2(9.2.0.4.0)
    I have java-1_4_2-sun installed, and the installation directory/path is /usr/lib/jvm.
    now my question is should I change the path of JRE_LOCATION, in the oraparam.ini from
    JRE_LOCATION=../../stage/Components/oracle.swd.jre/1.3.1.0.0/1/DataFiles/Expanded/jre/linux
    to
    JRE_LOCATION=/usr/lib/jvm
    Second
    when as user oracle, i execute the installer, it goes smooth till the "Database Configuration" page, i select the
    General Purpose > Next > now here installation progress bar stuck/hangs at 87%
    following is the output of /opt/oracle/oraInventory/logs/oraInstall2007-04-26_04-37-20AM.err
    java.lang.ExceptionInInitializerError: java.util.MissingResourceException: Can't find bundle for base name resources/libRes.properties, locale en
    at java.util.ResourceBundle.throwMissingResourceExcep tion(ResourceBundle.java:712)
    at java.util.ResourceBundle.getBundleImpl(ResourceBun dle.java:683)
    at java.util.ResourceBundle.getBundle(ResourceBundle. java:546)
    at OiGeneralPortQueryRes.<clinit>(OiGeneralPortQueryRes.java:7)
    at getFreePort.performQuery(getFreePort.java:477)
    at oracle.sysman.oii.oiis.OiisCompContext.doQuery(Oii sCompContext.java:2330)
    at Components.oracle.sysman.webserver.v9_2_0_1_0.Comp Context.getCalculatedValueObject_PORT(CompContext. java:304)
    at Components.oracle.sysman.webserver.v9_2_0_1_0.Comp Context.getCalculatedValueObject(CompContext.java: 224)
    at oracle.sysman.oii.oiis.OiisCompContext.getCalculat edValue(OiisCompContext.java:612)
    at oracle.sysman.oii.oiis.OiisVariable.getCalculatedV alue(OiisVariable.java:733)
    at oracle.sysman.oii.oiis.OiisVariable.setVariable(Oi isVariable.java:1407)
    at oracle.sysman.oii.oiis.OiisCompContext.doOperation (OiisCompContext.java:991)
    at oracle.sysman.oii.oiif.oiifb.OiifbLinearIterator.i terate(OiifbLinearIterator.java:116)
    at oracle.sysman.oii.oiic.OiicCompsWizEngine.doOperat ion(OiicCompsWizEngine.java:182)
    at oracle.sysman.oii.oiif.oiifb.OiifbLinearIterator.i terate(OiifbLinearIterator.java:116)
    at oracle.sysman.oii.oiic.OiicInstallSession$OiicSelC ompsInstall.doOperation(OiicInstallSession.java:87 8)
    at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.ite rate(OiifbCondIterator.java:140)
    at oracle.sysman.oii.oiic.OiicPullSession.doOperation (OiicPullSession.java:614)
    at oracle.sysman.oii.oiic.OiicSessionWrapper.doOperat ion(OiicSessionWrapper.java:177)
    at oracle.sysman.oii.oiif.oiifb.OiifbLinearIterator.i terate(OiifbLinearIterator.java:116)
    at oracle.sysman.oii.oiic.OiicInstaller.run(OiicInsta ller.java:358)
    at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInst aller.java:637)
    Plz help me
    Regards

    Workaround consits of two steps:
    1. Use jre 1.3.1_n (where n>10) (1.4.n use only if your platform is x86_64)
    2. execute following commands before you execute runInstaller or dbca:
    unset LANG
    unset LC_TYPE

  • Oracle 11g R1 Automatic Installation shell scripts

    Hy Guys,
    Please can someone help me with: Oracle 11g R1 Automatic Installation shell scripts. A guide, how to or a link will be wellcome
    Kind Regards
    Easyman
    Edited by: Easyman on Feb 2, 2010 3:58 AM

    Hi Easyman,
    sure, just have a look in $INSTALL_CONF directory. Files starting with swInst* are referencing a response file from $INSTALL_CONF/response directory. Either use a sample configuration file or add your own response file to install Oracle.
    Cheers,
    David
    OCP 9i / 10g / 11g
    http://www.oratoolkit.ch/knowledge/howto/installation/otn.php
    P.S.: If you have more questions about oraToolKit please contact me at: http://www.oratoolkit.ch/faq.php

  • Oracle PIM Data Hub installation

    Hi,
    This is pertaining to Oracle PIM Data Hub installation.
    I need to install Oracle PIM Data Hub in my local machine.Following are the software components that I could identify for Oracle PIM Data Hub installation.
    1. Oracle database server 10g
    2. Oracle Application Server 10g (10.1.3.1.0)
    3. Oracle Identity Management 10g (10.1.4.0.1)
    It would be a favour,if anyone kindly verify whether the list is correct and exhaustive.Additionally,whether installing Oracle PIM Data Hub to any local machine is feasible.
    Thanks & Regards,
    Diptanil Sengupta

    Hey can anyone tell me where i can get the complete info on Oracle PIM and my company wants to go ahead with it. And if we could get a trial version of it, it will be of great help. will i be able to get a trial version of Oracle PIM..

  • Oracle Portal 11g - New Installation

    Hello,
    I have worked a lot of with IAS 10.1.2.3. Now I want to install Oracle Fusion Middleware 11g Release 1 (11.1.1.6.0). But I need the Portal for my old applications.
    I have found the document 1364497.1 "New Direction for Oracle Fusion Middleware 11g with Single Sign-On 10g". In the document is a section "Oracle Portal 11g - New Installation" from 23-MAY-2012. This describe in Part 1 that I have to install the Infrasturcture of Oracle Identity Management 10g (10.1.4.0.1) . But I can't find the needed sources in the given donlaod path (http://www.oracle.com/technetwork/middleware/ias/downloads/101401-099957.html).
    I found only Oracle Identity Management 10g (10.1.4.3). This version seems to me does not have an Infrasturcture.
    I don't know which sources I have to download to install the temporary needed Infrasturcture. Can anybody help to find the right sources?
    Thanks,
    Frank

    Hi Frank,
    I'd prefer to get the document published first. Also a few comments with regards to the OAM installation path.
    The benefits are :
    <li>You will be using OAM straight from the beginning, no SSO in the picture
    <li>You can install Oracle Portal with an 11g OID instead of a 10g OID (which you would get when installing IDM 10.1.4)
    <li>You can use an 11.2 database for both the Portal and OID repository. With IDM 10.1.4 you are restricted to an 10.1 or 10.2 database as the installer does not support 11g.
    There are some drawbacks as well :
    <li>There will be no DAS solution (oiddas). Both User/Group creation should be done with different tools (ldif files, dbms_ldap API, provisioning from a 3rd party LDAP server) as well as User and Group LOVs in the access tabs of several Portal components won't work. You can still enter the name of the user and group in the input field to grant privileges
    <li>The seeded login portlet does not work
    Thanks,
    EJ

  • Oracle SOA Suite 10g Installation Error

    The installation of SOA Suite in Solaris 5.10 ends with the following error. I would really appreciate if anyone could help me solve it.
    The content of ~/oraInventory/logs/oraInstall2008-04-17_02-22-00PM.out:
    Oracle JAAS [Thu Apr 17 14:27:05 MSD 2008] admin password is changed successfully
    opmnctl: starting opmn and all managed processes...
    opmnctl: opmn start failed.
    The following configuration assistants have not been successfully completed. These assistants must be completed for your product to be completely configured.
    Execute file /zones/u01/app/oas/product/oas10g/cfgtoollogs/configToolCommands to re-run all skipped/failed configuration assistants.
    /zones/u01/app/oas/product/oas10g/jdk/bin/java -cp /zones/u01/app/oas/product/oas10g/j2ee/home/applications/ascontrol/ascontrol/WEB-INF/lib/ascontrol.jar:/zones/u01/app/oas/product/oas10g/j2ee/home/applications/ascontrol/ascontrol/WEB-INF/lib/log4j-core.jar:/zones/u01/app/oas/product/oas10g/jlib/oraclepki.jar:/zones/u01/app/oas/product/oas10g/jlib/ojmisc.jar: oracle.sysman.ias.studio.installer.ASControlConfigAssistant -sso true -j2eeinstance home -username oc4jadmin -password Protected value, not to be logged -oraclehome /zones/u01/app/oas/product/oas10g
    /zones/u01/app/oas/product/oas10g/jdk/bin/java -jar /zones/u01/app/oas/product/oas10g/bpel/system/services/lib/bpm-install.jar installSOABasic -oracle-home "/zones/u01/app/oas/product/oas10g" -http-proxy-required false -dbvendor oracle -database umd-mas 1521 OASDB -username ORABPEL -password Protected value, not to be logged -ias-name APPSRV.umd-mas -iasadmin-password Protected value, not to be logged -sso true -homeContainer home -ohstype oc4j -ohshost umd-mas -ohsport 8889
    /zones/u01/app/oas/product/oas10g/owsm/bin/wsmadmin.sh install
    /zones/u01/app/oas/product/oas10g/perl/bin/perl /zones/u01/app/oas/product/oas10g/config/launchopmnCA.pl
    /zones/u01/app/oas/product/oas10g/ant/bin/ant -buildfile /zones/u01/app/oas/product/oas10g/webservices/lib/wsil-install.xml -logfile /zones/u01/app/oas/product/oas10g/cfgtoollogs/wsil.txt -DHOST=umd-mas -DOPMNPORT="6003" -DADMIN_USER=oc4jadmin -DOPMNINSTANCE=home -Denv.JAVA_HOME=/zones/u01/app/oas/product/oas10g/jdk -Denv.ANT_HOME=/zones/u01/app/oas/product/oas10g/ant -Denv.ORACLE_HOME=/zones/u01/app/oas/product/oas10g -DENABLE_SSO=true Protected value, not to be logged
    An excerpt from $ORACLE_HOME/cfgtoollogs/configtools2008-04-17_02-22-00PM.log:
    Launched configuration assistant 'Oracle Application Server Configuration Assistant'
    Tool type is: Optional.
    The command being spawned is: '/zones/u01/app/oas/product/oas10g/jdk/bin/java -cp /zones/u01/app/oas/product/oas10g/j2ee/home/applic
    ations/ascontrol/ascontrol/WEB-INF/lib/ascontrol.jar:/zones/u01/app/oas/product/oas10g/j2ee/home/applications/ascontrol/ascontrol/WE
    B-INF/lib/log4j-core.jar:/zones/u01/app/oas/product/oas10g/jlib/oraclepki.jar:/zones/u01/app/oas/product/oas10g/jlib/ojmisc.jar: ora
    cle.sysman.ias.studio.installer.ASControlConfigAssistant -sso true -j2eeinstance home -username oc4jadmin -password *Protected value
    , not to be logged* -oraclehome /zones/u01/app/oas/product/oas10g'
    Configuration assistant "Oracle Application Server Configuration Assistant" failed

    I found the solution, if anyone has the same error, here is the solution:
    The cause of an error was improper configuration of the host. The ping returned two different IP addresses:
    oas@myhost $ ping -a myhost
    myhost (333.333.333.333) is alive
    oas@myhost $ ping -a myhost.domain.com
    myhost.domain.com (555.555.555.555) is alive
    I removed the wrong IP address for myhost.domain.com in /etc/inet/ipnodes:
    [email protected] # cat /etc/inet/ipnodes
    # Internet host table
    ::1 localhost
    127.0.0.1 localhost
    555.555.555.555 myhost.domain.com loghost
    Now the ping is correct:
    oas@myhost $ ping -a myhost
    myhost (333.333.333.333) is alive
    oas@myhost $ ping -a myhost.domain.com
    myhost.domain.com (333.333.333.333)) is alive
    Now installation finished successfully.
    Message was edited by:
    Rahat Agivetova

  • Designer 6i Release 2 makes Oracle 8.1.7 installation impossible!!!

    Hi,
    Designer 6i Release 2 makes Oracle 8.1.7 installation impossibleon Windows 2000 Server!!!
    After I uninstalled Designer 6i Rel2 through the Oracle Installer and then manually deleted all the left directories and Oracle registry entries I found HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ALL_HOMES\ID0\"\Registry Backup" entries that are not removable! Designer documentation says it's OK and that it won't do any harm. But it does! I have absolutely "Oracle free" machine, and why I try install Oracle 8.1.7, Oracle Installer pops up and after I click on "install products" closes and nothing happens.
    Please, help me:
    1) delete these registry entries;
    2) maybe there are some dlls I need to delete in order to make Oracle 8.1.7 work.
    P.S. I have to mention that Oracle Forms developer 6i Rel 2 was installed on top of the Designer in the same home (only Client Forms and Reports). But I cleaned up everything as described erlier.
    I think, it is critical not only for me to solve this problem ASAP.
    Thank you.

    Hello guys
    I had this problems for weeks, I could not reinstall Oracle 8.1.7 on Windows 2000 Advanced Server with the Universal Installer, it was all the time frozing after the splash screen. In my registry, I found the unremovable oracle entries (3) HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ALL_HOMES\ID0\"\Registry Backup". Here is what I did to clean (sort of) the registry. By the way, reinstalling Win2K was out of the question.
    I download Resplendence Registar 2.03 from http://www.resplendence.com. I made a binary backup of my registry using RR. Then I edit the backup with an hex editor (I use textpad from http://www.textpad.com). I search for the oracle entries (ORACLE in uppercase), found two. I replace them with ZZZZZZ. I saved the file and restored the registry with RR. Now, I have a ZZZZZZ unremovable entry, but it does not interfere with the Oracle Universal Installer. I was then able to reinstall Oracle 8.1.7 and Designer6i.
    Now, I have a new problem. I have two oracle home
    OEE with Oracle8i EE 8.1.7
    ORANT with Oracle Designer6i
    When I try to connect to my remote database Oracle8i EE 8.1.6 on Linux with SQL*Plus 8.1.7 everything is OK. But when I try to connect using SQL*Plus 8.0.6 that comes with Designer6i I get the error ORA-12571: TNS:packet writer failure. The config files tnsnames.ora and sqlnet.ora are the same on both oracle homes. If you have any clues, please let me known, I'm out of them.
    PS After 12 years working with Oracle products, this is my worst year. The product development it totally out of control. The products are huge, buggy, incomplete and incompatible. I hope we will survive this storm :o)

Maybe you are looking for