Installing Oracle App Express 2

Hi all,
I followed the procedure steps as shown in the following link: http://www.oracle.com/technology/obe/10gr2_db_single/install/htmldbinst/htmldbinst_otn.htm#t4
to install Oracle Applicaton Express.
Till I reached to the following step:
@htmldbins oracle SYSAUX SYSAUX TEMP /i/ orcl
The above statement is dependent on your configuration
@htmldbins <password> <tablespace_htmldb> <tablespace_files> <tablespace_temp>
<images> <connect>
My question is about the <images> parameter. The example used /i/ as a value for that parameter. Is this the path of the images folder? If not, what is it then?
Any clarification will be highly appreciated.
Thanks in advance.

Hello,
The /i/ notation is an alias pointing to the future (at this point) of your images directory. In the installation string, you should use it as is - /i/. Latter on, in the post installation tasks, you'll be asked to copy the images directory – from the installation directory – to the proper location on your server, and then use this location to define the alias, as part of the mrvel.conf or dads.conf configuration.
Regards,
Arie.

Similar Messages

  • Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto

    h2. Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto
    Version: B
    Author: Dude, 24. May 2011
    The following are step by step instructions how to install Oracle 11gR2 Express Edition (Beta) under Linux Ubuntu 11.04, 64-bit.
    Access to the Internet is required.
    The instructions cover the following additional topics:
    - Converting Red Hat based Oracle XE installer to Ubuntu.
    - Work-around for missing /sbin/chkconfig tool.
    - Install Oracle XE into a different directory or disk volume.
    - Relocate and configure the Oracle user and default login directory.
    - Uninstall, reconfigure and perform first database backup.
    - Notes and web links.
    - Troubleshooting
    h3. A) System Setup and Prerequisites
    h4. A.1. System Access
    You will need terminal command line, root and system console access to perform the setup tasks.
    To open a Terminal at the system console:
    Menu Applications > Accessories > TerminalThe following commands will enable remote ssh login with root access:
    sudo apt-get install openssh-server
    sudo passwd root
    Verify:
    ssh root@xe_server_host_nameh4. A.2. Software Prerequisites
    The following is required in order to install Oracle 11gR2 XE:
    sudo apt-get install alien libaio1 unixodbcThe following is not required, but it will fix backspace and arrow keys in case you prefer using the vi-editor:
    sudo apt-get install vimh4. A.3. System Swap space
    Minimum swap space required is 2 GB. You can increase swap space if necessary using a swap file:
    To analyze current swap space and memory configuration:
    sudo cat /proc/meminfo
    To install a 1 GB swapfile named swapfile in /, for example:
    sudo dd if=/dev/zero of=/swapfile bs=1024 count=1048576
    (this may take a while)
    sudo mkswap /swapfile
    sudo swapon /swapfile
    sudo cp /etc/fstab /etc/fstab.orig
    sudo echo '/swapfile swap swap defaults 0 0' >> /etc/fstab
    Verify:
    sudo swapon -a
    sudo swapon -sh4. A.4. Kernel Parameters
    Oracle 11g XE requires the following additional kernel parameters:
    sudo nano /etc/sysctl.d/60-oracle.conf
    (Enter the following)
    # Oracle 11g XE kernel parameters
    fs.file-max=6815744
    net.ipv4.ip_local_port_range=9000 65000
    kernel.sem=250 32000 100 128
    kernel.shmmax=536870912
    (Save the file)
    Note: kernel.shmmax = max possible value, e.g. size of physical RAM.
    Verify: sudo cat /etc/sysctl.d/60-oracle.conf
    Load new kernel parameters:
    sudo service procps start
    Verify:
    sudo sysctl -q fs.file-max
    -> fs.file-max = 6815744h4. A.5. Oracle Installation Directory
    The current Oracle Installation Guide uses the same directory like in previous versions: /usr/lib/oracle/xe/app/oracle/product/11.2.0/server. However, the current Beta installation uses Oracle Flexible Architecture (OFA) and installs into /u01/app/oracle/product/11.2.0/xe. Due to size limitations of Oracle XE it may not be necessary to store the installation to a specific directory or separate volume, but it is possible:
    Install Oracle XE to separate disk volume:
    From the system console menu: System > Administration > Disk Utility
    Select "ext3" filesystem for Oracle compatibility and specify a Volume label, e.g. Oracle.
    Notice the device name e.g. /dev/sdb
    Get the drive UUID:
    sudo blkid
    e.g. /dev/sdb: UUID="d19a2d8f-da43-4802-8bdb-0703c855e23a"
    Modify /etc/fstab to automatically mount the volume at system startup:
    sudo cp /etc/fstab /etc/fstab.original
    sudo nano /etc/fstab
    (Add the following, using determined UUID, for exmple)
    UUID=d19a2d8f-da43-4802-8bdb-0703c855e23a /u01 ext3 defaults,errors=remount-ro 0 1
    (Save the file)
    Create the mount-point, mount the new volume and set ownership and privileges:
    sudo mkdir /u01
    sudo mount -a
    sudo chown root:root /u01
    sudo chmod 755 /u01
    Verify:
    df -h
    or restart the systemYou can also install Oracle XE into a specific directory:
    Create a symbolic link to store the installation into an existing directory, for instance:
    sudo mkdir /home/oracle-xe
    sudo ln -s /home/oracle-xe /u01h3. C) Oracle 11g XE Download and Installation
    h4. C.1. Download and convert the Installer from Red Hat to Ubuntu
    Please see section E.3. to download the Oracle 11gR2 XE installer.
    Select the version listed for Linux x64.
    sudo unzip linux.x64_11gR2_OracleXE.zip
    sudo alien --to-deb --scripts oracle-xe-11.2.0-0.5.x86_64.rpm
    (This may take a while)h4. C.2. Create a special chkconfig script
    The Red Hat based installer of Oracle XE 11gR2 beta relies on +/sbin/chkconfig+, which is not used in Ubuntu. The chkconfig package available for the current version of Ubuntu produces errors and my not be safe to use. Below is a simple trick to get around the problem and install Oracle XE successfully:
    Create /sbin/chconfig:
    sudo nano /sbin/chkconfig
    (Cut and paste the following)
    #!/bin/bash
    # Oracle 11gR2 XE installer chkconfig hack for Debian by Dude
    file=/etc/init.d/oracle-xe
    if [[ ! `tail -n1 $file | grep INIT` ]]; then
       echo >> $file
       echo '### BEGIN INIT INFO' >> $file
       echo '# Provides:             OracleXE' >> $file
       echo '# Required-Start:       $remote_fs $syslog' >> $file
       echo '# Required-Stop:        $remote_fs $syslog' >> $file
       echo '# Default-Start:        2 3 4 5' >> $file
       echo '# Default-Stop:         0 1 6' >> $file
       echo '# Short-Description:    Oracle 11g Express Edition' >> $file
       echo '### END INIT INFO' >> $file
    fi
    update-rc.d oracle-xe defaults 80 01
    (Save the file)
    Set appropriate execute privileges:
    chmod 755 /sbin/chkconfig
    Note: You should remove the /sbin/chkconfig file after successful installation of Oracle XE.
    h4. C.3. Install and configure Oracle XE
    sudo dpkg --install ./oracle-xe_11.2.0-1.5_amd64.deb
    /etc/init.d/oracle-xe configure
    (This will take a while)
    Remove the /sbin/chkconfig script, which is no longer needed.
    sudo rm /sbin/chkconfigh4. C.4. Relocate and Configure the Oracle user login
    The Oracle XE installer specifies /u01/app/oracle as the login directory for the Oracle user. Although not really necessary, the following will relocate the Oracle user $HOME to a standard location and create standard /etc/skel login files:
    Exit all Oracle user sessions:
    sudo /etc/init.d/oracle-xe stop
    sudo kill -9 `ps -ef | grep oracle | grep -v grep | awk '{print $2}'`
    sudo userdel oracle
    sudo useradd -s /bin/bash -G dba -g dba -m oracle
    sudo passwd oracle
    Verify:
    sudo id oracle
    -> uid=1001(oracle) gid=1001(dba) groups=1001(dba)h4. C.5. Setup Oracle environment variables
    In order to use sqlplus and other tools, the Oracle account requires certain environment variables. The following will set these variables automatically at every interactive Oracle login:
    sudo echo '. /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh' >> /home/oracle/.bashrch4. C.6. Oracle sudo root access
    It is not essential to allow the Oracle user to use sudo, but it is convenient:
    usermod -G admin oracle
    Verify:
    id oracle
    -> uid=1001(oracle) gid=1001(dba) groups=1001(dba),120(admin)
    sudo su -
    -> Enter Oracle account passwordh4. C.7. Oracle 11g XE Post-installation
    After you install Oracle Database XE, its graphical user interface is only available from the local server, but not remotely.
    The following will correct the problem if necessary:
    Login as user Oracle or use:
    su - oracle
    sqlplus / as sysdba
    At the SQL prompt, enter the following command:
    EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE);
    exith3. D) Unintstall, Reconfigure and Troubleshooting
    h4. D.1. Uninstall Oracle 11g XE
    The following will completely uninstall and remove Oracle 11g XE:
    Login as user root:
    sudo su -
    /etc/init.d/oracle-xe stop
    dpkg --purge oracle-xe
    rm -r /u01/app
    rm /etc/default/oracle-xe
    update-rc.d -f oracle-xe removeh4. D.2. Reconfigure Oracle 11g XE
    Type the following in a terminal window:
    /etc/init.d/oracle-xe stop
    sudo rm /etc/default/oracle-xe
    /etc/init.d/oracle-xe configureh4. D.3. Enable Archivelog mode and perform a database backup
    Login as user Oracle:
    su - oracle
    sqlplus / as sysdba
    At the SQL prompt, enter the following commands:
    shutdown immediate
    startup mount
    alter database archivelog;
    alter database open;
    exit
    Login to system console of the Oracle user account:
    Select Applications > Oracle Database 11g Express Edition > Backup Databaseh3. E) Notes
    h4. E.1. Oracle 11g XE limitiations overview
    - It will consume, at most, processing resources equivalent to one CPU.
    - Only one installation of Oracle Database XE can be performed on a single computer.
    - The maximum amount of user data in an Oracle Database XE database cannot exceed 11 GB.
    - The maximum amount of RAM that Oracle XE uses cannot exceed 1 GB, even if more is available.
    - HTTPS is not supported natively with the HTTP listener built into Oracle Database XE.
    h4. E.2. Documentation and Links
    Official documentation for Oracle 11gR2 XE can be found at:
    http://www.oracle.com/pls/xe112/homepage
    h4. E.3. Oracle 11g XE downloads
    The Installer is available from the Oracle Technology Network at:
    http://www.oracle.com/technology/products/database/xe
    http://www.oracle.com/technetwork/database/express-edition/downloads/index.html
    h4. E.4 APEX links and archives
    The APEX archives can be found at:
    http://www.oracle.com/technetwork/developer-tools/apex/application-express/all-archives-099381.html
    The APEX download site is:
    http://www.oracle.com/technetwork/developer-tools/apex/downloads/index.html
    h3. F) Troubleshooting
    ... in progress
    Regards and best of luck!
    Edited by: Dude on May 25, Version B: various corrections. chkconfig package (A.2.) not required.

    even though I am admin user.Admin user is a MS Windows term, that does not apply to Linux or Unix in the same fashion.
    The configuration script tells you "You must be root user to run the configure script. Login as root user and
    then run the configure script."
    This is most likely correct because your account is not root and does not have UID 0. What you can do is to login as root e.g. sudo su -, as the message suggest, or use "sudo /etc/init.d/oracle-xe configure", provided your account is defined in the /etc/sudoers file to perform root/admin actions.
    Btw, do not modify /etc/passwd and /etc/group to give you admin privileges or try to create a another root account under a different name. That's not the way it works and usually leads to nasty problems.

  • Installing Oracle Database Express Edition 11g on UBUNTU

    Hello everyone,
    I want to install Oracle Database Express Edition 11g on UBUNTU. I followed the steps from this link created by Dude:
    https://forums.oracle.com/thread/2303639?start=0&tstart=0
    My problem becomes when I type in from the terminal:
    sudo /etc/init.d/oracle-xe configure
    I followed the instructions there, agreeing t HTTP port 8080, port database listener 1521,  specifying a password for my database account, and wanting Oracle Express to be started on boot. This is what I'm getting:
    Starting Oracle Net Listener...touch: cannot touch `/var/lock/subsys/listener': No such file or directory
    Done
    Configuring database...
    Database Configuration failed.  Look into /u01/app/oracle/product/11.2.0/xe/config/log for details
    I have no idea what this means, so I went into the log's location and I found 4 of them, so I clicked on each of them, and this is what I'm getting:
    1. cloneDBCreation.log:
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    ORA-00845: MEMORY_TARGET not supported on this system
    Create controlfile reuse set database "XE"
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    alter system enable restricted session
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    alter database "XE" open resetlogs
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    alter database rename global_name to "XE"
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    alter system switch logfile
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    alter system checkpoint
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    2. CloneRmanRestore.log
    ORA-00845: MEMORY_TARGET not supported on this system
    select TO_CHAR(systimestamp,'YYYYMMDD HH:MI:SS') from dual
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    declare
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    select TO_CHAR(systimestamp,'YYYYMMDD HH:MI:SS') from dual
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    3. postDBCreation.log
    begin
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    File created.
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux-x86_64 Error: 2: No such file or directory
    ORA-00845: MEMORY_TARGET not supported on this system
    select 'utl_recomp_begin: ' || to_char(sysdate, 'HH:MI:SS') from dual
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    BEGIN utl_recomp.recomp_serial(); END;
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    select 'utl_recomp_end: ' || to_char(sysdate, 'HH:MI:SS') from dual
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    4. postScripts.log
    CREATE OR REPLACE LIBRARY dbms_sumadv_lib AS '/u01/app/oracle/product/11.2.0/xe/lib/libqsmashr.so';
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    BEGIN dbms_datapump_utl.replace_default_dir; END;
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    commit
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    create or replace directory XMLDIR as '/u01/app/oracle/product/11.2.0/xe/rdbms/xml'
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    DROP DIRECTORY ORACLE_OCM_CONFIG_DIR
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    DROP DIRECTORY ADMIN_DIR
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    DROP DIRECTORY WORK_DIR
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    BEGIN dbms_swrf_internal.cleanup_database(cleanup_local => FALSE); END;
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    commit
    Can somebody that knows this, or has installed Oracle Express on Ubuntu, to please explain it to me what does it mean and why am I getting those errors. Please explain thoroughly as if I am an amateur person, IN DETAIL, STEP-BY-STEP. I want to run it and make it work! I heard that it encourages people to answer for points. I am open for your suggestions and experiences, as long as it's not 'use common sense', 'you're dumb', or an answer that is vaguely explained.  Thank you for those that take the time to read it.
    ec557fac-f825-4356-a220-1ec941ce7cd0 

    Hi Pradeepcmst,
    Thanks for your suggestion, but I found it sometimes misunderstanding on what he's trying to say - his instructions are not step-by-step and precise. Instead, I found this link that helped me a lot:
    Installing Oracle 11gXE on Mint and Ubuntu | The Anti-Kyte

  • Installing Oracle 10G Express Edition on Linux after installing Libaio-0.3

    I had got a error while installing 10G Express Edition on Redhat Fedora core 4 linux after installing libaio-0.3.104-2.i386.rpm
    I had given the following command in Linux Command prompt to install the oracle database 10 G Express Edition (oracle-xe-10.2.0.1-1.0.i386.rpm)
    # sudo rpm -ivh /tmp/oracle-xe-10.2.0.1-1.0.i386.rpm
    The error I had got is as follows:
    Preparing.....#####################[100%]
    1:oracle-xe Warning:/etc/init.d/oracle-xe saved as /etc/init.d/oracle-xe.rpmorig
    error:Unpacking of archive failed on file /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/bin/ons;4698950F:cpio:MD5 Sum Mismatch

    The steps I am asking is for installing oracle 10G express edition on Redhat Fedora core 4 Linux version. Now, after downloading the fresh copy of Oracle 10G express edition from the Oracle site. I have successfully installed oracle now.
    I was getting the following errors - I have pasted previous query for the problem which I had faced after installing Oracle 10 G Express Edition successfully on Redhat Fedora Core 4 Linux.
    The Previous Query is as follows:
    Thanks For Guiding Me All of you!
    Finally, I have installed Oracle 10G Express Edition on Redhat Fedora core 4 Linux.
    Now, I am having the following problems:
    After making the changes as per my Reference mentioned in my different messages, I had done the troubleshooting steps going to Options and setting the same.
    1.When I try to load the http://127.0.0.1:8080/apex page it gives an error popup:
    " The connection was refused when attempting to contact 127.0.0.1:8080 "
    2. After opening the Run the SQL Command Line by clicking on applications and When I say " Connect System and when prompted for password, I have entered the password and gives another error as follows:
    ORA-01034 : Oracle not available
    ORA-27101: Shared Memory realm does not exist
    Linux Error:2:No such file or directory
    3. When I try to manually start the Listener or Services, It gives one more error:
    Root Not a Member of DBA Group
    I need to What is happening or What is the Problem and How will I rectify them?

  • Installing Oracle 10g Express Edition on x86_64

    Hi,
    I tried installing Oracle 10g express edition on Arch Linux X86_64 but could not get it running.
    I followed guide here http://alodib.com/?q=node/32.
    Installation went well. Then I configured it, apparently went well. But could not get it running.
    I have following output
    $>sudo /etc/rc.d/oracle-xe restart
    :: Stopping Oracle Database                                              [FAIL]
    :: Starting Oracle Database                                              [DONE]
    $>sudo /etc/rc.d/oracle-xe restart
    :: Stopping Oracle Database                                              [FAIL]
    :: Starting Oracle Database                                              [DONE]
    $>sudo /etc/rc.d/oracle-xe status
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 26-DEC-2011 12:58:24
    Copyright (c) 1991, 2005, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    Start Date                26-DEC-2011 12:17:16
    Uptime                    0 days 0 hr. 41 min. 7 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Default Service           XE
    Listener Parameter File   /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/admin/listener.ora
    Listener Log File         /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/log/listener.log
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC_FOR_XE)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost.localdomain)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
      Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    $> sqlplus
    SQL*Plus: Release 10.2.0.1.0 - Production on Mon Dec 26 13:17:43 2011
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Enter user-name: system
    Enter password:
    oracleXE: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
    ERROR:
    ORA-12547: TNS:lost contact

    1) which Linux(freeware) flavor should I install ?Ordinarily, I'd recommend getting Oracle Linux (http://eDelivery.oracle.com/linux) because the default install includes all the prerequisite RPM packages you will need. And failing that, also offers another RPM package "oracle-validated" which will cause the installation of the necessary prerequisites.
    But... you mentioned customer: if this is a revenue-producing situation and customer money is at stake, I strongly recommend they obtain commercial O/S support with either Oracle, Red Hat, or maybe SuSE/Novell. Compared to the cost of a downed business, an O/S support arrangement is cheap, cheap, cheap.
    2) is there any virtual enviornment available for Linux Os on which I can install 10g Express Edition database ?Sure. You can run Oracle VirtualBox on most Linux, Windows, or Solaris boxes. http://VirtualBox.org for info.
    3) If available, is there any difference in using the Linux Os in Virtual enviornment and actual installing Linux ? will there be any difference in installing database and configuration for both the cases?No real differences in either environment.
    4) need download link for latest version of Red Hat Linux setupWhat, you didn't try http://eDelivery.oracle.com/linux yet?

  • Installing oracle application express

    hi,
    My administrators have installed oracle app server 10g and oracle http server is up and running on the linux server..
    Do i have to download and install oracle application express on the client machine(where i have to develop the applications) or download it to the server??
    Thanks

    The Apex installation is essentially two things -
    1) Installation of the Oracle HTTP Server (essentially Apache with the mod_plsql module installed, plus some other custom things)
    2) Installation of the packages/procedures/functions into the database (you do this by connecting to the DB and running a script).
    So, unless you are running the database on your laptop, you wouldn't be installing Apex on your laptop, you would be installing it from your laptop.
    You can install from your laptop if you can connect to the DB from it, personally I usually prefer to install from the actual server itself, for two reasons -
    1) It's generally faster since you don't need to send things across the network
    2) It minimizes the chance of any networking errors part way through the install (such as someone pulling the wrong network cable out of the patchbox for example).
    That's just a personal view however, you should be able to install from your laptop just fine.

  • Error while installing Oracle Apps server 10.1.3 with Oracle DB 11.2.0.2

    Error while installing Oracle Apps server 10.1.3 with Oracle DB 11.2.0.2 residing in the same server and being used by Apps server as it's metadata.
    bash-3.00$ export ORACLE_HOME=/data/ora11g/app/ora11g/product/11.2.0
    bash-3.00$ cd /data/OAS/install/soa_schemas/irca/
    bash-3.00$ ./irca.sh
    Integration Repository Creation Assistant (IRCA) 10.1.3.1.0
    (c) Copyright 2006 Oracle Corporation. All rights reserved.
    ERROR: Cannot find library - /data/ora11g/app/ora11g/product/11.2.0/jdbc/lib/ojdbc14.jar
    Please verify that the ORACLE_HOME is set correctly.
    bash-3.00$

    Hi Craig,
    Database 11gR2 could be used for Installing Application Server 10.1.3.x but with some limitation.
    So please review the note:-887365.1 Oracle Database 11g Release 2 (11.2) Certification for Oracle Application Server 10g (10.1.2, 10.1.3, 10.1.4)
    Section :- Oracle Application Server 10g Release 3 (10.1.3)
    Regards,
    Praaksh.

  • Need help on installing Oracle Application express 3.2

    Hi,
    I had downloaded Oracle 11g database and installed the personal edition.I got the Enterprise manager login page working and also the DBConsole
    I had Downloaded APEX 3.2 and wanted to install apex 3.2.I wanted to do the following scenario
    Scenario 3: Install from the Database and Configure the Embedded PL/SQL
    Gateway
    Planning to do these steps: ( I have few questions on these steps and are below each step)
    ■ Running the apxconf.sql Configuration Script
    Do I have to install Oracle Application express or is it already installed in 11g personal edition?
    Do I have to create a seperate database or schema for this step( I have only one instance orcl1) ?■ Verifying the Oracle XML DB HTTP Server Port
    Can I do this step in my current orcl1 instance,if so which user■ Enabling Oracle XML DB HTTP Server
    Once I carry out these steps, Can I access the admin page for apex with https://localhost:port/apex_admin ?
    Am I missing any other steps ?
    Thanks

    I have one idea..
    Try to install again:
    1) download and unzip apex_3.2 in $ORACLE_HOME
    You will have:
    $ORACLE_HOME/apex - old directory
    $ORACLE_HOME/apex_3.2 - new directory
    2) in command line go to $ORACLE_HOME/apex_3.2/apex
    run sqlplus "/as sysdba"
    in sqlplus run @apexins tablespace_apex tablespace_files tablespace_temp images
    Where:
    tablespace_apex is the name of the tablespace for the Oracle Application Express application user.
    tablespace_files is the name of the tablespace for the Oracle Application Express files user.
    tablespace_temp is the name of the temporary tablespace.
    images is the virtual directory for Oracle Application Express images. To support future Oracle Application Express upgrades, define the virtual image directory as /i/.
    Example:
    @apexins SYSAUX SYSAUX TEMP /i/
    3) check installation log for errors
    4) in command line go to $ORACLE_HOME/apex_3.2/apex
    run sqlplus "/as sysdba"
    in sqlplus run @apxconf
    set admin password
    set port
    5) run @apxldimg.sql $ORACLE_HOME/apex_3.2
    6) check for running listener and try to login apex: http:\\host:port\apex\apex_admin
    Good luck!

  • Error while installing Oracle Apps R12 , on windows server 2003 R2

    Hi Experts
    While installing Oracle Apps R12 , on windows server 2003 R2, I am getting the following error.
    System Utilities
    command: cmd.exe /c E:\oracle 12i dump\startCD\Disk1\rapidwiz\bin\adchkutl.cmd F:\cygwin\bin F:\VC\bin
    'E:\oracle' is not recognized as an internal or external command,
    operable program or batch file.
    RW-50011: Error: - System Utilities Availability test has returned an error: 1
    ======================================================================================================================================================================================================================================================================
    File Space Check :
    -- database node space checks --
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Database ORACLE_HOME = F:\oracle\VIS\db\tech_st\11.1.0
    required = 5600.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Database System File Directory = F:\oracle\VIS\db\apps_st\data
    required = 20200.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Database Log File Directory = F:\oracle\VIS\db\apps_st\data
    required = 950.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Database Transaction File Directory = F:\oracle\VIS\db\apps_st\data
    required = 103350.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Database Archive File Directory = F:\oracle\VIS\db\apps_st\data
    required = 64500.0
    actual = 0.0
    -- apps node space checks --
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    APPL_TOP = E:\apps\VIS\apps\apps_st\appl
    required = 5800.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    APPL_TOP mount 2 = E:\apps\VIS\apps\apps_st\appl
    required = 2800.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    APPL_TOP mount 3 = E:\apps\VIS\apps\apps_st\appl
    required = 8400.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    APPL_TOP mount 4 = E:\apps\VIS\apps\apps_st\appl
    required = 3100.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    COMMON_TOP = E:\apps\VIS\apps\apps_st\comn
    required = 3200.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Apps ORACLE_HOME = E:\apps\VIS\apps\tech_st\10.1.3
    required = 1400.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Tools ORACLE_HOME = E:\apps\VIS\apps\tech_st\10.1.2
    required = 1400.0
    actual = 0.0
    RW-20012: Error: - Free disk space on system returns zero:
         probable cause - mount point does not exist.
    RW-20013: Error: - Not enough free disk space on system:
    Temp Directory = E:\apps\VIS\inst\apps\VIS_stccspr01\temp
    required = 1024.0
    actual = 0.0
    waiting for expert suggestion.
    Thanks
    Rahul Srivastava

    Hi Hussein
    after changing the directory name as Stage12, I am getting error
    File Space Check :
    -- database node space checks --
    Disk space on system acceptable:
    Database ORACLE_HOME = F:\oracle\VIS\db\tech_st\11.1.0
    required = 5600.0
    actual = 200473.43359375
    Disk space on system acceptable:
    Database System File Directory = F:\oracle\VIS\db\apps_st\data
    required = 20200.0
    actual = 194873.43359375
    Disk space on system acceptable:
    Database Log File Directory = F:\oracle\VIS\db\apps_st\data
    required = 950.0
    actual = 174673.43359375
    Disk space on system acceptable:
    Database Transaction File Directory = F:\oracle\VIS\db\apps_st\data
    required = 103350.0
    actual = 173723.43359375
    Disk space on system acceptable:
    Database Archive File Directory = F:\oracle\VIS\db\apps_st\data
    required = 64500.0
    actual = 70373.43359375
    -- apps node space checks --
    Disk space on system acceptable:
    APPL_TOP = F:\oracle\VIS\apps\apps_st\appl
    required = 5800.0
    actual = 5873.43359375
    RW-20013: Error: - Not enough free disk space on system:
    APPL_TOP mount 2 = F:\oracle\VIS\apps\apps_st\appl
    required = 2800.0
    actual = 73.43359375
    RW-20013: Error: - Not enough free disk space on system:
    APPL_TOP mount 3 = F:\oracle\VIS\apps\apps_st\appl
    required = 8400.0
    actual = 73.43359375
    RW-20013: Error: - Not enough free disk space on system:
    APPL_TOP mount 4 = F:\oracle\VIS\apps\apps_st\appl
    required = 3100.0
    actual = 73.43359375
    RW-20013: Error: - Not enough free disk space on system:
    COMMON_TOP = F:\oracle\VIS\apps\apps_st\comn
    required = 3200.0
    actual = 73.43359375
    RW-20013: Error: - Not enough free disk space on system:
    Apps ORACLE_HOME = F:\oracle\VIS\apps\tech_st\10.1.3
    required = 1400.0
    actual = 73.43359375
    RW-20013: Error: - Not enough free disk space on system:
    Tools ORACLE_HOME = F:\oracle\VIS\apps\tech_st\10.1.2
    required = 1400.0
    actual = 73.43359375
    RW-20013: Error: - Not enough free disk space on system:
    Temp Directory = F:\oracle\VIS\inst\apps\VIS_stccspr01\temp
    required = 1024.0
    actual = 73.43359375
    also for
    System Utilities
    command: cmd.exe /c E:\Stage12\startCD\Disk1\rapidwiz\bin\adchkutl.cmd F:\cygwin\bin F:\VC\bin
    E:\Stage12\startCD\Disk1\rapidwiz>echo off
    /cygdrive/c/WINDOWS/system32/cmd
    'which' command is available.
    /usr/bin/gnumake
    'gnumake' is available.
    'cl' is not available.
    ERRORCODE = 1 ERRORCODE_ENDThe system cannot find the path specified.
    which: no cl in (/usr/bin:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/system32)
    RW-50011: Error: - System Utilities Availability test has returned an error: 1
    Yes I do have sufficient space i.e . for E: 106 GB and F: 195 GB free space .
    Thanks
    Rahul Srivastava

  • Not able to install  Oracle 10g Express on linux 64bit based on Dude's intr

    I followed "https://forums.oracle.com/forums/thread.jspa?threadID=2200434" to install oracle 10g xe on Ubuntu 10.10 AMD 64-bit
    but I ran into below error while I was trying to install 10g XE on linux 64bit
    root@vdevluxcnhz0021:~# dpkg -i force-architecture libaio_0.3.104-1_i386.deb   --------- this step is error
    dpkg: warning: overriding problem because --force enabled:
    package architecture (i386) does not match system (amd64)
    dpkg: regarding libaio_0.3.104-1_i386.deb containing libaio:
    libaio1 conflicts with libaio
    libaio (version 0.3.104-1) is to be installed.
    dpkg: error processing libaio_0.3.104-1_i386.deb (--install):
    conflicting packages - not installing libaio
    Errors were encountered while processing:
    libaio_0.3.104-1_i386.deb
    Linux version
    root@vdevluxcnhz0021:~# cat /etc/issue
    Ubuntu 10.04.2 LTS \n \l
    root@vdevluxcnhz0021:~# cat /proc/version
    Linux version 2.6.32-28-server (buildd@allspice) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #55-Ubuntu SMP Mon Jan 10 23:57:16 UTC 2011
    Can you please help on this?
    Thanks
    Edited by: user1997872 on Jan 4, 2012 7:07 AM

    It looks like you will have to uninstall "libaio1", but I don't know for sure and don't have Ubuntu 10.4 available right now to play with.
    Sorry but the instructions are for Ubuntu 10.10, not 10.4, which is different.
    If you need to install XE on Ubuntu, I'd rather suggest 11gR2 XE:
    Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto
    Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto
    Oracle 11gR2 Express Edition on Linux Ubuntu 11.10 how-to
    Oracle 11gR2 Express Edition on Linux Ubuntu 11.10 howto

  • Failed in Installing Oracle Apps 11i on RHEL5

    Hi,
    I try to install oracle apps on rhel5. as instructed on the metalink id=316806.1, i follow all reuqired steps and rpm. but when i install the oracle applications 11i on RHEL5 i received an error: " RW-50004: Error code received when running external process. Check log file for details. Running Database Install Driver for DVL instance Database Availability Check "
    can anyone help me to resolve this issue?...
    Check runProcess5 on the Logfile..
    Here's the log file;
    Oracle Applications Rapid Install Wizard Install log
    >> Using Rapid Wizard Version : 11.5.10.35
    >> Install session started : Tue Aug 12 15:01:27 PHT 2008
    >> Rapid Wizard source location : /live/Stage11i/startCD/Disk1/rapidwiz
    >> Command Line arguments for this execution :
    =================================================================
    Install Session Information
    Host Name : bladj.myclone.com
    Host Operating System : Linux
    User running Install : root
    =================================================================
    InstUpgPanel
         User action : Install Oracle Applications
         Install type : Standard Install
    InstallPanel
         User action : Create configuration file
         Description : To create a new intance cofiguration.
    NumNodesPanel
         Install type : Single node Install
         Description : Installs all the services on a single node.
    InstallSidPanel
         Database type : Fresh Install Database
         Database name : DVL
    RdbmsPanel
         Derived Mount Points :
              Oracle OS User : devora
              Oracle OS Group : dba
              Base Install directory : /live
              Oracle Home : /live/ora/dvldb/9.2.0
              Data Top (SYS) : /live/dta/dvldata
              Data Top (LOG) : /live/dta/dvldata
              Data Top (TXN) : /live/dta/dvldata
              Data Top (ARCHIVE) : /live/dta/dvldata
    LicensePanel
         Licensing type : Component Licensing
         Description : An application can be licensed individually.
    ProductPanel
         Selected products :
              [0 160 190 265 601 174 175 690 874 709 660 702 401 665 673 201 202 178 230 101 140 200 222 240 260 600 8400 8401 8450 8901 231 ]
         Selected product groups :
              [Basic, Order Management, Inventory Management, Purchasing, iProcurement, Financials]
    LanguagePanel
         Selected languages :
              [American_English - US]
    CharsetPanel
              Default territory : AMERICA
              Base Language : American_English - US
              Database character set : US7ASCII
              APPL_TOP character set : US7ASCII
              IANA character set : US-ASCII
    MtierInfoPanel
         Configuration Information for Node - bladj - Admin Server / Concurrent Mgr / Forms Server / Web Server
              Derived Mount Points :
                   Apps OS User : devapp
                   Apps OS Group : dba
                   Base Install directory : /live/app
                   APPL_TOP Mount point : /live/app/dvlappl
                   APPL_TOP aux. 1 : /live/app/dvlappl
                   APPL_TOP aux. 2 : /live/app/dvlappl
                   APPL_TOP aux. 3 : /live/app/dvlappl
                   COMMON_TOP : /live/app/dvlcomn
                   8.0.6 ORACLE_HOME : /live/app/dvlora/8.0.6
                   iAS ORACLE_HOME : /live/app/dvlora/iAS
                   Temp Directory : /live/app/dvlcomn/temp
    PortPanel
              Selected port pool :
                   Domain Name : myclone.com
                   Database Port : 1522
                   RPC Port : 1627
                   Reports Port : 7001
                   Web Listener Port : 8001
                   OProcMgr Port : 8101
                   Web PLSQL Port : 8201
                   Servlet Port : 8801
                   Forms Listener Port : 9001
                   Metrics Server Data Port : 9101
                   Metrics Server Req. Port : 9201
                   JTF Fulfillment Server Port : 9301
                   Map Viewer Servlet Port : 9801
                   OEM Web Utility Port : 10001
                   VisiBroker OrbServer Agent Port : 10101
                   MSCA Server Port : 10201
                   MSCA Dispatcher Port : 10301
                   Java Object Cache Port : 12346
                   OACORE Servlet Port Range : 16010-16019
                   Discoverer Servlet Port Range : 17010-17019
                   Forms Servlet Port Range : 18010-18019
                   XMLSVCS Servlet Port Range : 19010-19019
    AppsConfig temp dir set to: /tmp
    ConfigFilePanel
              Setting temp directory to : /tmp <-> /tmp/
              Writing configuration file to : /tmp/config.txt
    Port Availability Check :
    Database Port Value = 1522...... Available
    RPC Port Value = 1627...... Available
    Forms Listener Port Value = 9001...... Available
    Metrics Server Port Value = 9101...... Available
    Metrics Client Port Value = 9201...... Available
    Forms Servlet Port Range Value = 18010...... Available
    Forms Servlet Port Range Value = 18011...... Available
    Forms Servlet Port Range Value = 18012...... Available
    Forms Servlet Port Range Value = 18013...... Available
    Forms Servlet Port Range Value = 18014...... Available
    Forms Servlet Port Range Value = 18015...... Available
    Forms Servlet Port Range Value = 18016...... Available
    Forms Servlet Port Range Value = 18017...... Available
    Forms Servlet Port Range Value = 18018...... Available
    Forms Servlet Port Range Value = 18019...... Available
    Report Listener Port Value = 7001...... Available
    Web Listener Port Value = 8001...... Available
    Web Listener PLSQL Port Value = 8201...... Available
    Servlet Port Value = 8801...... Available
    JTF Fulfillment Server Port Value = 9301...... Available
    Map Viewer Servlet Port Value = 9801...... Available
    OEM Web Utility Port Value = 10001...... Available
    VisiBroker OrbServer Agent Port Value = 10101...... Available
    MSCA Server Port Value = 10201...... Available
    MSCA Dispatcher Port Value = 10301...... Available
    OACORE Servlet Port Range Value = 16010...... Available
    OACORE Servlet Port Range Value = 16011...... Available
    OACORE Servlet Port Range Value = 16012...... Available
    OACORE Servlet Port Range Value = 16013...... Available
    OACORE Servlet Port Range Value = 16014...... Available
    OACORE Servlet Port Range Value = 16015...... Available
    OACORE Servlet Port Range Value = 16016...... Available
    OACORE Servlet Port Range Value = 16017...... Available
    OACORE Servlet Port Range Value = 16018...... Available
    OACORE Servlet Port Range Value = 16019...... Available
    Discoverer Servlet Port Range Value = 17010...... Available
    Discoverer Servlet Port Range Value = 17011...... Available
    Discoverer Servlet Port Range Value = 17012...... Available
    Discoverer Servlet Port Range Value = 17013...... Available
    Discoverer Servlet Port Range Value = 17014...... Available
    Discoverer Servlet Port Range Value = 17015...... Available
    Discoverer Servlet Port Range Value = 17016...... Available
    Discoverer Servlet Port Range Value = 17017...... Available
    Discoverer Servlet Port Range Value = 17018...... Available
    Discoverer Servlet Port Range Value = 17019...... Available
    XMLSVCS Servlet Port Range Value = 19010...... Available
    XMLSVCS Servlet Port Range Value = 19011...... Available
    XMLSVCS Servlet Port Range Value = 19012...... Available
    XMLSVCS Servlet Port Range Value = 19013...... Available
    XMLSVCS Servlet Port Range Value = 19014...... Available
    XMLSVCS Servlet Port Range Value = 19015...... Available
    XMLSVCS Servlet Port Range Value = 19016...... Available
    XMLSVCS Servlet Port Range Value = 19017...... Available
    XMLSVCS Servlet Port Range Value = 19018...... Available
    XMLSVCS Servlet Port Range Value = 19019...... Available
    Operating System Check
    command : /live/Stage11i/startCD/Disk1/rapidwiz/bin/checkOS.sh
    Operating System patch/version test has succeeded
    O/S User and Group Check
    Install is being done by root so ignoring this test.
    Port Uniqueness Check :
    All ports are unique.
    File System Check :
    Database ORACLE_HOME has write privileges:
    Mount Point = /live/ora/dvldb/9.2.0
    Database ORACLE_HOME admin folder has write privileges:
    Mount Point = /live/ora/dvldb/9.2.0/appsutil
    Database ORACLE_HOME temp folder has write privileges:
    Mount Point = /live/ora/dvldb/9.2.0/appsutil/temp
    Database Install Log Directory has write privileges:
    Mount Point = /live/ora/dvldb/9.2.0/appsutil/log/DVL_bladj
    Changed Permissions for /live/ora/dvldb/9.2.0/appsutil/log/DVL_bladj
    Database Install Out Directory has write privileges:
    Mount Point = /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/templbac
    Database System File Directory has write privileges:
    Mount Point = /live/dta/dvldata
    Database Log File Directory has write privileges:
    Mount Point = /live/dta/dvldata
    Database Transaction File Directory has write privileges:
    Mount Point = /live/dta/dvldata
    Database Archive File Directory has write privileges:
    Mount Point = /live/dta/dvldata
    APPL_TOP has write privileges:
    Mount Point = /live/app/dvlappl
    APPL_TOP admin has write privileges:
    Mount Point = /live/app/dvlappl/admin
    APPL_TOP mount 2 has write privileges:
    Mount Point = /live/app/dvlappl
    APPL_TOP mount 3 has write privileges:
    Mount Point = /live/app/dvlappl
    APPL_TOP mount 4 has write privileges:
    Mount Point = /live/app/dvlappl
    COMMON_TOP has write privileges:
    Mount Point = /live/app/dvlcomn
    JAVA_TOP has write privileges:
    Mount Point = /live/app/dvlcomn/java
    JDK_TOP has write privileges:
    Mount Point = /live/app/dvlcomn/util/java/1.4/j2sdk1.4.2_04
    PORTAL_TOP has write privileges:
    Mount Point = /live/app/dvlcomn/portal
    Temp Directory has write privileges:
    Mount Point = /live/app/dvlcomn/temp
    APPL_TOP admin Install Log Directory has write privileges:
    Mount Point = /live/app/dvlappl/admin/DVL_bladj/log
    Changed Permissions for /live/app/dvlappl/admin/DVL_bladj/log
    APPL_TOP admin Install Out Directory has write privileges:
    Mount Point = /live/app/dvlappl/admin/DVL_bladj/out/templbac
    Apps ORACLE_HOME has write privileges:
    Mount Point = /live/app/dvlora/iAS
    Tools ORACLE_HOME has write privileges:
    Mount Point = /live/app/dvlora/8.0.6
    File Space Check :
    Mount Point for /live/ora/dvldb/9.2.0 = /live
    Disk space on system acceptable :
    Database ORACLE_HOME = /live/ora/dvldb/9.2.0
    required = 3091.0
    actual = 110261.109375
    Mount Point for /live/dta/dvldata = /live
    Disk space on system acceptable :
    Database System File Directory = /live/dta/dvldata
    required = 11376.0
    actual = 107170.109375
    Mount Point for /live/dta/dvldata = /live
    Disk space on system acceptable :
    Database Log File Directory = /live/dta/dvldata
    required = 55.0
    actual = 95794.109375
    Mount Point for /live/dta/dvldata = /live
    Disk space on system acceptable :
    Database Transaction File Directory = /live/dta/dvldata
    required = 8294.0
    actual = 95739.109375
    Mount Point for /live/dta/dvldata = /live
    Disk space on system acceptable :
    Database Archive File Directory = /live/dta/dvldata
    required = 10630.0
    actual = 87445.109375
    Mount Point for /live/app/dvlappl = /live
    Disk space on system acceptable :
    APPL_TOP = /live/app/dvlappl
    required = 5705.0
    actual = 76815.109375
    Mount Point for /live/app/dvlappl = /live
    Disk space on system acceptable :
    APPL_TOP mount 2 = /live/app/dvlappl
    required = 3212.0
    actual = 71110.109375
    Mount Point for /live/app/dvlappl = /live
    Disk space on system acceptable :
    APPL_TOP mount 3 = /live/app/dvlappl
    required = 5852.0
    actual = 67898.109375
    Mount Point for /live/app/dvlappl = /live
    Disk space on system acceptable :
    APPL_TOP mount 4 = /live/app/dvlappl
    required = 2524.0
    actual = 62046.109375
    Mount Point for /live/app/dvlcomn = /live
    Disk space on system acceptable :
    COMMON_TOP = /live/app/dvlcomn
    required = 2963.0
    actual = 59522.109375
    Mount Point for /live/app/dvlora/iAS = /live
    Disk space on system acceptable :
    Apps ORACLE_HOME = /live/app/dvlora/iAS
    required = 2600.0
    actual = 56559.109375
    Mount Point for /live/app/dvlora/8.0.6 = /live
    Disk space on system acceptable :
    Tools ORACLE_HOME = /live/app/dvlora/8.0.6
    required = 3027.0
    actual = 53959.109375
    Host/Domain Check
    command : /bin/ping -c 1 bladj
    PING bladj.myclone.com (192.168.10.17) 56(84) bytes of data.
    64 bytes from bladj.myclone.com (192.168.10.17): icmp_seq=1 ttl=64 time=0.033 ms
    --- bladj.myclone.com ping statistics ---
    1 packets transmitted, 1 received, 0% packet loss, time 0ms
    rtt min/avg/max/mdev = 0.033/0.033/0.033/0.000 ms
    host ping has succeeded
    command : /bin/ping -c 1 bladj.myclone.com
    PING bladj.myclone.com (192.168.10.17) 56(84) bytes of data.
    64 bytes from bladj.myclone.com (192.168.10.17): icmp_seq=1 ttl=64 time=0.032 ms
    --- bladj.myclone.com ping statistics ---
    1 packets transmitted, 1 received, 0% packet loss, time 0ms
    rtt min/avg/max/mdev = 0.032/0.032/0.032/0.000 ms
    host.domain ping has succeeded
    OS Patch Checks
    running command : OSPatchCheck.checkPatch()
    OS = Linux OSVersion = 2.6.18-92.el5
    No Patch Information available for this Platform
    System Utilities Check
    These utilities need to be accessible on your system in order to do administrative tasks.
    command : /live/Stage11i/startCD/Disk1/rapidwiz/bin/adchkutl.sh
    Checking for make...     found - /usr/bin/make
    Checking for ld...     found - /usr/bin/ld
    Checking for cc...     found - /usr/bin/cc
    Checking for ar...     found - /usr/bin/ar
    Checking for ksh...     found - @(#)PD KSH v5.2.14 99/07/13.2
    Utility check completed successfully
    System Utilities Availability test has succeeded
    DoInstallPanel - Summary Text
    The Rapid Install Wizard will now install the following:
    DoInstallPanel - User continued install at warning dialog.
    Starting from Rapid Install Full Stage area /live/Stage11i/oraDB/Disk1
    RapidWiz location: /live/Stage11i/startCD/Disk1/rapidwiz
    Install Media location: /live/Stage11i/startCD/Disk1
    APPL_TOP location: /live/app/dvlappl
    Database ORACLE_HOME: /live/ora/dvldb/9.2.0
    Database SID: DVL
    Database Context Name : DVL_bladj
    Creating 9.2.0 DB Context from /live/Stage11i/startCD/Disk1/rapidwiz/etc/adxdbctx.tmp to /live/ora/dvldb/9.2.0/appsutil/DVL_bladj.xml
    instantiate file:
    source : /live/Stage11i/startCD/Disk1/rapidwiz/etc/adxdbctx.tmp
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /tmp/tmpDVL_bladj.xml
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /tmp/tmpDVL_bladj.xml
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /live/ora/dvldb/9.2.0/temp/restart.xml
    dest : /tmp/tmprestart.xml
    instantiate file:
    source : /tmp/tmprestart.xml
    dest : /tmp/tmprestart.xml
    Creating APPL_TOP Context from /live/Stage11i/startCD/Disk1/rapidwiz/etc/adxmlctx.tmp to /live/app/dvlappl/admin/DVL_bladj.xml
    instantiate file:
    source : /live/Stage11i/startCD/Disk1/rapidwiz/etc/adxmlctx.tmp
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /tmp/tmpDVL_bladj.xml
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /tmp/tmpDVL_bladj.xml
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /tmp/tmpDVL_bladj.xml
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /tmp/tmpDVL_bladj.xml
    dest : /tmp/tmpDVL_bladj.xml
    instantiate file:
    source : /live/app/dvlcomn/temp/restart.xml
    dest : /tmp/tmprestart.xml
    instantiate file:
    source : /tmp/tmprestart.xml
    dest : /tmp/tmprestart.xml
    Succesfully changed Permissions for /live/ora/dvldb/9.2.0/appsutil/log/DVL_bladj
    Processing DriverFile = /live/Stage11i/startCD/Disk1/rapidwiz/template/adridb.drv
    Running Instantiation Drivers for /live/Stage11i/startCD/Disk1/rapidwiz/template/adridb.drv
    Processing DriverFile = /live/Stage11i/startCD/Disk1/rapidwiz/template/adriapps.drv
    Running Instantiation Drivers for /live/Stage11i/startCD/Disk1/rapidwiz/template/adriapps.drv
    Total number of processes in Current Install 5
    Processing DriverFile = /live/Stage11i/startCD/Disk1/rapidwiz/template/adridb.drv
    Running Instantiation Drivers for /live/Stage11i/startCD/Disk1/rapidwiz/template/adridb.drv
    Creation of Directory - /live/ora/dvldb/9.2.0/temp/DVL_bladj Succeeded.
    instantiate file:
    source : /live/Stage11i/startCD/Disk1/rapidwiz/template/adrun9i.sh
    dest : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh
    backup : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/templbac/adrun9i.sh
    setting permissions: 755
    setting ownership: devora:dba
    instantiate file:
    source : /live/Stage11i/startCD/Disk1/rapidwiz/template/adrundb.sh
    dest : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrundb.sh
    backup : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrundb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/templbac/adrundb.sh
    setting permissions: 755
    setting ownership: devora:dba
    Step 0 of 5
    Command: /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh
    Step 1 of 5: Doing UNIX preprocessing
    Executing: chmod -R 777 /etc/oraInventory
    chmod -R 777 /etc/oraInventory has succeeded
    Processing Step 1 of 5
    Executing: su devora -c "/live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh APPS APPS"
    STARTED INSTALL PHASE : 9i RDBMS : Tue Aug 12 15:05:22 PHT 2008
    runProcess_1
    Executing command:
         /live/Stage11i/startCD/Disk1/rapidwiz/jre/Linux/1.4.2//bin/jre -mx512M -classpath \n     /live/Stage11i/startCD/Disk1/rapidwiz/jre/Linux/1.4.2//lib/rt.jar:/live/Stage11i/startCD/Disk1/rapidwiz/jre/Linux/1.4.2//lib/i18n.jar:/live/Stage11i/startCD/Disk1/rapidwiz/jlib/java:/live/Stage11i/startCD/Disk1/rapidwiz/jlib/xmlparserv2.zip oracle.apps.ad.autoconfig.InstantiateFile -e /live/ora/dvldb/9.2.0/appsutil/DVL_bladj.xml -d
    /live/Stage11i/startCD/Disk1/rapidwiz/driver/db/driver/gdb920.drv -pwd no_password_here -log /live/ora/dvldb/9.2.0/appsutil/log/DVL_bladj/dbInstall.log -verbose
    Enter the location of the CD labeled Oracle Applications Rapid Install - RDBMS Disk 1 :
    Checking Disk contents in - /live/Stage11i/startCD/Disk1/rapidwiz
    Checking Disk contents in - /live/Stage11i/oraDB/Disk1
    Checking Disk contents in - /live/Stage11i/oraDB/Disk1
    UnzipCount:108
    Processing Disk1....
    Processing Disk2....
    Processing Disk3....
    runProcess_2
    Statusstring Copying the Database Context template file.
    runProcess_3
    Statusstring Executing Command: InstantiateFile -d instconf.drv
    Executing command: /live/Stage11i/startCD/Disk1/rapidwiz/jre/Linux/1.4.2//bin/jre -mx512M -classpath /live/Stage11i/startCD/Disk1/rapidwiz/jre/Linux/1.4.2//lib/rt.jar:/live/Stage11i/startCD/Disk1/rapidwiz/jre/Linux/1.4.2//lib/i18n.jar:/live/Stage11i/startCD/Disk1/rapidwiz/jlib/java:/live/Stage11i/startCD/Disk1/rapidwiz/jlib/xmlparserv2.zip oracle.apps.ad.autoconfig.InstantiateFile -e /live/ora/dvldb/9.2.0/appsutil/DVL_bladj.xml -d /live/ora/dvldb/9.2.0/appsutil/driver/instconf.drv -pwd no_password_here -log /live/ora/dvldb/9.2.0/appsutil/log/DVL_bladj/dbInstallcfg.log
    runProcess_4
    Statusstring Executing Command: recreating context file
    runProcess_5
    Statusstring Executing Command: InstantiateFile -d addbtmpl.drv
    Cannot execute configure of environment for database ORACLE_HOME
    RW-50010: Error: - script has returned an error: 1
    RW-50004: Error code received when running external process. Check log file for details.
    Running Database Install Driver for DVL instance
    Succesfully changed Permissions for /live/ora/dvldb/9.2.0/appsutil/log/DVL_bladj
    Processing DriverFile = /live/Stage11i/startCD/Disk1/rapidwiz/template/adridb.drv
    Running Instantiation Drivers for /live/Stage11i/startCD/Disk1/rapidwiz/template/adridb.drv
    instantiate file:
    source : /live/Stage11i/startCD/Disk1/rapidwiz/template/adrun9i.sh
    dest : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh
    backup : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/templbac/adrun9i.sh
    setting permissions: 755
    setting ownership: devora:dba
    instantiate file:
    source : /live/Stage11i/startCD/Disk1/rapidwiz/template/adrundb.sh
    dest : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrundb.sh
    backup : /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrundb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/templbac/adrundb.sh
    setting permissions: 755
    setting ownership: devora:dba
    Step 0 of 5
    Command: /live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh
    Step 1 of 5: Doing UNIX preprocessing
    Executing: chmod -R 777 /etc/oraInventory
    chmod -R 777 /etc/oraInventory has succeeded
    Processing Step 1 of 5
    Executing: su devora -c "/live/ora/dvldb/9.2.0/temp/DVL_bladj/adrun9i.sh APPS APPS"
    STARTED INSTALL PHASE : 9i RDBMS : Tue Aug 12 15:27:36 PHT 2008
    runProcess_5
    Statusstring Executing Command: InstantiateFile -d addbtmpl.drv
    Cannot execute configure of environment for database ORACLE_HOME
    RW-50010: Error: - script has returned an error: 1
    RW-50004: Error code received when running external process. Check log file for details.
    Running Database Install Driver for DVL instance
    Database Availability Check
    command : su devora -c "/live/Stage11i/startCD/Disk1/rapidwiz/bin/riwTDBup.sh /live/ora/dvldb/9.2.0/DVL_bladj.env APPS/APPS"
    There was an error while running the command - su devora -c /live/Stage11i/startCD/Disk1/rapidwiz/bin/riwTDBup.sh /live/ora/dvldb/9.2.0/DVL_bladj.env APPS/APPS
    uname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    which: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    sqlplus: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    wc: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    riwTDBup.sh started at Tue Aug 12 15:27:47 PHT 2008
    Parameters passed are : /live/ora/dvldb/9.2.0/DVL_bladj.env APPS/APPS
    The environment settings are as follows ...
    ORACLE_HOME : /live/ora/dvldb/9.2.0
    ORACLE_SID : DVL
    TWO_TASK :
    PATH : /live/ora/dvldb/9.2.0/Apache/perl/bin:/live/ora/dvldb/9.2.0/bin:/usr/bin:/usr/sbin:/live/ora/dvldb/9.2.0/jre/1.4.2/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/bin:/live/Stage11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/lib/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /live/ora/dvldb/9.2.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/live/ora/dvldb/9.2.0/ctx/lib
    Executable :
    riwTDBup.sh exiting with status
    Database ORACLE_HOME connection test has succeeded
    command : su devapp -c "/live/Stage11i/startCD/Disk1/rapidwiz/bin/riwTDBup.sh /live/app/dvlora/8.0.6/DVL_bladj.env APPS/APPS"
    riwTDBup.sh started at Tue Aug 12 15:27:48 PHT 2008
    Parameters passed are : /live/app/dvlora/8.0.6/DVL_bladj.env APPS/APPS
    Cannot find environment file /live/app/dvlora/8.0.6/DVL_bladj.env
    RW-50011: Error: - Apps ORACLE_HOME connection test has returned an error: 1
    Environment File Check
    Database ORACLE_HOME environment file passes instantiated variables test:
    File = /live/ora/dvldb/9.2.0/DVL_bladj.env
    RW-50016: Error: - Apps ORACLE_HOME environment file was not created:
    File = /live/app/dvlora/iAS/DVL_bladj.env
    RW-50016: Error: - iAS ORACLE_HOME environment file was not created:
    File = /live/app/dvlora/8.0.6/DVL_bladj.env
    RW-50016: Error: - APPL_TOP environment file was not created:
    File = /live/app/dvlappl/DVL_bladj.env
    RW-50016: Error: - ADOVARS environment file was not created:
    File = /live/app/dvlappl/admin/adovars.env
    RW-50016: Error: - APPSCONFIG was not created:
    File = /live/app/dvlappl/admin/adconfig.txt
    DBC File Check
    RW-00023: Error: - DBC file was not created:
    File = /live/app/dvlappl/fnd/11.5.0/secure/DVL_bladj/dvl.dbc
    HTTP Check
    checking URL = http://bladj.myclone.com:8001
    RW-50015: Error: - Portal is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
    JSP Check
    checking URL = http://bladj.myclone.com:8001/OA_HTML/jsp/fnd/fndhelp.jsp?dbc=/live/app/dvlappl/fnd/11.5.0/secure/DVL_bladj/dvl.dbc
    RW-50015: Error: - JSP is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
    PHP Check
    checking URL = http://bladj.myclone.com:8001/OA_HTML/US/ICXINDEX.htm
    RW-50015: Error: - Login Page is not responding. The service might not have started on the port yet. Please check the service and use the retry button.

    here's is the dbInstancecfg.log
    Creation of Directory - /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj Succeeded.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlicnse.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adlicnse.sql
    setting permissions: 600
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/listener.ora of type INSTALL does not exist, will be instantiated in the current pass
    Creation of Directory - /live/ora/dvldb/9.2.0/network/admin/DVL_bladj Succeeded.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/ad8ilsnr.ora
    dest : /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/listener.ora
    backup : /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/listener.ora to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/listener.ora
    setting permissions: 644
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/tnsnames.ora of type INSTALL does not exist, will be instantiated in the current pass
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/ad8itns.ora
    dest : /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/tnsnames.ora
    backup : /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/tnsnames.ora to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/tnsnames.ora
    setting permissions: 644
    Creation of Directory - /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj Succeeded.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adexecsql.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adexecsql.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstopdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adstopdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstrtdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adstrtdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbccnv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/addbccnv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobconv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adclobconv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobtmp.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adclobtmp.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adpreclone.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adpreclone.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adcrobj.sql
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adchknls.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adchknls.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/ad8idbux.env
    dest : /live/ora/dvldb/9.2.0/DVL_bladj.env
    backup : /live/ora/dvldb/9.2.0/DVL_bladj.env to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/DVL_bladj.env
    setting permissions: 644
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adupdlib_ux.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adupdlib.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adcrdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adsvdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdlsn.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adsvdlsn.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdcnv.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adsvdcnv.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/addbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/addbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbupdgsm.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/addbupdgsm.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/afdbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/afdbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/addbctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addlnctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/addlnctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlsnodes_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adlsnodes.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlnkoh.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adlnkoh.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdbrdlg.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adcrdbrdlg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adautocfg_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adautocfg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adcrobj.sh
    setting permissions: 700
    File /live/ora/dvldb/9.2.0/dbs/initDVL.ora of type INSTALL does not exist, will be instantiated in the current pass
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afinit_db920.ora
    dest : /live/ora/dvldb/9.2.0/dbs/initDVL.ora
    backup : /live/ora/dvldb/9.2.0/dbs/initDVL.ora to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/initDVL.ora
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afmkinit.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/afmkinit.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/config_ux.c
    dest : /live/ora/dvldb/9.2.0/rdbms/lib/config.c
    backup : /live/ora/dvldb/9.2.0/rdbms/lib/config.c to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/config.c
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcmclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adcmclean.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcctclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121526/adcctclean.sql
    setting permissions: 600
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/Apache/perl/bin/perl -I /live/ora/dvldb/9.2.0/Apache/perl/lib/5.00503:/live/ora/dvldb/9.2.0/Apache/perl/lib/site_perl/5.005:/live/ora/dvldb/9.2.0/appsutil/perl /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    script returned:
    Validating information needed for NLS........
    DATABASE version : db920
    No NLS specific checks required
    ERRORCODE = 0 ERRORCODE_END
    .end std out.
    .end err out.
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    script returned:
    afmkinit.sh started at Tue Aug 12 15:26:56 PHT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /live/ora/dvldb/9.2.0
    ORACLE_SID : DVL
    TWO_TASK :
    PATH : /live/ora/dvldb/9.2.0/Apache/perl/bin:/live/ora/dvldb/9.2.0/bin:/usr/bin:/usr/sbin:/live/ora/dvldb/9.2.0/jre/1.4.2/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/bin:/usr/bin:/live/Stage11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/lib/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /live/ora/dvldb/9.2.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/live/ora/dvldb/9.2.0/ctx/lib
    afmkinit.sh exiting with status 127
    .end std out.
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    touch: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    .end err out.
    Skipping INSTE8_PRF
    Skipping INSTE8_APPLY
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [SETUP PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj
    afmkinit.sh INSTE8_SETUP 127
    AutoConfig is exiting with status 1
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlicnse.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adlicnse.sql
    setting permissions: 600
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/listener.ora of type INSTALL already exists, this file will not be instantiated.
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/tnsnames.ora of type INSTALL already exists, this file will not be instantiated.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adexecsql.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adexecsql.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstopdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adstopdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstrtdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adstrtdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbccnv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/addbccnv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobconv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adclobconv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobtmp.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adclobtmp.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adpreclone.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adpreclone.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adcrobj.sql
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adchknls.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adchknls.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/ad8idbux.env
    dest : /live/ora/dvldb/9.2.0/DVL_bladj.env
    backup : /live/ora/dvldb/9.2.0/DVL_bladj.env to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/DVL_bladj.env
    setting permissions: 644
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adupdlib_ux.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adupdlib.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adcrdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adsvdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdlsn.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adsvdlsn.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdcnv.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adsvdcnv.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/addbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/addbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbupdgsm.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/addbupdgsm.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/afdbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/afdbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/addbctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addlnctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/addlnctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlsnodes_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adlsnodes.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlnkoh.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adlnkoh.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdbrdlg.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adcrdbrdlg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adautocfg_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adautocfg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adcrobj.sh
    setting permissions: 700
    File /live/ora/dvldb/9.2.0/dbs/initDVL.ora of type INSTALL already exists, this file will not be instantiated.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afmkinit.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/afmkinit.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/config_ux.c
    dest : /live/ora/dvldb/9.2.0/rdbms/lib/config.c
    backup : /live/ora/dvldb/9.2.0/rdbms/lib/config.c to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/config.c
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcmclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adcmclean.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcctclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121527/adcctclean.sql
    setting permissions: 600
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/Apache/perl/bin/perl -I /live/ora/dvldb/9.2.0/Apache/perl/lib/5.00503:/live/ora/dvldb/9.2.0/Apache/perl/lib/site_perl/5.005:/live/ora/dvldb/9.2.0/appsutil/perl /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    script returned:
    Validating information needed for NLS........
    DATABASE version : db920
    No NLS specific checks required
    ERRORCODE = 0 ERRORCODE_END
    .end std out.
    .end err out.
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    script returned:
    afmkinit.sh started at Tue Aug 12 15:27:44 PHT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /live/ora/dvldb/9.2.0
    ORACLE_SID : DVL
    TWO_TASK :
    PATH : /live/ora/dvldb/9.2.0/Apache/perl/bin:/live/ora/dvldb/9.2.0/bin:/usr/bin:/usr/sbin:/live/ora/dvldb/9.2.0/jre/1.4.2/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/bin:/usr/bin:/live/Stage11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/lib/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /live/ora/dvldb/9.2.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/live/ora/dvldb/9.2.0/ctx/lib
    afmkinit.sh exiting with status 127
    .end std out.
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    touch: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    .end err out.
    Skipping INSTE8_PRF
    Skipping INSTE8_APPLY
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [SETUP PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj
    afmkinit.sh INSTE8_SETUP 127
    AutoConfig is exiting with status 1
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlicnse.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adlicnse.sql
    setting permissions: 600
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/listener.ora of type INSTALL already exists, this file will not be instantiated.
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/tnsnames.ora of type INSTALL already exists, this file will not be instantiated.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adexecsql.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adexecsql.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstopdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adstopdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstrtdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adstrtdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbccnv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/addbccnv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobconv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adclobconv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobtmp.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adclobtmp.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adpreclone.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adpreclone.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adcrobj.sql
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adchknls.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adchknls.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/ad8idbux.env
    dest : /live/ora/dvldb/9.2.0/DVL_bladj.env
    backup : /live/ora/dvldb/9.2.0/DVL_bladj.env to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/DVL_bladj.env
    setting permissions: 644
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adupdlib_ux.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adupdlib.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adcrdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adsvdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdlsn.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adsvdlsn.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdcnv.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adsvdcnv.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/addbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/addbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbupdgsm.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/addbupdgsm.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/afdbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/afdbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/addbctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addlnctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/addlnctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlsnodes_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adlsnodes.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlnkoh.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adlnkoh.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdbrdlg.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adcrdbrdlg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adautocfg_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adautocfg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adcrobj.sh
    setting permissions: 700
    File /live/ora/dvldb/9.2.0/dbs/initDVL.ora of type INSTALL already exists, this file will not be instantiated.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afmkinit.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/afmkinit.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/config_ux.c
    dest : /live/ora/dvldb/9.2.0/rdbms/lib/config.c
    backup : /live/ora/dvldb/9.2.0/rdbms/lib/config.c to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/config.c
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcmclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adcmclean.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcctclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121654/adcctclean.sql
    setting permissions: 600
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/Apache/perl/bin/perl -I /live/ora/dvldb/9.2.0/Apache/perl/lib/5.00503:/live/ora/dvldb/9.2.0/Apache/perl/lib/site_perl/5.005:/live/ora/dvldb/9.2.0/appsutil/perl /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    script returned:
    Validating information needed for NLS........
    DATABASE version : db920
    No NLS specific checks required
    ERRORCODE = 0 ERRORCODE_END
    .end std out.
    .end err out.
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    script returned:
    afmkinit.sh started at Tue Aug 12 16:54:41 PHT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /live/ora/dvldb/9.2.0
    ORACLE_SID : DVL
    TWO_TASK :
    PATH : /live/ora/dvldb/9.2.0/Apache/perl/bin:/live/ora/dvldb/9.2.0/bin:/usr/bin:/usr/sbin:/live/ora/dvldb/9.2.0/jre/1.4.2/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/bin:/usr/bin:/live/Stage11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/lib/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /live/ora/dvldb/9.2.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/live/ora/dvldb/9.2.0/ctx/lib
    afmkinit.sh exiting with status 127
    .end std out.
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    touch: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    .end err out.
    Skipping INSTE8_PRF
    Skipping INSTE8_APPLY
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [SETUP PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj
    afmkinit.sh INSTE8_SETUP 127
    AutoConfig is exiting with status 1
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlicnse.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adlicnse.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adlicnse.sql
    setting permissions: 600
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/listener.ora of type INSTALL already exists, this file will not be instantiated.
    File /live/ora/dvldb/9.2.0/network/admin/DVL_bladj/tnsnames.ora of type INSTALL already exists, this file will not be instantiated.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adexecsql.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adexecsql.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adexecsql.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstopdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstopdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adstopdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adstrtdb.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adstrtdb.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adstrtdb.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbccnv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbccnv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/addbccnv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobconv.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobconv.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adclobconv.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adclobtmp.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adclobtmp.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adclobtmp.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adpreclone.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adpreclone.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adpreclone.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adcrobj.sql
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adchknls.pl
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adchknls.pl
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/ad8idbux.env
    dest : /live/ora/dvldb/9.2.0/DVL_bladj.env
    backup : /live/ora/dvldb/9.2.0/DVL_bladj.env to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/DVL_bladj.env
    setting permissions: 644
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adupdlib_ux.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adupdlib.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adupdlib.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adcrdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdb.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdb.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adsvdb.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdlsn.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdlsn.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adsvdlsn.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adsvdcnv.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adsvdcnv.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adsvdcnv.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/addbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/addbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbupdgsm.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/addbupdgsm.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/addbupdgsm.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/afdbprf.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afdbprf.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afdbprf.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/afdbprf.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addbctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addbctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/addbctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/addlnctl.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/addlnctl.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/addlnctl.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlsnodes_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adlsnodes.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adlsnodes.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adlnkoh.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/adlnkoh.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adlnkoh.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrdbrdlg.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrdbrdlg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adcrdbrdlg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adautocfg_ux.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adautocfg.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adautocfg.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcrobj.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcrobj.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adcrobj.sh
    setting permissions: 700
    File /live/ora/dvldb/9.2.0/dbs/initDVL.ora of type INSTALL already exists, this file will not be instantiated.
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/afmkinit.sh
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/afmkinit.sh
    setting permissions: 700
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/config_ux.c
    dest : /live/ora/dvldb/9.2.0/rdbms/lib/config.c
    backup : /live/ora/dvldb/9.2.0/rdbms/lib/config.c to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/config.c
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcmclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcmclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adcmclean.sql
    setting permissions: 600
    instantiate file:
    source : /live/ora/dvldb/9.2.0/appsutil/template/adcctclean.sql
    dest : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql
    backup : /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/adcctclean.sql to /live/ora/dvldb/9.2.0/appsutil/out/DVL_bladj/08121655/adcctclean.sql
    setting permissions: 600
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/Apache/perl/bin/perl -I /live/ora/dvldb/9.2.0/Apache/perl/lib/5.00503:/live/ora/dvldb/9.2.0/Apache/perl/lib/site_perl/5.005:/live/ora/dvldb/9.2.0/appsutil/perl /live/ora/dvldb/9.2.0/appsutil/scripts/DVL_bladj/adchknls.pl
    script returned:
    Validating information needed for NLS........
    DATABASE version : db920
    No NLS specific checks required
    ERRORCODE = 0 ERRORCODE_END
    .end std out.
    .end err out.
    Executing script in InstantiateFile:
    /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj/afmkinit.sh
    script returned:
    afmkinit.sh started at Tue Aug 12 16:55:07 PHT 2008
    The environment settings are as follows ...
    ORACLE_HOME : /live/ora/dvldb/9.2.0
    ORACLE_SID : DVL
    TWO_TASK :
    PATH : /live/ora/dvldb/9.2.0/Apache/perl/bin:/live/ora/dvldb/9.2.0/bin:/usr/bin:/usr/sbin:/live/ora/dvldb/9.2.0/jre/1.4.2/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/bin:/usr/bin:/live/Stage11i/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/local/bin:/usr/lib/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
    LD_LIBRARY_PATH : /live/ora/dvldb/9.2.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/live/ora/dvldb/9.2.0/ctx/lib
    afmkinit.sh exiting with status 127
    .end std out.
    cp: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    touch: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    .end err out.
    Skipping INSTE8_PRF
    Skipping INSTE8_APPLY
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [SETUP PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /live/ora/dvldb/9.2.0/appsutil/install/DVL_bladj
    afmkinit.sh INSTE8_SETUP 127
    AutoConfig is exiting with status 1

  • Installing Oracle 10 express edition in Fedora 7

    When I am trying to install Oracle 10g express edition in my fedora 7 it is telling......
    error:Failed dependencies
    For installation it needs a file called libaio 0.3.96..............so I tried to install libaio 0.3.96 but it also giving error telling that libaio is needed to install libaio 0.3.96.............
    Please help me out..........

    try to
    yum -y install libaio or
    yum -y install libaio-devel.i386
    from command
    If you want to try to install Oracle in linux system, you must read some installation document about your Oracle version and linux.

  • Not installing Oracle 10g Express Edition Beta 2

    Hi,
    I am in problem to install Oracle 10g Express Edition Beta 2 on Windows 2000 Pro. I have download OracleXE.exe but when i am double clicking on it, it is not working. What are the problems? Please help me
    Dulal

    Hello,
    Oracle 10g XE is rather specific and, I'm not sure that you can upgrade it to 10.2.0.4 .
    However, Oracle published an Upgrade Guide for Oracle Express Edition but, it's limited to *10.2.0.3*:
    http://download.oracle.com/docs/cd/B25329_01/doc/server.102/b32391/toc.htm
    But be careful:
    Once you have upgraded to Oracle Database 10g, you cannot downgrade back to Oracle Database Express Edition.Hope this help.
    Best regards,
    Jean-Valentin
    Edited by: Lubiez Jean-Valentin on May 22, 2010 12:06 AM

  • An issue while installing oracle 10g express edition on Ubuntu 10.04-64bit

    Hi,
    I'm running into an issue while installing oracle 10g express edition on my Ubuntu 10.04-64 bit installed machine using oracle-xe-universal_10.2.0.1-1.0_i386.deb package. The issue actually came up when I was trying to reinstall the package after uninstalling it due to some problem I had with my login credentials. To elaborate further on it, the /etc/init.d/oracle-xe script does not get created when I execute the debian package and thus i'm unable to configure the required credentials and stuff after the installation. I doubt whether this has something to do with the procedure I followed when uninstalling the previous package it. But what I did was just what's mentioned in the following [http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25144/toc.htm] user guide published by oracle.
    Another important clue would be, the platform of my machine is amd64bit although I'm dealing with an installation package preferred for i386. But I believe it's the only thing available in the oracle software download section. Hence I had to use the --force-architecture option to install it. But after reading some post published on this forum, I've figured out that it does not affect the usual execution of the software. Anyway,  I would greatly appreciate some help on this matter.
    [1] http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25144/toc.htm
    Thanks and Regards,
    Prabath Abeysekara
    Edited by: 829281 on Jan 18, 2011 7:52 PM

    Hi,
    Finally I've managed to find a solution for this issue. Thanks a lot for all the replies.
    Here's how I got rid of it.
    Addressing all the facts one by one,
    1.The problem of not getting the /etc/init.d/oracle-xe script generated was avoided
    by removing all the configuration files that were previously created while installing
    the product. The following command can be used to accomplish that task.
    *$ dpkg --purge oracle-xe*
    2.Next, Initially the password I used during the configuration process was "admin".
    Although I tried a couple of times installing the product providing the aforementioned
    password, the web UI kept prompting "Invalid Credentials" message not allowing me
    to login. But, this particular issue could be avoided by giving some other simple
    password.
    Finally, got it working and once again thanks a bunch for taking the burden of
    replying this thread.
    Cheers,
    Prabath

  • Installing Oracle 10g Express Edition on Red Hat Linux

    Hi,
    I am new with Linux Os and have to install oracle 10g Express Edition on Red Hat Linux Os for a customer. So before proceeding, I need some guidelines.
    1) which Linux(freeware) flavor should I install ?
    2) is there any virtual enviornment available for Linux Os on which I can install 10g Express Edition database ?
    3) If available, is there any difference in using the Linux Os in Virtual enviornment and actual installing Linux ? will there be any difference in installing database and configuration for both the cases?
    4) need download link for latest version of Red Hat Linux setup
    Regards
    Edited by: user640001 on Feb 25, 2011 5:44 AM

    1) which Linux(freeware) flavor should I install ?Ordinarily, I'd recommend getting Oracle Linux (http://eDelivery.oracle.com/linux) because the default install includes all the prerequisite RPM packages you will need. And failing that, also offers another RPM package "oracle-validated" which will cause the installation of the necessary prerequisites.
    But... you mentioned customer: if this is a revenue-producing situation and customer money is at stake, I strongly recommend they obtain commercial O/S support with either Oracle, Red Hat, or maybe SuSE/Novell. Compared to the cost of a downed business, an O/S support arrangement is cheap, cheap, cheap.
    2) is there any virtual enviornment available for Linux Os on which I can install 10g Express Edition database ?Sure. You can run Oracle VirtualBox on most Linux, Windows, or Solaris boxes. http://VirtualBox.org for info.
    3) If available, is there any difference in using the Linux Os in Virtual enviornment and actual installing Linux ? will there be any difference in installing database and configuration for both the cases?No real differences in either environment.
    4) need download link for latest version of Red Hat Linux setupWhat, you didn't try http://eDelivery.oracle.com/linux yet?

Maybe you are looking for

  • J2EE logon groups in an ABAP+JAVA system

    Hi, We are trying to restrict java calls to specific App servers in our ABAP+JAVA system. So if we have 5 App servers, we want all J2EE requests to go to 3 Apps only. We are using SAP web dispatcher for this purpose. When checking on SAP help site, i

  • Step by step creating XSLT Mapping

    Hi ,          Will any one help me how to create XSLT Mapping, and where to create the program. Please help me with an example. Regards, Amruth

  • Copy code from 1 SAP instance to another.

    Is there a way to copy code from one client to another client eg. I developed a RFC with a new table (Z-Table). How can I transport that defelopment?

  • Discontinue itunes allowance

    The knowledgebase article at: http://support.apple.com/kb/ht2105 - Itunes Store Allowance does not display the "Manage Allowances" option as show in the article when I follow the instructions in the article. Anybody know how to disable or change allo

  • How do I stop Photoshop CS4 from creating a new layer each time I use the line tool?

    How do I stop Photoshop CS4 from creating a new layer each time I use the line tool? Each time I use the line tool, a new layer is created. How can I stop this? No settings were changed. Thanks in advance.