Oracle 9i (9.2.0.4) install on Redhat linux AS3.0

I download the oracle 9i (9.2.0.4)latest version from website , I only require patch p3006854_9204_linux.zip for the installation. But Unfortunitly, after finish database setup, It can not start Agent Configuration Assistant
error message:
"Agent service Failed"
Any one can give me suggestion to solve it ?
Thanks a lot!
[email protected]

Did you set your oracle home? Can you post your ENV parameters?

Similar Messages

  • Have anyone installed 1158 on linux AS3.0

    Have anyone installed 1158 on linux AS3.0

    when applied the i386-glibc-2.1-linux the logfile have some error message like :
    chmod: failed to get attributes of `/u02/oracle/proddb/8.1.7/bin/extproc': No such file or directory
    chmod: failed to get attributes of `/u02/oracle/proddb/8.1.7/bin/agtctl': No such file or directory
    chmod: failed to get attributes of `/u02/oracle/proddb/8.1.7/bin/hsalloci': No such file or directory
    chmod: failed to get attributes of `/u02/oracle/proddb/8.1.7/bin/hsots': No such file or directory
    chmod: failed to get attributes of `/u02/oracle/proddb/8.1.7/bin/hsdepxa': No such file or directory
    chmod: failed to get attributes of `/u02/oracle/proddb/8.1.7/bin/tnslsnr': No such file or directory
    chmod: failed to get attributes of `/u02/oracle/proddb/8.1.7/bin/lsnrctl': No such file or directory
    /bin/chmod: failed to get attributes of `ctxhxx': No such file or directory
    chmod: failed to get attributes of `/u02/oracle/proddb/8.1.7/ctx/bin/ctxhx': No such file or directory

  • Help on Installing Oracle 8i release 3(8.1.7) on RedHat Linux 7.2

    Hi,
    I am trying to install 8.1.7 on RedHat 7.2. I completed the preparatory steps. When I begin the installation with ./mnt/cdrom/runInstaller. I get the following message:
    Intializing Java Virtual Machine from ../stage/components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/bin/jre. Please wait.... and it stops. The installation guide doesn't mention anything about the jre. Ane no repsonse from metalink. Please help on how and where to find and if possible a detailed steps that needs to be taken. Help will be greatly appericiated.
    M

    Hi,
    This can be solved by adding following environment variable in
    .bash_profile
    LD_ASSUME_KERNEL=2.2.5
    export LD_ASSUME_KERNEL
    After adding , just relogin as oracle user and run the installation. It will proceed without any problem. (If u get any linker error u need run the patch glibc2.1.3stubs.tar.gz file from OTN downloads).
    Bye
    In case of any problem, mail me at [email protected]
    With Regards,
    P.L. Kannan

  • Problems and solutions for 9i DB R2 install on Redhat Linux AS 2.1

    Installing 9iDB R2 9.2.0.1.0 on Redhat Linux Advanced Server 2.1 (aka Redhat Enterprise Linux (AS))
    and applying patchset 2 (9.2.0.3.0)
    This is a certified platform but I hit many problems getting the install to work. Here are the problems I hit and how I solved them.
    Note: This is not intended to be a install for dummies but just an account of all my problems and how I overcame them. I spent 10 hours on this certified install (mostly looking for solutions to the problems I was having)
    I had a Intel Pentium 3 with 512 Meg RAM. (test machine)
    1. Install Redhat Linux
    2. Install Sun JDK 1.3.1 (this is not actually required for this install. I installed it as I was planning to install 9iAS after this)
    3. Install binutils-2.11.90.0.8-13 (also not required. I installed it for 9iAS)
    All other components were ok on my Redhat Linux install (i.e. kernel version, glibc)
    4. Create oracle user with dba group
    5. Create oracle home and oracle base directories. Ensure these are owned by oracle with rwx
    6. Set kernel parameters and make sure that they are initialized every startup:
    I managed to locate this script in the Redhat document called
    "Deploying Oracle9iTM on Red Hat Enterprise Linux AS"
    create a file called oracle.sh in /etc and give it execute permissions
    oracle.sh
    #!/bin/bash
    # configures kernel and system parameters for Oracle9i R2
    # File handles
    echo 65536 > /proc/sys/fs/file-max
    ulimit -n 65536
    # Shared memory
    # The default SHMMAX value is too low and likely to cause a failure during
    # database creation. SHMMAX should be equal to half of your system's physical
    # RAM.
    # The default is for 512 MB of RAM. Replace the default value as appropriate
    # for the amount of memory in your system, i.e.,
    # 512 MB : 268435456
    # 1 GB : 536870912
    # 2 GB : 1073741824
    # 4 GB : 2147483648
    echo 268435456 > /proc/sys/kernel/shmmax
    # It is generally safe to leave these next two values as they are
    echo 4096 > /proc/sys/kernel/shmmni
    echo 2097152 > /proc/sys/kernel/shmall
    # Semaphores
    echo 250 32000 100 128 > /proc/sys/kernel/sem
    # Sockets
    echo 1024 65000 > /proc/sys/net/ipv4/ip_local_port_range
    # Processes
    ulimit -u 16384
    ----EOF---------
    then...
    # chmod +x /etc/oracle.sh    # make executable
    # . /etc/oracle.sh # apply changes now
    edit /etc/rc.local to ensure this is run on startup
    append to /etc/rc.local
    # configure system for Oracle9i R2
    bash /etc/oracle.sh
    --------EOF--------------------
    7. create a generic oracle environment setup script for all users to run
    create the file /etc/profile.d/oracleenv.sh
    be sure to change the variables to your environment (ORACLE_BASE, ORACLE_HOME and ORACLE_SID)
    oracleenv.sh
    # Configures the user's environment for Oracle9i R2
    ORACLE_BASE=/opt/oracle
    ORACLE_HOME=$ORACLE_BASE/product/9.2.0.1.0
    ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
    ORACLE_SID=orcl
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
    PATH=$ORACLE_HOME/bin:$PATH
    export ORACLE_BASE ORACLE_HOME ORA_NLS33 ORACLE_SID LD_LIBRARY_PATH PATH
    ----EOF---------
    chmod 755 /etc/profile.d/oraclenv.sh
    This file will run when a user logs in.
    8. Install oracle DB
    This took me quite a few attempts.
    The first Install I did I received the error jre was not found. This issue seemed to be relating to the fact I was not installing on a Pentium 4. Oracle was looking for the jre in oracle.swd.jre/bin/i686 (and .../lib/i686) when some of the files were placed in i386 and java was looking in i386. This created a real mess. I had encountered a similar problem on a previous install on a different platform. I found articles of people that tried to just link the directories with symbolic links but this never worked. I tried my own version but also failed.
    The solution that worked for me was to de-install, remove all the oracle directories created by the install (this part I had always done) AND also delete the file /etc/oraInstl.loc. This makes the Installer truly believe this is the first time Oracle has been installed on this box. My jre problem disappeared after that. (I don't know why it just didn't work in the first place...)
    The next error I received was an ORA-03113 when creating the database (in the dbca). (It was actually at this point that I found the document from redhat as mentioned in my set 6 above) I also noticed that when running the install of the database, the default was for Oracle's SGA to use 70% of the available memory on my machine (I have 512M so that's 360M). Oracle instructed me to set shmmax to around 240M. This may be why the database creation failed as I thought the shmmax parameter needed to be larger that SGA. Anyway, I reduce the SGA to 50% and it worked.
    This error may also have been caused by the kernel parameters not being set properly after a reboot so if you implementing stop 6 above. You may never get this problem, hopefully.
    8. Install the universal Installer 2.2.0.18.0 (a prerequisite for installing the patchset 2)
    You will need this to install the patchset 2. You can get it from metalink by searching for the bug number in the patch area. Search for bug/patch number 2878462 in patches. (37Meg for linux intel)
    (Did you know that when oracle refer to a bug number, you should treat this as a patch number? General the bugs are not available for public viewing but oracle create a patch of the same number as a placeholder. So don't search for the bug in the site search or by doc id, go straight to the "patches" area and enter the bug number as a patch number, you'll have more success. - I only found that out today after struggling with metalink for the last 4 years)
    9. Install the patchset 2
    I downloaded patchset 2 (which will bring my DB version to 9.2.0.3.0) (220Meg). There is a special symbolic link command you'll need so make sure you remember to do this.
    i.e.
    $ cd $ORACLE_BASE/oui/bin/link
    $ ln -s libclntsh.so.9.0 libclntsh.so
    10. Migrate your database
    I could not get this to work. The docs says I need at least 150M shared_pool_size and 150M Java_pool_size before running the startup migrate. As I only have 512Meg RAM (and shmmax set to 230M) I did hold much hope that this would work. I started my DB without the migrate option just to see if it would actually open with 300M in my pools. It did, so I shut it down and restarted with the migrate option. After 5 minutes of heavy processing (I still have an empty database) my server appeared to hang. I decided to restart the machine and just re-create my DB with the new patchset already applied. I delete my $ORACLE_BASE/oradata/<sid> directory and remove the entry from /etc/oratab and re-created my DB. This worked fine :)
    I hope this document helps you for your install. Please drop me line if it does help and I'll endevour to write more documents like this one.
    Please drop me a quick line at [email protected] even just to say "thanks".
    I will include a few keywords here to help the searches find this document. (mainly the keywords I searched on and failed to find a doc like this one)
    ORA-03113 ORA-3113 03113 3113 jre was not found jre not found i686 i386 i586 9iDB R2 9.2.0.1.0 9.2.0.3.0 Redhat Advanced Server 2.1 AS Enterprise Linux (AS) RH install error installation errors oui dbca problem issue
    Good luck,
    Tim Daniell.

    The trick that worked for me was on a 2nd attempt. I installed once, let it fail with "jre was not found", de-install through the installer, delete all directories and files under $ORACLE_BASE (including $ORACLE_HOME), and also delete /etc/oraInst.loc.
    I don't know why it fixes itself with this. Oracle say this is an unresolved bug 2726268 that lies in the installer. This is still unresolved by Oracle (as at 02-June-03) therefore it is not a published bug/patch. If this doesn't work, I suggest you open an iTAR and see if Oracle has any more suggestions for you.
    Cheers,
    Tim.

  • Could not create Java VM to start 8.1.7 install on RedHat Linux 9

    I am trying to install 8i 8.1.7 on redhat linux 9. when I start the installer I get this error and nothing happens after it. I do have java installed on the pc. Whats the cause. I did the preinstall steps and am using the oracle account to start the installation. I got the install file from the oracle downloads site.
    [oracle@localhost Disk1]$ ./runInstaller
    Initializing Java Virtual Machine from ../stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/bin/jre. Please wait...
    [oracle@localhost Disk1]$ /usr/local/downloads/Oracle8iLinux/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/native_threads/libzip.so: symbol errno, version GLIBC_2.0 not defined in file libc.so.6 with link
    time reference (libzip.so)
    Unable to initialize threads: cannot find class java/lang/Thread
    Could not create Java VM

    I found a thread that said I needed to do
    export LD_ASSUME_KERNEL=2.4.1 which I did. Now the installation starts and I get
    [oracle@localhost Disk1]$ ./runInstaller
    Initializing Java Virtual Machine from ../stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/bin/jre. Please wait...
    and then get back to the $prompt after some time and the welcome screen never comes up.
    Whats wrong?

  • Installing on Redhat Linux 7.1?

    Hello.
    I know Redhat Linux 7.1 is not officially supported, but I want to know if it's possible to install the Sun ONE Application Server 7 on this OS.
    The reason I ask this is that the installer is giving me problems. It stops during installation with the message "installation stopped or aborted". The logs show a package conflict between some of the packages from the App Server installation (no other packages are mentioned). The portions of the App Server that were installed are then automatically uninstalled.
    I'm using default install directories.
    Since other posters here seem to have trouble with the installer and other versions of Redhat, perhaps my problems are not OS related at all...
    Any ideas would be appreciated.
    --Andr�s.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Nicholas Waltham ([email protected]):
    I am currently trying to install Oracle 8.05 onto Redhat Linux 7.1. I can get part of the way through
    the installation, however, when it is installing the rdbms portion. I stops with an error about a failure
    during relinking. Here is the part of make.log which details what really happened. Could someone tell
    me how to proceed.
    Thank you,
    Nicholas Waltham
    --------------[ rdbms.ins 2618 ]<HR></BLOCKQUOTE>
    Well ,I tried to install Oracle 8.0.5 in Debian Potato. At end I desist.
    Oracle 8.0.5 works with glibc 5 and Debian Potato with glibc6 .
    I guess this is your problem.
    There are patches for this but i don't get
    to make work.
    Sorry for my english.
    Cisar

  • Have anyone installed 1159 on linux AS3.0

    Hi All
    Have anyone ever experimented to install oracle 1159 on linux RedHat 3.0 successfully?
    Regards

    Thanks Chandra & others in this forum.
    I did install the 11.5.9 on RHEL 3.0
    after a struggle of 12 hours.
    I solved the issues, applied patches.
    It works very well.
    Here is another version of solution.
    The steps to create the issue,
    especially unable to instantiate & unable to create control file.
    I found some workaround too.
    When I tried to install 11.5.9 on Redhat Linux Ent. 30 & AS 21 & RH9,
    I find that read from config file does not work properly,
    that creates "unable to instantiate file"
    and "unable to create control file" issues.
    Steps to recreate the issue.
    start rapidwiz
    When giving applusr and oracle user,
    the default brings applEVAL, oraEVAL
    supposing your instance is EVAL (oracle_sid)
    change it to applmgr and oracle
    save the config file
    exit it ( do not run further )
    Next start the rapidwiz
    say read from config file
    It reads the /tmp/config.txt and backs-up to /tmp/config.txt.bac
    everything looks fine, but you will get
    "unable to instantiate file" and "unable to create control file" errors
    The reason is oracle changes some of the entries in
    /tmp/config.txt while reading it.
    half way through (you can find out at the end of the file)
    it changes applmgr into applEVAL and oracle into oraEVAL
    Hence, the user does not exists and unable to instantiate files.
    The work around is do not read from config file
    start from scratch, that is the oracle way!
    They are way behind Microsoft, no doubt.
    I just followed step by step instructions
    in this release notes for RHEL 3.0
    Oracle® Applications
    Installation Update Notes
    Release 11i for Linux x86 (11.5.9)
    Part No. B10849-02
    December 2003
    Good Luck.
    Jiltin

  • Need Advice on Oracle database 10.2.0.4.0 on RedHat Linux AS 4

    Hi,
    I would like to know whether Oracle Database 10.2.0.4.0 is certified to run on the RedHat Linux AS 4 (Nahant Update 6) with HugeMem Kernel?
    actually, we were running the Oracle 10g(10.2.0.4.0) database on RedHat Linux AS 4 (Nahant Update 6) with SMP kernel. We faced "out of memory" error so we are planning to change the kernel to HugeMem from SMP.
    Any suggestions on this would be highly appreciated!!!
    Thanks in advance!!!
    Siva

    If you were facing the out of memory errors, could you elaborate more on the circumstances these errors showed up? You could be facing the same situation after upgrading the OS if you don't properly diagnose the root cause.
    ~ Madrid
    http://hrivera99.blogspot.com

  • Oracle 817 does not want to install on RH Linux (ORA-03113)

    I am trying to install Oracle 817 on RH Linux with kernel
    2.4.17. I have modified various recommended parameters
    as described in the doc and recompiled the kernel.
    But each time I try to create a database, I would be getting this error:
    ORA-03113: end-of-file on communication channel
    Please help!! My system has 512 MB of ram and 1GB of swap.
    It is a Pentium III about 700 MHZ.
    thanks
    --Vincent

    After Forms 6i it is only possible to run the Forms web based. Inside the the Developer Suite you can find an OC4J which allows you to run the Forms locally on the Development PC.
    There are setting in the formsweb.cfg which allows you to do some configuration. For instance the look and feel which is by default the green color. The size of your window which makes your current window smaller than your Form.
    At your last question. Do you want the other user to make use of your Forms or make use of your database. If you want him to make use of your Forms, the other user could call the locally installed OC4J with the http-address. If you want the user to make use of the database, the other pc should have a installed client software or make use a tool like SQL Developer to connect over JDBC.

  • Oracle 9.2.0.1.0 installed under Redhat 7.3

    Finally beat my way through the entire process.
    Used command line to start the installer, OMS repository creation and OEM
    start.
    Recommend 9.2.0.1.0 Enterprise
    Recommend www.puschitz.com/oracleonlinux.shtml
    Recommend linuxquestions.org
    I downloaded the 3 big files at work and burned CDs.
    At home, I copied the files to the hard drive and followed the instructions
    on the download page.
    I don't believe that the database created during install was really created.
    I used dbca to create a new database.
    Next I must enable auto startup and shutdown.
    Anybody know where the make files for the OCI demos are.
    I found these easily under Solaris.
    [email protected] in Houston
    There is confusion about the name of the init.ora file

    locate demo_rdbms.mk you oaf!
    anybody need my OCI C++ class to insert/select an array of structures(objects)
    with a single OCIStntExecute()
    can send package with test program and make file
    request [email protected]

  • 11.5.9 install on redhat linux 7.3

    we are trying to install oracle applications 11.5.9 on linux using rapid install...when rapid install checks for all the necessary things it fails at file system check and we get following message
    there are 2 errors
    1.
    Error - Unable to create directory with proper privileges:
    Database Install Log Directory
    Mount Point = /d02/oracle/proddb/9.2.0/appsutil/log/PROD_
    if i go to $prompt and do ls i can see this directory
    $ls /d02/oracle/proddb/9.2.0/appsutil/log/
    PROD_
    2.
    Error - Unable to create directory with proper privileges:
    APPL_TOP admin Install Log Directory
    Mount Point = /d01/oracle/prodappl/admin/PROD_ /log
    here i dont understand why there is a space after PROD_
    and there is no log directory created
    **any/all help is appreciated as our client want this to be done ASAP**
    thank you!
    File System Check :
    Database ORACLE_HOME Created Successfully
    Mount Point = /d02/oracle/proddb/9.2.0
    Database ORACLE_HOME admin folder Created Successfully
    Mount Point = /d02/oracle/proddb/9.2.0/appsutil
    Database ORACLE_HOME temp folder Created Successfully
    Mount Point = /d02/oracle/proddb/9.2.0/appsutil/temp
    Error - Unable to create directory with proper privileges:
    Database Install Log Directory
    Mount Point = /d02/oracle/proddb/9.2.0/appsutil/log/PROD_
    Database System File Directory Created Successfully
    Mount Point = /d03/oracle/proddata
    Database Log File Directory Created Successfully
    Mount Point = /d04/oracle/proddata
    Database Data File Directory Created Successfully
    Mount Point = /d05/oracle/proddata
    Database Index File Directory has write privileges:
    Mount Point = /d05/oracle/proddata
    APPL_TOP Created Successfully
    Mount Point = /d01/oracle/prodappl
    APPL_TOP admin Created Successfully
    Mount Point = /d01/oracle/prodappl/admin
    APPL_TOP mount 2 has write privileges:
    Mount Point = /d01/oracle/prodappl
    APPL_TOP mount 3 has write privileges:
    Mount Point = /d01/oracle/prodappl
    APPL_TOP mount 4 has write privileges:
    Mount Point = /d01/oracle/prodappl
    COMMON_TOP Created Successfully
    Mount Point = /d01/oracle/prodcomn
    Apps ORACLE_HOME Created Successfully
    Mount Point = /d01/oracle/prodora/8.0.6
    Tools ORACLE_HOME Created Successfully
    Mount Point = /d01/oracle/prodora/iAS
    JAVA_TOP Created Successfully
    Mount Point = /d01/oracle/prodcomn/java
    PORTAL_TOP Created Successfully
    Mount Point = /d01/oracle/prodcomn/portal
    JRE_TOP Created Successfully
    Mount Point = /d01/oracle/prodcomn/util/jre/1.1.8
    Temp Directory Created Successfully
    Mount Point = /d01/oracle/prodcomn/temp
    Error - Unable to create directory with proper privileges:
    APPL_TOP admin Install Log Directory
    Mount Point = /d01/oracle/prodappl/admin/PROD_ /log
    Enjoy,
    Prakash S. Ranade
    Database Administrator
    OCP DBA - 8i, 9i
    "Because you can doesn't mean you should"

    Hi
    I've installed, but have problem with Forms.

  • Forms Server Install on Redhat Linux 7.0

    I am attempting to install Forms6i/Reports6i/Graphics6i on my Linux Box.
    I already have a 8.1.6 Database configured and running.
    After downloading the tar file and extracting it I am having trouble with the installation of the software. The Guide refers to running the orainstal shell script in the orinstall directory. Well when I execute the script I get a Character Installer and I was expecting the Java based Gui Installer such as the one with Oracle 8i DB. I cannot get the oraviewer program to work either for I wanted to see if there were some other setting I am not executing correctly.
    When I continue with the Char Installer it has trouble finding a lib called X11m.a or something (Motif related).
    Does Forms 6i require Motif? If so where and how do I get it for my Linux box? Are there any work arounds for this.
    Any help is greatly apprecicated.
    Thanks

    Hello Shawn,
    Yes, you need motif libraries. You can obtain it for free from: http://www.metrolink.com/products/Motif/download.html
    I installed both runtime and development packages.
    Aditionally you may ned to have X-devel packages installed.
    After struggling with Forms installation on my linux machine I managed to do this, but let me tell you that it's not so simple. First of all please excuse my bad English, I'm not a native speaker. Anyway that's how I did it.
    I assume that you downloaded the file d2k6irelease2.tar from technet. This file includes Forms 6i rel. 2 Server and Developer.
    I managed to install this on my RedHat 7.1 machine having already installed Oracle 8.1.7 database Server.
    First of I created a separate user which owns Forms Server software. I set this user as belonging to the same group ("dba" in my case) as the oracle database software owner. (On my machine I have "oracle" user which owns databse server belonging to the "dba" group and "forms" user belonging also to the "dba" group). You must set your environment like this (in ".bash-profile" in my case):
    -- Begin .bash_profile file
    # .bash_profile
    # Get the aliases and functions
    if [ -f ~/.bashrc ]; then
    . ~/.bashrc
    fi
    # User specific environment and startup programs
    unset LANG
    PATH=$PATH:$HOME/bin
    BASH_ENV=$HOME/.bashrc
    ORACLE_BASE=/oracle
    ORACLE_HOME=$ORACLE_BASE/product/forms
    ORACLE_SID=forms
    ORACLE_AUTOREG=$ORACLE_HOME/guicommon/tk60/admin
    TNS_ADMIN=$ORACLE_HOME/network/admin/tnsnames.ora
    ORACLE_TERM=vt220
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
    TWO_TASK=oratest
    MMTK_AVIPLAYER="xanim %s &"
    PATH=$PATH:$ORACLE_HOME/bin
    DISPLAY=TEST_MACHINE:0.0
    export ORACLE_BASE ORACLE_HOME LD_LIBRARY_PATH TWO_TASK MMTK_AVIPLAYER
    export TNS_ADMIN DISPLAY ORACLE_AUTOREG ORACLE_TERM ORACLE_SID
    export BASH_ENV PATH
    unset USERNAME
    -- End .bash_profile file
    As you can see I set up ORACLE_BASE to the same ORACLE_BASE as database software ORACLE_BASE, a new ORACLE_HOME, a dummy ORACLE_SID, TWO_TASK to the sid of your 8.1.6 server instance, TNS_ADMIN pointing to a directory which I created manually before starting the installer (see below my "tnsnames.ora" file under this manually created directory), ORACLE_AUTOREG, ORACLE_TERM, DISPLAY set to your_hostname:0.0, LD_LIBRARY_PATH as seen, MMTK_AVIPLAYER is for playing ".avi' files (I didn't tried this). You may need to "chmod 775" on your $ORACLE_HOME directory from the database user account.
    -- Begin "tnsnames.ora" file
    ORATEST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = TEST_MACHINE)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = oratest)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    -- End "tnsnames.ora" file
    I untared d2k6irelease2.tar under a subdirectory created under "forms" home directory. In "unixdoc/Server" directory you will find linux_svr.pdf instructions for installation of Forms server and under "unixdoc/Developer" you will find linux_dev.pdf instructions for Developer Server. "oraview" didn't worked for me either. GUI installer didn't worked for me either. Chnaging to orainst you may issue ./orainst command and start the installation in character mode (I did not even started an X session). I choosed default install, do not create database objects (I think you will be able to install later this objects by running some sql scripts, I didn't). And I choosed all components presented and all options and default port parameters. You will also be prompted to confirm locations of the motif libraries. I choosed http mode for forms server. Do not install Reports security feature (I've heard that it's not working, this option will be presented to you somewhere at the end of installation). After finishing you may need to edit "forms60_server" file and some other files. For example I had to change my "host_name.domain_name" (in my case was "TEST_MACHINE.(none)") to my IP address as I don't have a DNS server here.
    That's what I did to test forms server:
    I wanted to test my Forms server by running Apache web server (the one that is installed by default by linux). (in the documetation you will find references to the WebDB listener which as far as I know is no longer installed in release 2, so the documentation is obsolete regarding this module). For this you will have to edit /etc/httpd/conf/httpd.conf file. Look for the section "Alias" and "AliasScript". under your forms $ORACLE_HOME/orainst you will find two files "forms6iconfig.txt" and "reports6iconfig.txt". You will find there actions to be performed by you manually. in "forms6iconfig.txt" file you will find virtual mappings for physical directories. You have to put this entries in "httpd.conf" file. You must edit this file as "root". For example 'Alias /dev60temp/ "/oracle/product/forms/tools/web60/temp/"'. The exception I made was for "/dev60cgi" virtaul mapping which I've put under ScriptAlias section 'ScriptAlias /dev60cgi/ "/oracle/product/forms/tools/web60/cgi/"'.
    After succesfully editing the file you will ned to restart http server:
    #/etc/rc.d/init.d/httpd restart
    Login again as "forms" user.
    In $ORACLE_HOME directory isuue:
    $./forms60_server start
    This will start your forms server listener.
    After that you can test your forms server running from an external machine by entering: http://ip_addres_of_linux_machine/dev60html/runform.htm
    and after completing parameters you will see "text.fmx" form applet saying that Forms server is installed corectlly or directly: http://ip_addres_of_linux_machine/dev60cgi/f60cgi
    You have to install Jinitiator to view the applet. It will be prompted for you to download it when accessing the above address.
    To be honest I was disapointed to see that forms server is very slow. And I mean very slow.
    In the end please let me excuse if I wasn't clear in some points. If you have any questions please post them on the list. I'm not an expert and I may have made mistakes, but in the same time I hope this will help you setting up forms server on your linux box.
    I forgot to mention that you will probably see a message saying that "formsweb.cfg was not found" when accesing "http://..../f60cgi". If you see this you have to options: either make a symlink "forms60" in the root directory to $ORACLE_HOME/forms60 directory or add a line in your "httpd.conf" file (I put this lines the last ones):
    #Include 6iserver configuration file for setting formsweb.cfg path
    include "/developer_home/conf/6iserver.conf"
    And in $ORACLE_HOME create a directory named "conf". In this directory create a file named "6iserver.conf" and put the following line in it:
    SetEnv FORMS60_WEB_CONFIG_FILE /developer_home/forms60/server/formsweb.cfg
    This will set your environment correctly and you will be able to see the test form. Don't forget to restart apache web server and forms listener.
    Kindly,
    Codrut Octavian Popescu

  • SAP Oracle database 11.2 migrating from Solaris  to RedHat Linux (x86_64)

    What is SAP guidance on database migration ? What is the best approach ?
    I heard person who does migration has to be certified by SAP.

    Jun He wrote:
    Thank you for prompt response. When you say "heterogenous system copy" does not support it, do you mean SAP does not support the converted system or just the process itself ? 
    >
    > Actually I am discussing with SAP about generating a system copy to send over to SAP and they said that Data Pump is an option they can accept.  If Datapump is accepted by SAP internally, I would think after migration SAP should support datapump-migrated system.
    Hi Jun,
    I didn't said that SAP will not support your system, after the migration by Oracle data pump. I noted that OS/DB migration is performed by heterogenous system copy with the migration key.
    Under this circumstance, if they accept to support you during the migration process with data pump, there's no problem. As I noted that previously, technically it is possible to migrate the system by using data pump, but I didn't requested that kind of support to SAP. I've been surprized to hear that they will support migration with Oracle data pump method. This is my own assestment.
    Will they support you, if you face with a problem during the migration with data pump? Or some other problems you may be face after you go to productive, because of this migration?
    >> When you say "heterogenous system copy" does not support it, do you mean SAP does not support the converted system or just the process itself ? 
    I mean that SAP does not support just process itself and the problem you face because of this migration.
    Best regards,
    Orkun Gedik
    Edited by: Orkun Gedik on Jun 29, 2011 11:11 PM

  • Successful installation of 8iEE 8.1.7 on RedHat linux 7.2 but no luck with Oracle 9i

    Hi All,
    I've successfully installed Oracle8i EE version 8.1.7 on RedHat
    Linux 7.2. However, I have NOT had much luck installing Oracle
    9i version 9.0.1 on RedHat Linux 7.2. I am wondering if anyone
    in this forum has any luck installing Oracle 9i on RedHat Linux
    7.2. I am running Linux kernel 2.4.7-10.
    Now I am not trying to start a shouting match here; however, it
    seems to me that a person with any common sense would not run
    Oracle database on a Windows platform. Instead of running it
    on Windows platform, one would be much better off running it on
    Linux platform. I am currently Oracle EE 8.1.7 on an dual-Intel
    processor 266MHZ with 512MB of RAM with Linux as the Operating
    System. I have to say that the performance of the box is really
    solid. At the same time, I am also running Oracle EE 8.1.7 on
    an identical hardware system with Win2K server and I have to say
    that the performance system is really pitiful on this Win2k server.
    The windows box can only 1 instance at a time. If I try to have
    two instances running at the same time, the windows box just comes
    to a screeching halt. In contrast, the Linux box really rocks. In
    a testing environment, I have 3 instances running at the same time
    and the linux is barely breaking a sweat. I am getting maximum
    performance out of the linux box because I recompile the linux kernel
    to optimize the box to run Oracle database.
    Having said that, as an Oracle DBA newbie (with less than six months
    of Oracle DBA experience, the last ten years as a Cisco/Unix Engineer),
    I find it fascinating that Oracle is only certified to run on SUSE (may
    be I am wrong and someone can correct me on this one) when RedHat is
    probably the dominant Linux distro. It took three days to get Oracle 8i
    version 8.1.7 to install on RedHat Linux 7.2. Why Oracle is slowed to
    support Linux RedHat is something I just don't understand.
    OK, enough of venting my frustration, if anyone has successfully installed
    Oracle 9i EE version 9.0.1 on RedHat Linux 7.2, please share your knowledge.
    In the mean time, if anyone interested in obtaining instructions on howto
    install Oracle 8i version 8.1.7 on Redhat Linux 7.1/7.2, send me an email
    at [email protected] and I will send the instructions. The instructions
    are written specifically for "windows dummies" so it is very to read and
    follow. If you have been Unix for a long time, there will be instructions
    in there that are so easy some of you may ask why put those in there in the
    first place. My response would be: "windows dummies".
    Regards,
    Michael (david)

    I very much agree with you Oracle is working very much better on Unix/Linux than Windows BUT in many cases you are obliged to use windows ( in Case that My company high managment enforce it ) , I have installed 9i on Windows and Linux , I am herunder including the full details :
    ========================================================================
    Installing Oracle 9i on Linux
         Linux : Redhat 7.2
         Oracle : 9i Server EE 9.0.1.0.0
         RAM Used : 256 M Ram
         Hard Disk : IDE RAID
         Linux Kernel : 2.4.4-10
         JDK : Blackdown jdk118_v3 => downloaded from www.blackdown.org
         All shell here is the Bash shell ( Bourne again shell )
    1.     To run a shell script over Linux , just drag the shell file from the file manager and drop it to a shell window
         Be sure to have swap space of 400 M or more
         If the systems stop responding for some time , leave it , it will continue
         Be sure to make a stage area for the CDs # 2 , 3 only because you will start from the CD 1 but after going in the installation the CDROM freezes and refuses to open door to replace CD ,, in this case you will switch to the last 2 CDs from the stage area
         Make sure you have the following executables at /usr/bin : MAKE , AR , LD , NM , C for Unix that is installed during Linux installation from the distribution media
    Steps ( Root User ) :
    1.     be sure to have to have your server domain is like hostess.com.eg and you can be able to ping it
    &#61607;     open /etc/hosts
    &#61607;     add a line as follows ( for instance ) :
    &#61607;     192.168.0.11 hostess.com.eg hostess
    &#61607;     ping hostess.com.eg
    &#61607;     ping hostess
    &#61607;     ping 192.168.0.11
    &#61607;     be sure to have a replay for all of them
    2.     install JDK inside the /usr/local directory => after downloading the JDK you can easily decompress it but just clicking at it using the GUI
    3.     get to the / prompt
    4.     type ln s /usr/local/jdk118_v3 /usr/local/java
    5.     download binutil RBM from Redhat for version 7 of Linux to downgrade binutils for Linux 7.2 or you will encounter an error at the third CD set
    6.     download it from : ftp://ftp.redhat.com/pub/redhat/linux/7.0/en/os/i386/redhat/rpms/binutils-2.10.0.18-1.i386.rpm
    7.     run it as follows : rpm -Uvh force nodeps binutils-2.10.0.18-1.i386.rpm
    8.     change to /proc/sys/kernel
    9.     type cat sem
    10.     you will get : 250 32000 32 128
    &#61607;     250 => SEMMSL
    &#61607;     32000 => SEMMNS
    &#61607;     32 => SEMOPM
    &#61607;     128 => SEMMNI
    11.     you need to have the SEMOPM to be 128 , to do so , locate the file called sem open it replace the value of 32 with 128
    12.     type again cat sem to be sure of taking the required effect
    13.     after the installation ends just re-install the 7.2 utils again as follows :
    14.     rpm -Uvh force nodeps binutils-2.11.90.0.8-9.i386.rpm
    15.     you can find the last RPM at the 7.2 CD set
    16.     after downloading the Oracle files from the net you need to decompress it as follows (one step) :
    &#61607;     zcat linux9i_disk1.cpio.gz | cpio idmv
    &#61607;     zcat linux9i_disk2.cpio.gz | cpio idmv
    &#61607;     zcat linux9i_disk3.cpio.gz | cpio idmv
    17.     you can decompress them at 2 steps as follows :
    &#61607;     gunzip linux9i_disk1.cpio.gz
    &#61607;     gunzip linux9i_disk2.cpio.gz
    &#61607;     gunzip linux9i_disk3.cpio.gz
    &#61607;     cpio idmv < linux9i_disk1.cpio
    &#61607;     cpio idmv < linux9i_disk2.cpio
    &#61607;     cpio idmv < linux9i_disk3.cpio
    18.     Now you have 3 directories , have care when Burning them to CD because you need to take care of paths
    19.     if you have downloaded the files via a Windows machine and have a MKS installed over it you can easily invoke Visual Pax and decompress the files at one go using the GUI program
    20.     log on to Linux as Root and run commands in the file commands.txt
    21.     log on as user Oracle to be sure that its created
    22.     log on as root again
    23.     get to the directory of /home/oracle
    24.     enable showing the system files
    25.     open the file of .bash_profile
    26.     add the accompanied bash file contents at the end of it to set the environment variables
    27.     log on as user Oracle
    28.     open shell and type set and be sure that environment variables are set correctly
    29.     open shell and change to the cdrom by typing cd /mnt/cdrom => Linux 7.2 is an auto mounting OS so you at no need to mount the CD drive prior to using it and if you need to mount it just type : AS ROOT
    &#61607;     mount t iso9660 /mnt/cdrom /cdrom
    &#61607;     this is surly after creating a directory at / called cdrom
    30.     Start the installer ( as Oracle User ) by typing ./runinstaller
    31.     the installer will ask you to run a started script as root , you may open a shell and type su then open Nautilus ( if using Gnome or File manager as super user if using KDE ) and drag the noted file to the shell screen and press enter ,, after it is ended continue with the installer
    32.     if asked to supply JDK home directory then it is /usr/local/java
    33.     Unix group Name ( to update Oracle software ) : oinstall
    34.     Oracle home is : /oracle/9.0.1
    35.     base directory : /oracle/orainventory
    Hisham Nagia
    IT Manager / OCP DBA
    Hostess Egypt / EFG-Hermes - CIIC

  • Installing 9iAS Java Edition 9.0.3 on RedHat Linux 8.0, 7.2

    Hi,
    Iam trying to install oracle 9iAS Java Edition 9.0.3 on RedHat Linux 8.0 and 7.2. But i have common problems during installation.
    I get the following error while installing -
    Error in invoking target install of makefile
    /home/oracle/servers/9ias/sqlplus/lib/ins_sqlpluslib.mk
    Error in invoking target install of makefile
    /home/oracle/servers/9ias/network/lib/ins_oemagent.mk
    Similarly i get one more error. I dont remember the actual file name.
    Once i ignore all these errors then the OC4J instance configuration assistant and OPMN assistant do not start. They have some deployment problems during installation.
    After the installation is complete with certain problems, i try to start all the services of DCM, using dcmctl start command
    /home/oracle/servers/9ias/dcm>dcmctl start.
    The other services start except the HTTP server. I get the error ADMN-906025
    Iam not able to start the Oracle Enterprise Manager (OEM)
    also...
    Kindly give me the exact steps to overcome this problem or a link to some documentation...please
    Its very urgent...
    regards,
    Sachin Bafna

    Repost:

Maybe you are looking for

  • Safari, Mail, Dashboard quit unexpectedly

    Everytime I try to open Safari, Mail or my Dashboard I get the message "The application (Mail or Safari or Dashboard) quit unexpectedly. I've tried dragging the Library/Preference folder to the desktop and it doesn't work, I've tried dragging differe

  • HP Printer Driver not currently available from Software Update server

    I have an iMac (early 2009) and an HP OfficeJet 6100 Series printer.  I just upgraded my Apple Extreme Base Station and when I try to add the printer again thru the new Base Station the iMac says the software is available from the Apple Server but af

  • HP Laserjet 2420 sees jammed papers, but they are not.

    I have a HP Laserjet 2420 printer, I use it with a LAN for work reasons. All the computers using this printer are Apple computer with different version of MacOS X (from 10.3 to 10.6). The printer started stopping randomly and quite often as like as s

  • Connecting fios to netgear

    Im staying with my family and I would like to connect my computer using my netgear wna 1100 to the internet and they have verizon fios actiontec ,I tried doing this but it says theres no or limited connectivity due to no network address? Does anyone

  • Loud fan and beep sound

    Computer left on overnight when turned on has a loud fan that keeps getting louder and a long single beep every few seconds that gets gradually louder also