Installing 11gr2 release 11.2.0.2 database in Windows 7 32 bit

Hi everyone,
I want to Install 11gr2 release 11.2.0.2 database in Windows 7 32 bit.
I have searched on download.oracle.com but i was not able to findout proper database compatible with windows 7. They had 11gEX db but i want to install simple 11gr2.
Please help me to download and configure database on windows 7 32 bit.
Thanks in advance.
Nish

11.2.0.2 is only available from My Oracle Support (https://support.oracle.com), access to which requires a paid support contract with Oracle
11.2.0.1 can be downloaded from http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html
Install Guide is at http://docs.oracle.com/cd/E11882_01/install.112/e24186/toc.htm - you will need Win 7 Professional or higher - Home version is not supported.
HTH
Srini

Similar Messages

  • Installing 11gr2 in Oracle Linux 6.3 (./runInstaller - permission denied)

    Whenever i try to run ./runInstaller in terminal,
    i get the error as Permission denied ,
    While installing oracle linux 6.3 , i have given root password and in terminal ,
    even though being a root user, can't install the Oracle Database 11gr2.
    I know, there are many tutorials about installing 11gr2, i followed almost all from different sites, but stuck with Permission denied.
    Pls help me anyone, as am a beginner in the field of Linux environment.
    Thanks...
    Edited by: flixblixclix on Jan 1, 2013 10:51 PM

    979352 wrote:
    Whenever i try to run ./runInstaller in terminal,
    i get the error as Permission denied ,
    While installing oracle linux 6.3 , i have given root password and in terminal , trying to install as root is a clear indication that you either haven't read the Installation Guide, or you are choosing to ignore it. If you missed or chose to ignore the point that the installation should not be done as root, who knows what else you missed or chose to ignore.
    From Oracle® Database Installation Guide
    11g Release 2 (11.2) for Linux ( http://docs.oracle.com/cd/E11882_01/install.112/e24321/inst_task.htm#BABJGGJH)
    4.5.1 Running Oracle Universal Installer
    For any type of installation process, start Oracle Universal Installer and install the software, as follows:
    Logon as the Oracle software owner user (typically, oracle) to the computer on which you want to install Oracle components.
    even though being a root user, can't install the Oracle Database 11gr2.
    I know, there are many tutorials about installing 11gr2, i followed almost all from different sites, but stuck with Permission denied.
    Pls help me anyone, as am a beginner in the field of Linux environment. Read the Installation Guide. Read all of it. Believe it.
    >
    Thanks...Edited by: EdStevens on Jan 1, 2013 8:24 AM

  • 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.

  • Java.lang error while installing 11gR2 Grid Infrastructure on HPUX 11.31

    Hi,
    I am installing 11gR2 Grid Infrastructure on HPUX 11.31 Itanium server for installing RAC database.
    I do not get any error during the installation of the software but while running the root.sh I am getting following error..
    # /opt/oracle/app/11.2.0/grid/root.sh
    Running Oracle 11g root.sh script...
    The following environment variables are set as:
    ORACLE_OWNER= oracle
    ORACLE_HOME= /opt/oracle/app/11.2.0/grid
    Enter the full pathname of the local bin directory: [usr/local/bin]:
    The file "dbhome" already exists in /usr/local/bin. Overwrite it? (y/n) [n]:
    The file "oraenv" already exists in /usr/local/bin. Overwrite it? (y/n) [n]:
    The file "coraenv" already exists in /usr/local/bin. Overwrite it? (y/n) [n]:
    Entries will be added to the /etc/oratab file as needed by
    Database Configuration Assistant when a database is created
    Finished running generic part of root.sh script.
    Now product-specific root actions will be performed.
    2010-04-23 15:09:28: Parsing the host name
    2010-04-23 15:09:28: Checking for super user privileges
    2010-04-23 15:09:28: User has super user privileges
    Using configuration parameter file: /opt/oracle/app/11.2.0/grid/crs/install/crsconfig_params
    Creating trace directory
    stty: : Not a typewriter
    LOCAL ADD MODE
    Creating OCR keys for user 'root', privgrp 'sys'..
    Operation successful.
    root wallet
    root wallet cert
    root cert export
    peer wallet
    profile reader wallet
    pa wallet
    peer wallet keys
    pa wallet keys
    peer cert request
    pa cert request
    peer cert
    pa cert
    peer root cert TP
    profile reader root cert TP
    pa root cert TP
    peer pa cert TP
    pa peer cert TP
    profile reader pa cert TP
    profile reader peer cert TP
    peer user cert
    pa user cert
    Adding daemon to inittab
    CRS-4123: Oracle High Availability Services has been started.
    ohasd is starting
    CRS-2672: Attempting to start 'ora.gipcd' on 'bmblade-91'
    CRS-2672: Attempting to start 'ora.mdnsd' on 'bmblade-91'
    CRS-2676: Start of 'ora.gipcd' on 'bmblade-91' succeeded
    CRS-2676: Start of 'ora.mdnsd' on 'bmblade-91' succeeded
    CRS-2672: Attempting to start 'ora.gpnpd' on 'bmblade-91'
    CRS-2676: Start of 'ora.gpnpd' on 'bmblade-91' succeeded
    CRS-2672: Attempting to start 'ora.cssdmonitor' on 'bmblade-91'
    CRS-2676: Start of 'ora.cssdmonitor' on 'bmblade-91' succeeded
    CRS-2672: Attempting to start 'ora.cssd' on 'bmblade-91'
    CRS-2672: Attempting to start 'ora.diskmon' on 'bmblade-91'
    CRS-2676: Start of 'ora.diskmon' on 'bmblade-91' succeeded
    CRS-2676: Start of 'ora.cssd' on 'bmblade-91' succeeded
    CRS-2672: Attempting to start 'ora.ctssd' on 'bmblade-91'
    CRS-2676: Start of 'ora.ctssd' on 'bmblade-91' succeeded
    Error occurred during initialization of VM
    java.lang.Error: Permission denied
    sh: 10154 Abort
    Configuration of ASM failed, see logs for details
    Did not succssfully configure and start ASM
    CRS-2500: Cannot stop resource 'ora.crsd' as it is not running
    CRS-4000: Command Stop failed, or completed with errors.
    Command return code of 1 (256) from command: /opt/oracle/app/11.2.0/grid/bin/crsctl stop resource ora.crsd -init
    Stop of resource "ora.crsd -init" failed
    Failed to stop CRSD
    CRS-2500: Cannot stop resource 'ora.asm' as it is not running
    CRS-4000: Command Stop failed, or completed with errors.
    Command return code of 1 (256) from command: /opt/oracle/app/11.2.0/grid/bin/crsctl stop resource ora.asm -init
    Stop of resource "ora.asm -init" failed
    Failed to stop ASM
    CRS-2673: Attempting to stop 'ora.ctssd' on 'bmblade-91'
    CRS-2677: Stop of 'ora.ctssd' on 'bmblade-91' succeeded
    CRS-2673: Attempting to stop 'ora.cssdmonitor' on 'bmblade-91'
    CRS-2677: Stop of 'ora.cssdmonitor' on 'bmblade-91' succeeded
    CRS-2673: Attempting to stop 'ora.cssd' on 'bmblade-91'
    CRS-2677: Stop of 'ora.cssd' on 'bmblade-91' succeeded
    CRS-2673: Attempting to stop 'ora.gpnpd' on 'bmblade-91'
    CRS-2677: Stop of 'ora.gpnpd' on 'bmblade-91' succeeded
    CRS-2673: Attempting to stop 'ora.gipcd' on 'bmblade-91'
    CRS-2677: Stop of 'ora.gipcd' on 'bmblade-91' succeeded
    CRS-2673: Attempting to stop 'ora.mdnsd' on 'bmblade-91'
    CRS-2677: Stop of 'ora.mdnsd' on 'bmblade-91' succeeded
    Initial cluster configuration failed.
    Do anybody came accross this issue? I had 11gR2 Grid Infrastructure installed on this server, but for demostration to other team members, I removed the earlier installation using Metalink Note :942166.1. I will appreciate your input.
    Regards
    Shailandra

    Hi,
    One of the recommended solution for this issue by Oracle.
    Have the DISPLAY variable set when running root.sh. This is the th recommendation by oracle to a SR opened by another vendor for this issue.
    Regards

  • Control file creation failed while installing ---------R12 release 3

    While installing R12 release 3 I am getting following error at the time of Step 2 0f 5
    RC-50004: Fatal: Error occurred in ApplyDatabase:
    Control file creation failed
    Cannot execute configure of database using RapidClone
    following is summery of my server hardware
    HDD capacity 146GB X 10 nos. ( RAID5 with 2 arrays)
    8 GB RAM
    Operating System is Red hat Linux Enterprise 4 with Update 5
    Following are the HDD partition details
    Boot 1GB
    Root 50GB
    Tem 12GB
    SWAP 24GB distributed on two HDD partitions equally
    Database and Application HDD portion size 500GB
    I am refering Metalink note Note 402310.1 all the setting are correct
    Following is kernel settings
    kernel.sem = 256 32000 100 142
    kernel.shmall = 2097152
    kernel.shmmax = 4294967296 ( Half the size of the physical memory is 8GB )
    kernel.shmmni = 4096
    kernel.msgmax = 8192
    kernel.msgmnb = 65536
    kernel.msgmni = 2878
    fs.file-max = 65536
    net.ipv4.ip_local_port_range = 1024 65000
    net.core.rmem_default = 262144
    net.core.rmem_max = 262144
    net.core.wmem_default = 262144
    net.core.wmem_max = 262144
    All the Pre-req.of installation are passing correctly
    •     glibc-2.3.4-2.25
    •     glibc-common-2.3.4-2.25
    •     binutils-2.15.92.0.2-21
    •     compat-libstdc++-296-2.96-132.7.2
    •     gcc-3.4.6-3
    •     gcc-c++-3.4.6-3
    •     libgcc-3.4.6-3
    •     libstdc++-3.4.6-3
    •     libstdc++-devel-3.4.6-3
    •     openmotif21-2.1.30-11.RHEL4.6**
    •     pdksh-5.2.14-30.3
    •     setarch-1.6-1
    •     make-3.80-6.EL4
    •     gnome-libs-1.4.1.2.90-44.1
    •     sysstat-5.0.5-11.rhel4
    •     compat-db-4.1.25-9
    •     control-center-2.8.0-12.rhel4.5
    •     xscreensaver-4.18-5.rhel4.11
    •     libaio-0.3.105-2
    •     libaio-devel-0.3.105-2
    these all packeges are avalable on the server some are even are the higher version because OS is with update 5
    Doen the installation 3 time with formating , but still facing same problem
    All Groups and Users and permitions are correct
    runProcess_3
    Statusstring Configuring Database
    Executing command: /stage/startCD/Disk1/rapidwiz/jre/Linux/1.5.0//bin/java -DCONTEXT_VALIDATED=true -mx512M -classpath /stage/startCD/Disk1/rapidwiz/jlib/java:/stage/startCD/Disk1/rapidwiz/jlib/xmlparserv2.jar:/stage/startCD/Disk1/rapidwiz/jlib/ojdbc14.jar:/stage/startCD/Disk1/rapidwiz/jlib/oui/OraInstaller.jar:/stage/startCD/Disk1/rapidwiz/jlib/oui/ewt3.jar:/stage/startCD/Disk1/rapidwiz/jlib/oui/share.jar:/stage/startCD/Disk1/rapidwiz/jlib/oui/srvm.jar oracle.apps.ad.clone.ApplyDatabase -e /test/db/tech_st/10.2.0/appsutil/VIS_test.xml -stage /stage/startCD/Disk1/rapidwiz -showProgress -phase cfg -nopromptmsg
    Log file located at /test/db/tech_st/10.2.0/appsutil/log/VIS_test/ApplyDatabase_08271904.log
    | 0% completed
    / 0% completed
    - 0% completed
    \ 0% completed
    | 0% completed
    / 0% completed RC-50004: Fatal: Error occurred in ApplyDatabase:
    Control file creation failed
    Cannot execute configure of database using RapidClone
    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 VIS instance
    Succesfully changed Permissions for /test/db/tech_st/10.2.0/appsutil/log/VIS_test
    Processing DriverFile = /stage/startCD/Disk1/rapidwiz/template/adridb.drv
    Running Instantiation Drivers for /stage/startCD/Disk1/rapidwiz/template/adridb.drv
    instantiate file:
    source : /stage/startCD/Disk1/rapidwiz/template/adrun10g.sh
    dest : /test/db/tech_st/10.2.0/temp/VIS_test/adrun10g.sh
    backup : /test/db/tech_st/10.2.0/temp/VIS_test/adrun10g.sh to /test/db/tech_st/10.2.0/appsutil/out/VIS_test/templbac/adrun10g.sh
    setting permissions: 755
    setting ownership: oracle:dba
    instantiate file:
    source : /stage/startCD/Disk1/rapidwiz/template/adrundb.sh
    dest : /test/db/tech_st/10.2.0/temp/VIS_test/adrundb.sh
    backup : /test/db/tech_st/10.2.0/temp/VIS_test/adrundb.sh to /test/db/tech_st/10.2.0/appsutil/out/VIS_test/templbac/adrundb.sh
    setting permissions: 755
    setting ownership: oracle:dba
    Step 0 of 5
    Command: /test/db/tech_st/10.2.0/temp/VIS_test/adrun10g.sh
    Step 1 of 5: Doing UNIX preprocessing
    Processing Step 1 of 5
    Step 1 of 5
    Command: /test/db/tech_st/10.2.0/temp/VIS_test/adrundb.sh
    Step 2 of 5: Doing UNIX preprocessing
    Processing Step 2 of 5
    Executing: su oracle -c "/test/db/tech_st/10.2.0/temp/VIS_test/adrundb.sh"
    STARTED INSTALL PHASE : DATABASE : Mon Aug 27 19:06:52 IST 2007
    Preparing environment to install databases ...
    Setting LD_LIBRARY_PATH to - /stage/startCD/Disk1/rapidwiz/lib/Linux -
    Setting PATH to - /stage/startCD/Disk1/rapidwiz/jlib/java:/stage/startCD/Disk1/rapidwiz/jlib/xmlparserv2.jar:/stage/startCD/Disk1/rapidwiz/jlib/ojdbc14.jar:/stage/startCD/Disk1/rapidwiz/jlib/oui/OraInstaller.jar:/stage/startCD/Disk1/rapidwiz/jlib/oui/ewt3.jar:/stage/startCD/Disk1/rapidwiz/jlib/oui/share.jar:/stage/startCD/Disk1/rapidwiz/jlib/oui/srvm.jar -
    Setting CLASSPATH to - /stage/startCD/Disk1/rapidwiz/jlib/java:/stage/startCD/Disk1/rapidwiz/jlib/xmlparserv2.jar:/stage/startCD/Disk1/rapidwiz/jlib/ojdbc14.jar:/stage/startCD/Disk1/rapidwiz/jlib/oui/OraInstaller.jar:/stage/startCD/Disk1/rapidwiz/jlib/oui/ewt3.jar:/stage/startCD/Disk1/rapidwiz/jlib/oui/share.jar:/stage/startCD/Disk1/rapidwiz/jlib/oui/srvm.jar -
         ... installing VISION demo database
    FINISHED INSTALL PHASE : DATABASE : Mon Aug 27 19:06:53 IST 2007
    su oracle -c "/test/db/tech_st/10.2.0/temp/VIS_test/adrundb.sh" has succeeded
    Succesfully changed Permissions for /test/db/tech_st/10.2.0/temp
    ===============================================================================
    NetServiceHandler 120.13 started for test at Mon Aug 27 19:06:54 IST 2007
    ===============================================================================
    [ Context Information ]
    Host : test
    Domain : apps.com
    Out Dir : null
    Tier Type : DATABASE TIER
    Getting connection...
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector() -->
    APPS_JDBC_URL='null'
    Trying to get connection using SID based connect descriptor
    getConnection() -->
    sDbHost : test
    sDbDomain : apps.com
    sDbPort : 1531
    sDbSid : VIS
    sDbUser : APPS
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@test.apps.com:1531:VIS
    Exception occurred: java.sql.SQLException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux Error: 2: No such file or directory
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=test.apps.com)(PORT=1531))(CONNECT_DATA=(SERVICE_NAME=VIS)))
    java.lang.NoSuchFieldError: TDU
    Please refer to the remaining logs on applications node at - /test/inst/apps/VIS_test/logs/08271731.log
    Can Some one pls reply
    Thanks and Regards,
    Amol

    promptUserForDiskPath Oracle Applications Rapid Install - RDBMS & Disk number = 1
    Path Obtained by Instantiate File: /prod/stage/oraDB/Disk1 & Disk number = 1
    Processing /prod/stage/oraDB/Disk1/dbts/driver/db102.drv file
    ================================================================
    Processing the contents of : Disk1
    Processing the driver file : /prod/stage/oraDB/Disk1/dbts/driver/Disk1.drv
    UNZIPPING THE DISK1 CONTENTS
    UNZIP used: UnZip 5.51 of 22 May 2004, by Info-ZIP. Maintained by C. Spieler. Send
    Unzip0 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db58_opmn.zip at /test/db/tech_st/10.2.0/
    Unzip0
    .end std out.
    .end err out.
    Unzip0 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db58_opmn.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip1 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db74_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip1
    .end std out.
    .end err out.
    Unzip1 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db74_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip2 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db26_javavm.zip at /test/db/tech_st/10.2.0/
    Unzip2
    .end std out.
    .end err out.
    Unzip2 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db26_javavm.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip5 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db23_javavm.zip at /test/db/tech_st/10.2.0/
    Unzip5
    .end std out.
    .end err out.
    Unzip5 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db23_javavm.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip6 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db29_javavm.zip at /test/db/tech_st/10.2.0/
    Unzip6
    .end std out.
    .end err out.
    Unzip6 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db29_javavm.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip3 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db22_javavm.zip at /test/db/tech_st/10.2.0/
    Unzip3
    .end std out.
    .end err out.
    Unzip3 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db22_javavm.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip4 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db9_bin.zip at /test/db/tech_st/10.2.0/
    Unzip4
    .end std out.
    .end err out.
    Unzip4 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db9_bin.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip8 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db24_javavm.zip at /test/db/tech_st/10.2.0/
    Unzip8
    .end std out.
    .end err out.
    Unzip8 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db24_javavm.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip9 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db27_javavm.zip at /test/db/tech_st/10.2.0/
    Unzip9
    .end std out.
    .end err out.
    Unzip9 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db27_javavm.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip7 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db25_javavm.zip at /test/db/tech_st/10.2.0/
    Unzip7
    .end std out.
    .end err out.
    Unzip7 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db25_javavm.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip12 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db73_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip12
    .end std out.
    .end err out.
    Unzip12 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db73_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip13 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db11_bin.zip at /test/db/tech_st/10.2.0/
    Unzip13
    .end std out.
    .end err out.
    Unzip13 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db11_bin.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip14 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db37_lib.zip at /test/db/tech_st/10.2.0/
    Unzip14
    .end std out.
    .end err out.
    Unzip14 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db37_lib.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip10 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db20_demo.zip at /test/db/tech_st/10.2.0/
    Unzip10
    .end std out.
    .end err out.
    Unzip10 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db20_demo.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip17 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db62_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip17
    .end std out.
    .end err out.
    Unzip17 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db62_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip15 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db54_rdbms.zip at /test/db/tech_st/10.2.0/
    Unzip15
    .end std out.
    .end err out.
    Unzip15 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db54_rdbms.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip16 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db42_lib.zip at /test/db/tech_st/10.2.0/
    Unzip16
    .end std out.
    .end err out.
    Unzip16 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db42_lib.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip11 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db19_demo.zip at /test/db/tech_st/10.2.0/
    Unzip11
    .end std out.
    .end err out.
    Unzip11 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db19_demo.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip20 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db8_bin.zip at /test/db/tech_st/10.2.0/
    Unzip20
    .end std out.
    .end err out.
    Unzip20 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db8_bin.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip19 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db1_appsutil.zip at /test/db/tech_st/10.2.0/
    Unzip19
    .end std out.
    .end err out.
    Unzip19 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db1_appsutil.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip21 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db33_jdk.zip at /test/db/tech_st/10.2.0/
    Unzip21
    .end std out.
    .end err out.
    Unzip21 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db33_jdk.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip18 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db40_lib.zip at /test/db/tech_st/10.2.0/
    Unzip18
    .end std out.
    .end err out.
    Unzip18 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db40_lib.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip22 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db72_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip22
    .end std out.
    .end err out.
    Unzip22 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db72_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip23 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db35_jlib.zip at /test/db/tech_st/10.2.0/
    Unzip23
    .end std out.
    .end err out.
    Unzip23 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db35_jlib.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip25 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db53_rdbms.zip at /test/db/tech_st/10.2.0/
    Unzip25
    .end std out.
    .end err out.
    Unzip25 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db53_rdbms.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip26 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db13_ctx.zip at /test/db/tech_st/10.2.0/
    Unzip26
    .end std out.
    .end err out.
    Unzip26 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db13_ctx.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip27 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db57_wf.zip at /test/db/tech_st/10.2.0/
    Unzip27
    .end std out.
    .end err out.
    Unzip27 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db57_wf.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip24 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db0_appsutil.zip at /test/db/tech_st/10.2.0/
    Unzip24
    .end std out.
    .end err out.
    Unzip24 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db0_appsutil.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip29 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db36_jre.zip at /test/db/tech_st/10.2.0/
    Unzip29
    .end std out.
    .end err out.
    Unzip29 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db36_jre.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip31 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db14_ctx.zip at /test/db/tech_st/10.2.0/
    Unzip31
    .end std out.
    .end err out.
    Unzip31 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db14_ctx.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip33 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db70_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip33
    .end std out.
    .end err out.
    Unzip33 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db70_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip28 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db2_appsutil.zip at /test/db/tech_st/10.2.0/
    Unzip28
    .end std out.
    .end err out.
    Unzip28 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db2_appsutil.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip32 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db68_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip32
    .end std out.
    .end err out.
    Unzip32 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db68_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip30 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db52_rdbms.zip at /test/db/tech_st/10.2.0/
    Unzip30
    .end std out.
    .end err out.
    Unzip30 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db52_rdbms.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip34 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db64_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip34
    .end std out.
    .end err out.
    Unzip34 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db64_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip37 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db76_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip37
    .end std out.
    .end err out.
    Unzip37 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db76_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip36 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db90_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip36
    .end std out.
    .end err out.
    Unzip36 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db90_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip35 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db44_md.zip at /test/db/tech_st/10.2.0/
    Unzip35
    .end std out.
    .end err out.
    Unzip35 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db44_md.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip40 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db80_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip40
    .end std out.
    .end err out.
    Unzip40 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db80_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip41 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db21_javavm.zip at /test/db/tech_st/10.2.0/
    Unzip41
    .end std out.
    .end err out.
    Unzip41 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db21_javavm.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip42 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db30_javavm.zip at /test/db/tech_st/10.2.0/
    Unzip43 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db49_nls.zip at /test/db/tech_st/10.2.0/
    Unzip38 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db31_inventory.zip at /test/db/tech_st/10.2.0/
    Unzip38
    .end std out.
    .end err out.
    Unzip38 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db31_inventory.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip39 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db3_appsutil.zip at /test/db/tech_st/10.2.0/
    Unzip39
    .end std out.
    .end err out.
    Unzip39 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db3_appsutil.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip44 - Start of native unzipping /prod/stage/oraDB/Disk1/dbts/stage/db28_javavm.zip at /test/db/tech_st/10.2.0/
    Unzip42
    .end std out.
    .end err out.
    Unzip42 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk1/dbts/stage/db30_javavm.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..AutoConfig is exiting with status 0
    Processing disk file : disk.label in /prod/stage/oraDB/Disk2
    Checking the content :disk.label
    All contents are valid.....
    =============================================================
    Processing the contents of : Disk2
    Processing the driver file : /prod/stage/oraDB/Disk2/dbts/driver/Disk2.drv
    UNZIPPING THE DISK2 CONTENTS
    Unzip45 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db60_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip45
    .end std out.
    .end err out.
    Unzip45 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db60_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip46 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db59_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip46
    .end std out.
    .end err out.
    Unzip46 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db59_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip47 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db61_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip47
    .end std out.
    .end err out.
    Unzip47 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db61_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip50 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db63_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip50
    .end std out.
    .end err out.
    Unzip50 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db63_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip48 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db39_lib.zip at /test/db/tech_st/10.2.0/
    Unzip48
    .end std out.
    .end err out.
    Unzip48 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db39_lib.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip49 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db65_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip49
    .end std out.
    .end err out.
    Unzip49 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db65_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip51 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db89_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip51
    .end std out.
    .end err out.
    Unzip51 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db89_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip52 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db77_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip52
    .end std out.
    .end err out.
    Unzip52 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db77_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip57 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db69_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip57
    .end std out.
    .end err out.
    Unzip57 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db69_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip55 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db81_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip55
    .end std out.
    .end err out.
    Unzip55 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db81_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip53 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db75_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip53
    .end std out.
    .end err out.
    Unzip53 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db75_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip56 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db83_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip56
    .end std out.
    .end err out.
    Unzip56 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db83_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip58 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db71_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip58
    .end std out.
    .end err out.
    Unzip58 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db71_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip54 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db79_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip54
    .end std out.
    .end err out.
    Unzip54 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db79_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip61 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db67_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip61
    .end std out.
    .end err out.
    Unzip61 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db67_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip60 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db87_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip60
    .end std out.
    .end err out.
    Unzip60 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db87_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip62 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db48_network.zip at /test/db/tech_st/10.2.0/
    Unzip62
    .end std out.
    .end err out.
    Unzip62 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db48_network.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip63 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db50_oui.zip at /test/db/tech_st/10.2.0/
    Unzip63
    .end std out.
    .end err out.
    Unzip63 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db50_oui.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip59 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db85_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip59
    .end std out.
    .end err out.
    Unzip59 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db85_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip65 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db4_appsutil.zip at /test/db/tech_st/10.2.0/
    Unzip64 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db32_jdk.zip at /test/db/tech_st/10.2.0/
    Unzip66 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db7_bin.zip at /test/db/tech_st/10.2.0/
    Unzip67 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db10_bin.zip at /test/db/tech_st/10.2.0/
    Unzip68 - Start of native unzipping /prod/stage/oraDB/Disk2/dbts/stage/db16_ctx.zip at /test/db/tech_st/10.2.0/
    Unzip68
    .end std out.
    .end err out.
    Unzip68 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db16_ctx.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip66
    .end std out.
    .end err out.
    Unzip66 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db7_bin.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip65
    .end std out.
    .end err out.
    Unzip65 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk2/dbts/stage/db4_appsutil.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..AutoConfig is exiting with status 0
    Processing disk file : disk.label in /prod/stage/oraDB/Disk3
    Checking the content :disk.label
    All contents are valid.....
    =============================================================
    Processing the contents of : Disk3
    Processing the driver file : /prod/stage/oraDB/Disk3/dbts/driver/Disk3.drv
    UNZIPPING THE DISK3 CONTENTS
    Unzip71 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db84_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip71
    .end std out.
    .end err out.
    Unzip71 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db84_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip73 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db66_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip73
    .end std out.
    .end err out.
    Unzip73 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db66_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip69 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db55_sysman.zip at /test/db/tech_st/10.2.0/
    Unzip69
    .end std out.
    .end err out.
    Unzip69 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db55_sysman.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip72 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db47_oc4j.zip at /test/db/tech_st/10.2.0/
    Unzip72
    .end std out.
    .end err out.
    Unzip72 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db47_oc4j.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip70 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db56_sysman.zip at /test/db/tech_st/10.2.0/
    Unzip70
    .end std out.
    .end err out.
    Unzip70 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db56_sysman.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip78 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db86_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip78
    .end std out.
    .end err out.
    Unzip78 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db86_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip74 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db45_oc4j.zip at /test/db/tech_st/10.2.0/
    Unzip74
    .end std out.
    .end err out.
    Unzip74 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db45_oc4j.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip76 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db34_jdk.zip at /test/db/tech_st/10.2.0/
    Unzip76
    .end std out.
    .end err out.
    Unzip76 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db34_jdk.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip79 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db78_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip79
    .end std out.
    .end err out.
    Unzip79 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db78_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip81 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db6_assistants.zip at /test/db/tech_st/10.2.0/
    Unzip81
    .end std out.
    .end err out.
    Unzip81 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db6_assistants.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip82 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db18_demo.zip at /test/db/tech_st/10.2.0/
    Unzip82
    .end std out.
    .end err out.
    Unzip82 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db18_demo.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip83 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db51_perl.zip at /test/db/tech_st/10.2.0/
    Unzip83
    .end std out.
    .end err out.
    Unzip83 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db51_perl.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip84 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db41_lib.zip at /test/db/tech_st/10.2.0/
    Unzip84
    .end std out.
    .end err out.
    Unzip84 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db41_lib.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip85 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db12_bin.zip at /test/db/tech_st/10.2.0/
    Unzip85
    .end std out.
    .end err out.
    Unzip85 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db12_bin.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip86 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db15_ctx.zip at /test/db/tech_st/10.2.0/
    Unzip86
    .end std out.
    .end err out.
    Unzip86 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db15_ctx.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip87 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db38_lib.zip at /test/db/tech_st/10.2.0/
    Unzip87
    .end std out.
    .end err out.
    Unzip87 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db38_lib.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip80 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db88_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip80
    .end std out.
    .end err out.
    Unzip80 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db88_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip77 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db46_oc4j.zip at /test/db/tech_st/10.2.0/
    Unzip77
    .end std out.
    .end err out.
    Unzip77 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db46_oc4j.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip75 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db17_demo.zip at /test/db/tech_st/10.2.0/
    Unzip75
    .end std out.
    .end err out.
    Unzip75 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db17_demo.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip89 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db43_lib.zip at /test/db/tech_st/10.2.0/
    Unzip88 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db82_.patch_storage.zip at /test/db/tech_st/10.2.0/
    Unzip90 - Start of native unzipping /prod/stage/oraDB/Disk3/dbts/stage/db5_assistants.zip at /test/db/tech_st/10.2.0/
    Unzip89
    .end std out.
    .end err out.
    Unzip89 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db43_lib.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..Unzip88
    .end std out.
    .end err out.
    Unzip88 - Completed native unzipping unzip -qn /prod/stage/oraDB/Disk3/dbts/stage/db82_.patch_storage.zip -d /test/db/tech_st/10.2.0/
    Thread exiting ..AutoConfig is exiting with status 0
    AutoConfig is exiting with status 0
    AutoConfig is exiting with status 0
    Pls check NO ERROR found

  • How To Install E-Business Suite Release 12.1.1 Media Pack On Windows Server

    Hi Every body,
    I am trying to install Oracle E-Business Suite Release 12.1.1 Media Pack on Windows Server
    and hope to find guidance and answers to some points
    1- which Windows Server Version would be better for this installation Windows Server 2003 or 2008?
    -- Currently I have Windows Server Enterprise Edition 2008 SP2 32-Bit Update (2010-12-15).
    2- Is it possible to run the installation on Windows 7?
    -- My knowledge is that Oracle certified Windows 7 as an EBS client machine (means IE8) and Oracle certifies Server systems to run Oracle server applications and Databases.
    and certifies desktop machines to run the client side applications So >>
    3- If I do not need the Oracle support over my EBS , then is that means that I am free to successfully install and run the EBS on my desired system? or what is the importance of Oracle systems certification any way ? 4- I need a step by step installation guide for the version you recommend ?. -- >(The MOST important Point)
    -- I am new to EBS world
    5- If I completed the installation successfully then would I be able to login to EBS from the same machine ?
    -- I am trying to install EBS on my Toshiba L500 Laptop which its resources is
    (Processor Core(TM) i3 M330 @ 2.13 GHz
    RAM 4 GB
    HD 320 GB). and I want this Installation for both functional and technical learning.
    I know guys this questions may cause headache to answer but I'd really appreciate your patience.

    1- which Windows Server Version would be better for this installation Windows Server 2003 or 2008?
    -- Currently I have Windows Server Enterprise Edition 2008 SP2 32-Bit Update (2010-12-15). The list of supported OS can be found in (Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.1.1) for Microsoft Windows Server (32-bit) [ID 761567.1]).
    2- Is it possible to run the installation on Windows 7?
    -- My knowledge is that Oracle certified Windows 7 as an EBS client machine (means IE8) and Oracle certifies Server systems to run Oracle server applications and Databases.
    and certifies desktop machines to run the client side applications So >> No -- Windows 7 is certified as a client tier only (Recommended Browsers for Oracle E-Business Suite Release 12 [ID 389422.1]).
    3- If I do not need the Oracle support over my EBS , then is that means that I am free to successfully install and run the EBS on my desired system? or what is the importance of Oracle systems certification any way ? Certification means running your application/database on a combination of OS/Hardware so whenever you have an issue, Oracle support will be able to help in troubleshooting -- You need to run your application on a certified OS.
    Current E-Business Suite Technology Stack Certifications
    http://blogs.oracle.com/stevenChan/certifications.html
    4- I need a step by step installation guide for the version you recommend ?. -- >(The MOST important Point)
    -- I am new to EBS world Install 12.1.1 as per the document referenced above. Also, refer to:
    Oracle Applications Installation Guide: Using Rapid Install
    http://download.oracle.com/docs/cd/B53825_03/current/acrobat/121oaig.pdf
    You can upgrade to 12.1.3 once you are done with 12.1.1 installation (12.1.3 cannot be installed from the beginning, and in order to have this release you need to install 12.1.1 first).
    Oracle E-Business Suite Release 12.1.3 Now Available
    http://blogs.oracle.com/stevenChan/2010/08/ebs_1213_available.html
    5- If I completed the installation successfully then would I be able to login to EBS from the same machine ?
    -- I am trying to install EBS on my Toshiba L500 Laptop which its resources is
    (Processor Core(TM) i3 M330 @ 2.13 GHz
    RAM 4 GB
    HD 320 GB). and I want this Installation for both functional and technical learning. You can access the application from the same machine as long as you are using a supported OS (please see the two docs referenced above for the supported OS and browsers). All Oracle Apps 12.1.1 documentation can be found at:
    Oracle Release 12.1 Documentation Library
    http://download.oracle.com/docs/cd/B53825_03/current/html/docset.html
    Thanks,
    Hussein

  • How to install 11gR2 on oel 5.4

    how to install 11gR2 on oel 5.4?is there any side effect for 11gR2 on OEL 5.4 with ASM?
    does oel 5.4 supports 11gR2 and ntfs mount?
    Edited by: ghost_rieder on Sep 26, 2009 1:11 PM

    The 11gR2 installation on OEL-5.4 is pretty simple and easy, although the OUI interface has been changed. No side effect with ASM, but installation procedure is something different (grid infrastructure) for a standalone installation (single database with ASM). Also, deinstallation of software is now performed via separate package 'deinstall' (not via OUI as before). There are 7 zip files downloadable from OTN:
    linux.x64_11gR2_database_1of2.zip
    linux.x64_11gR2_database_2of2.zip
    linux.x64_11gR2_grid.zip
    linux.x64_11gR2_client.zip
    linux.x64_11gR2_examples.zip
    linux.x64_11gR2_gateways.zip
    linux.x64_11gR2_deinstall.zip
    The first two are for database, the third is for grid infrastructure including ASM installation for single database. If you want a standalone installation with ASM, you must first install grid infrastructure software in its own oracle home (must be different from database home) and configure ASM and listener in that home. When ASM and listener are active and running in grid infrastructure home, install database software in database home and build the database via dbca in database home.
    NJ

  • Error installing 11gR2 on windows 8

    I downloaded oracle database 11gR2 software for windows X64 platform from OTN.  it contains two distinct zip files(file1 and file2).  the first file extracted but couldn't do the same for the second file. It keeps telling me zip file is empty. I decided to go along and install but after 40% (copying file), I got an error saying the file path was not found
    ' File not found C:\app\Chike\product\11.2.0\dbhome_2\owb\external\oc4j_applications\applications\WFMGRApp'
    pls I need possible solutions to solve this.
    thanks Guys

    First, Win 8 is not a certified OS to install 11gR2 - Oracle Database Preinstallation Requirements
    Which version of Win 8 ? If you have Pro or Enterprise, you will have to install 12c - Oracle Database Preinstallation Tasks
    Home versions of Windows are not certified for any Oracle installs.
    You will need to download both zip files, then unzip both into a single directory before running setup.exe. Your unzip issue indicates that the second zip file is corrupted.
    HTH
    Srini

  • Install 9iDS release 2

    Hello,
    After the install of 9iAS release 2 successfully on Win2k, I would like to install 9iDS Release 2 in order to get Discoverer administator. But, I get this error in the error logs : "java.util.zip.zipexception : invalid entry CRC". Theses errors come when I got with the OUI : "error writing to file D:\...".
    Could someone help me, cause I've spent so many time with this install.
    Thank you.
    Emmanuel Puisais.

    Marco ,
    I got the same problem what u got few days back .But i changed the installation path of Oracle9i DSuite to a different path other than the Oracle Home path. The installation of Developer suite installed successfully. I could open the 9i forms but only the thing is i am getting a error 0ra-12560: TNS protocol adapter error. I have to check out why the error is throwing. The same error is present when i want to Import an dmp file. I am able to connect to the database using System/manager.
    Anyone any help in this matter.

  • I have install 11gR2 on my laptop getting error

    I have install 11gR2 on my laptop with window 7 4gb ram 500gb hard drive
    I getting this error
    ORA-01503: CREATE Controlfile / Failed
    and
    ORA-01158: Database already mounted
    i need to set up a database a 3 different schema
    because i am doing a install of Hyperion Share service, Essbase and Planning
    this is the first install on my laptop !!!!!!!!!!!!!
    can I get the detail process on setting up an Database and schema
    Please advise

    You have already asked the same question but never replied - 11gR2 Error when installing a database essbase on install of 11.1.2.1
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Got the example schema scott when installing 11gR2 via response files

    Hi everybody,
    I installed 11gR2 on Solaris 10 x86-64 into a zone for testing purpose only and used the following variable:
    # This variable controls whether to load Example Schemas onto the starter
    # database or not.
    oracle.install.db.config.starterdb.installExampleSchemas=false
    It works pretty good but still got the scott schema an all his tables.
    So please could someone give me a tip what goes wrong and how to avoid installing this schema onto the database.
    Thanx in advance
    Michael
    Edited by: Michael on 18.02.2011 16:20

    Holy moly,
    so could you please be so kind and tell me whats the right thread is?
    Michael
    Edited by: Michael on 22.02.2011 11:37

  • Install 11gr2 grid question

    Hi I will be installing 11gr2 on rhel6 and have a question.
    Since I need to install the gird infrastructure for before the rdbms and the grid infrastructure will be installed using the user grid as opposed to the oracle user id I am wanting to know if I need to configured multiple Oracle_base directories?
    I usually would just create /u01/app/oracle and set that as the oracle_base. Can I use that for grid(infrastructure) and oracle (rdbms) for both installations. I have read the install guides and unfortunately it is still unclear to me. I am planning to install rac database.
    Thanks for any hekp it is greatly appreciated.

    In 11gr2, Grid infrastructure software contains both clusterware and ASM.
    Prior to 11g, we used to have 3 ORACLE_HOMES one for cluster, ASM and rdbms.
    For eg:
    In 11g r2, Your RAC binaries set up could be like this:
    Grid Infrastructure Software (Clusterware + ASM 11.2.0.1):
    Server: on all RAC nodes
    ORACLE_BASE: /u01/app/grid
    ORACLE_HOME: /u01/app/grid112
    Owner: grid (Primary Group: oinstall, Secondary Group: asmadmin, asmdba)
    Oracle Database Software (RAC 11.2.0.1):
    Server: on all RAC nodes
    ORACLE_BASE: /u01/app/oracle
    ORACLE_HOME: /u01/app/oracle/db112
    Owner: oracle (Primary Group: oinstall, Secondary Group: dba)

  • Installing 11gR2 Grid Infrastructure on SPARC Solaris 10

    Please help! I am following the RACGuides_Rac11gR2OnSolaris.pdf to install 11gR2 Grid Infrastructure on SPARC Solaris 10 MU8.
    bash-3.00# cat /etc/release
    Solaris 10 10/09 s10s_u8wos_08a SPARC
    Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.
    Use is subject to license terms.
    Assembled 16 September 2009
    1. I installed Oracle Solaris Studio 12.2, ignored 124861-15 per doc ID 969497.1.
    Installation went well, but root.sh gave on node1...
    CRS-2676: Start of 'ora.evmd' on 'sunt2k-02' succeeded
    CRS-2672: Attempting to start 'ora.asm' on 'sunt2k-02'
    CRS-2676: Start of 'ora.asm' on 'sunt2k-02' succeeded
    CRS-2672: Attempting to start 'ora.DATA.dg' on 'sunt2k-02'
    CRS-2676: Start of 'ora.DATA.dg' on 'sunt2k-02' succeeded
    u01/11.2.0/grid/bin/srvctl start nodeapps -n sunt2k-02 ... failed
    Configure Oracle Grid Infrastructure for a Cluster ... failed
    2. Per doc ID 1053192.1, I rerun the following....
    bash-3.00# /u01/11.2.0/grid/bin/srvctl start nodeapps -n sunt2k-02
    PRKO-2421 : Network resource is already started on node(s): sunt2k-02
    PRCR-1079 : Failed to start resource ora.sunt2k-02.vip
    CRS-5005: IP Address: 10.112.0.150 is already in use in the network
    CRS-2674: Start of 'ora.sunt2k-02.vip' on 'sunt2k-02' failed
    CRS-2632: There are no more servers to try to place resource 'ora.sunt2k-02.vip' on that would satisfy its placement policy
    PRKO-2422 : ONS is already started on node(s): sunt2k-02
    PRKO-2423 : eONS is already started on node(s): sunt2k-02
    same problem on node2....
    CRS-2676: Start of 'ora.crsd' on 'sunt2k-03' succeeded
    CRS-2672: Attempting to start 'ora.evmd' on 'sunt2k-03'
    CRS-2676: Start of 'ora.evmd' on 'sunt2k-03' succeeded
    /u01/11.2.0/grid/bin/srvctl start nodeapps -n sunt2k-03 ... failed
    Configure Oracle Grid Infrastructure for a Cluster ... failed
    3. Per doc ID 1053192.1, I rerun the following on node2.....
    bash-3.00# /u01/11.2.0/grid/bin/srvctl start nodeapps -n sunt2k-03
    PRKO-2421 : Network resource is already started on node(s): sunt2k-03
    PRCR-1079 : Failed to start resource ora.sunt2k-03.vip
    CRS-5005: IP Address: 10.112.0.152 is already in use in the network
    CRS-2674: Start of 'ora.sunt2k-03.vip' on 'sunt2k-03' failed
    CRS-5005: IP Address: 10.112.0.152 is already in use in the network
    CRS-2674: Start of 'ora.sunt2k-03.vip' on 'sunt2k-02' failed
    CRS-2632: There are no more servers to try to place resource 'ora.sunt2k-03.vip' on that would satisfy its placement policy
    PRKO-2422 : ONS is already started on node(s): sunt2k-03
    PRKO-2423 : eONS is already started on node(s): sunt2k-03
    4. Now I got stuck here that can not bring up CRS....this is the last step from installing Grid Infrastructure.
    bash-3.00# cat installActions2010-10-26_09-10-36PM.log
    INFO: Checking user equivalence...
    INFO: User equivalence check passed for user "grid"
    INFO: ERROR:
    INFO: CRS is not installed on any of the nodes
    INFO: Verification cannot proceed
    INFO: Post-check for cluster services setup was unsuccessful on all the nodes.
    INFO:
    WARNING:
    INFO: Completed Plugin named: Oracle Cluster Verification Utility
    INFO: Oracle Cluster Verification Utility failed.
    INFO: Oracle Cluster Verification Utility failed.
    INFO: ConfigClient.executeSelectedToolsInAggregate action performed
    INFO: Exiting ConfigClient.executeSelectedToolsInAggregate method
    INFO:
    The Runconfig command constructed is /u01/11.2.0/grid/oui/bin/runConfig.sh ORACLE_HOME=/u01/11.2.0/grid MODE=perform ACTION=configure RERUN=false $*
    INFO: Since the option is to overwrite the existing /u01/11.2.0/grid/cfgtoollogs/configToolFailedCommands file, backing it up
    INFO: The backed up file name is /u01/11.2.0/grid/cfgtoollogs/configToolFailedCommands.bak.2
    INFO: ConfigClient.saveSession method called
    INFO: Calling event ConfigSessionEnding
    INFO: ConfigClient.endSession method called
    INFO: Completed Configuration
    bash-3.00#
    Any advise would be appreciated.
    Thanks much in advance...
    R-

    Hi,
    it looks like the VIPs you used are already taken in your network or the name resolution on the VIP name does not return the correct IP address for the VIP, hence the problems.
    Sebastian

  • Configuration Failed after Installing 11gR2 Forms and Reports.

    Hi all Gurus,
    I have installed following successfully:
    1. Weblogic Server 10.3.6.
    2. JDK 7 64-bit.
    3. Oracle Database 11gr2 64-bit.
    4. Windows Server 2008 Ent 64-bit.
    When I install 11gr2 Forms and Reports, it installed successfully,
    after that I click “Configure”, then it open another window as “Configuration Progress”, which shows following modules to be configure:
    Creating Domain
    Creating Managed Server: WLS_FORMS
    Creating Managed Server: WLS_REPORTS
    Deploying Enterprise Manager
    Restarting ApplicationServer
    etc.
    At very first “*Creating Domain*”, it shows “*Failed*", same with other modules
    There is also no space or () in “Path Enviromental System Variable”.
    Pl guide me !
    Thanks in advance.
    Edited by: Sukhvinder on Nov 29, 2012 7:53 PM

    I don't fully understand your reply. If you do not understand how to identify whether or not the machine where you are installing the product uses a static IP or not, please consult with your Network or System admin if you have one. In short, your Windows 2008 machine cannot use DHCP for obtaining its address, regardless of what the resulting address is.
    As far as new failures, this is likely the result of you not completely cleaning up the earlier failed attempts. Before attempting to run the installation again, uninstall and delete all previous attempts. This means:
    1. Uninstall FMw. Depending on how far the installation ran, you may find a Windows shortcut to launch the installer. If not, just delete the directories.
    2. Uninstall WLS. This can be done from the "Programs and Features" panel on the Windows Control Panel.
    3. After uninstalling the products, do one last scan of the file system to ensure that you have removed all related directories. Be sure to also delete C:\bea as it belongs to the WLS installation.
    Once you have fully removed the installations, reboot the machine before attempting to reinstall.
    Once the machine has been rebooted and you have logged in, ensure that you have accomplished the following before retrying:
    1. You are a Windows user with "Administrator" permissions
    2. The machine is not configured to use DHCP
    3. The system PATH and CLASSPATH do not include parentheses symbols (e.g. (x86)) - I mentioned this earlier.
    4. Ensure that you have reviewed the Sys Requirements doc and comply with its recommendations:
    <blockquote>http://www.oracle.com/technetwork/middleware/ias/downloads/fusion-requirements-100147.html</blockquote>
    5. Read the Installation Guide:
    <blockquote>http://docs.oracle.com/cd/E24269_01/doc.11120/e23960/toc.htm</blockquote>
    Specifically, be sure to review the Troubleshooting section.
    If after following these instructions you cannot install the product, I would recommend that you contact Oracle Support

  • Remote Blob Storage Install - APPCOMPAT: no matching ProductCode found in database.

    I am trying to install Remote Blob Storage in Sharepoint Server 2013 with SQL Server 2008 R2 Express, but it is not creating the table in the database.
    Here is my script
    msiexec /qn /lvx* rbs_install_log.txt /i RBS.msi TRUSTSERVERCERTIFICATE=true FILEGROUP=PRIMARY DBNAME="WSS_Content_Blob_001" DBINSTANCE="SHAREPOINT" FILESTREAMFILEGROUP=RBSFilestreamProvider FILESTREAMSTORENAME=FilestreamProvider_1
    Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    APPCOMPAT: looking for appcompat database entry with ProductCode '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}
    My SQL server version is 10.50.6000.34
    In the log file I found the following lines in the bottom of the file, but the table is not in the content database.
    Product: SQL Server 2008 R2 Remote Blob Store -- Configuration completed successfully.
    I am struggling with this issue for long.  It would be great if someone could help.
    === Verbose logging started: 3/4/2015 15:27:16 Build type: SHIP UNICODE 5.00.7601.00 Calling process: C:\Windows\system32\msiexec.exe ===
    MSI (c) (E4:A4) [15:27:16:166]: Resetting cached policy values
    MSI (c) (E4:A4) [15:27:16:166]: Machine policy value 'Debug' is 0
    MSI (c) (E4:A4) [15:27:16:166]: ******* RunEngine:
    ******* Product: RBS.msi
    ******* Action:
    ******* CommandLine: **********
    MSI (c) (E4:A4) [15:27:16:166]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (E4:A4) [15:27:16:166]: Grabbed execution mutex.
    MSI (c) (E4:A4) [15:27:16:182]: Cloaking enabled.
    MSI (c) (E4:A4) [15:27:16:182]: Attempting to enable all disabled privileges before calling Install on Server
    MSI (c) (E4:A4) [15:27:16:182]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (00:94) [15:27:16:182]: Running installation inside multi-package transaction D:\RBS.msi
    MSI (s) (00:94) [15:27:16:182]: Grabbed execution mutex.
    MSI (s) (00:54) [15:27:16:182]: Resetting cached policy values
    MSI (s) (00:54) [15:27:16:182]: Machine policy value 'Debug' is 0
    MSI (s) (00:54) [15:27:16:182]: ******* RunEngine:
    ******* Product: D:\RBS.msi
    ******* Action:
    ******* CommandLine: **********
    MSI (s) (00:54) [15:27:16:197]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (00:54) [15:27:16:197]: Setting cached product context: User non-assigned for product: FB42F99F09B0E3646985F32DFE3C9C29
    MSI (s) (00:54) [15:27:16:197]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:197]: SRSetRestorePoint skipped for this transaction.
    MSI (s) (00:54) [15:27:16:197]: End dialog not enabled
    MSI (s) (00:54) [15:27:16:197]: Original package ==> D:\RBS.msi
    MSI (s) (00:54) [15:27:16:197]: Package we're running from ==> C:\Windows\Installer\6847f.msi
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: APPCOMPAT: Uninstall Flags override found.
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: APPCOMPAT: Uninstall VersionNT override found.
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: APPCOMPAT: Uninstall ServicePackLevel override found.
    MSI (s) (00:54) [15:27:16:213]: APPCOMPAT: looking for appcompat database entry with ProductCode '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}'.
    MSI (s) (00:54) [15:27:16:213]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: MSCOREE not loaded loading copy from system32
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Machine policy value 'DisablePatch' is 0
    MSI (s) (00:54) [15:27:16:213]: Machine policy value 'AllowLockdownPatch' is 0
    MSI (s) (00:54) [15:27:16:213]: Machine policy value 'DisableLUAPatching' is 0
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Machine policy value 'DisableFlyWeightPatching' is 0
    MSI (s) (00:54) [15:27:16:213]: Enabling baseline caching for this transaction since all active patches are MSI 3.0 style MSPs or at least one MSI 3.0 minor update patch is active
    MSI (s) (00:54) [15:27:16:213]: APPCOMPAT: looking for appcompat database entry with ProductCode '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}'.
    MSI (s) (00:54) [15:27:16:213]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (00:54) [15:27:16:213]: Transforms are not secure.
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'D:\rbs_install_log.txt'.
    MSI (s) (00:54) [15:27:16:213]: Command Line: TRUSTSERVERCERTIFICATE=true FILEGROUP=PRIMARY DBNAME=WSS_Content_Blob_001 DBINSTANCE=SHAREPOINT FILESTREAMFILEGROUP=RBSFilestreamProvider FILESTREAMSTORENAME=FilestreamProvider_1 CURRENTDIRECTORY=D:\ CLIENTUILEVEL=3 CLIENTPROCESSID=10980
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{1AC68E73-94F1-4A01-B229-82B2F73C3326}'.
    MSI (s) (00:54) [15:27:16:213]: Product Code passed to Engine.Initialize: '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}'
    MSI (s) (00:54) [15:27:16:213]: Product Code from property table before transforms: '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}'
    MSI (s) (00:54) [15:27:16:213]: Product Code from property table after transforms: '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}'
    MSI (s) (00:54) [15:27:16:213]: Product registered: entering maintenance mode
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Determined that existing product (either this product or the product being upgraded with a patch) is installed per-machine.
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Product {56D21E05-679B-40F2-94C1-DB0D7EB2E461} is admin assigned: LocalSystem owns the publish key.
    MSI (s) (00:54) [15:27:16:213]: Product {56D21E05-679B-40F2-94C1-DB0D7EB2E461} is managed.
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: MSI_LUA: Credential prompt not required, user is an admin
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Adding ProductState property. Its value is '5'.
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'.
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 3: 2
    MSI (s) (00:54) [15:27:16:213]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Specifed source is already in a list.
    MSI (s) (00:54) [15:27:16:213]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (00:54) [15:27:16:213]: Machine policy value 'DisableBrowse' is 0
    MSI (s) (00:54) [15:27:16:213]: Machine policy value 'AllowLockdownBrowse' is 0
    MSI (s) (00:54) [15:27:16:213]: Adding new sources is allowed.
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Package name retrieved from configuration data: 'RBS.msi'
    MSI (s) (00:54) [15:27:16:213]: Note: 1: 2262 2: AdminProperties 3: -2147287038
    MSI (s) (00:54) [15:27:16:213]: Machine policy value 'DisableMsi' is 1
    MSI (s) (00:54) [15:27:16:213]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (00:54) [15:27:16:213]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (00:54) [15:27:16:213]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (00:54) [15:27:16:213]: Product {56D21E05-679B-40F2-94C1-DB0D7EB2E461} is admin assigned: LocalSystem owns the publish key.
    MSI (s) (00:54) [15:27:16:213]: Product {56D21E05-679B-40F2-94C1-DB0D7EB2E461} is managed.
    MSI (s) (00:54) [15:27:16:213]: Running product '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}' with elevated privileges: Product is assigned.
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Adding TRUSTSERVERCERTIFICATE property. Its value is 'true'.
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Modifying FILEGROUP property. Its current value is 'default'. Its new value: 'PRIMARY'.
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Adding DBNAME property. Its value is 'WSS_Content_Blob_001'.
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Adding DBINSTANCE property. Its value is 'SHAREPOINT'.
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Modifying FILESTREAMFILEGROUP property. Its current value is 'default'. Its new value: 'RBSFilestreamProvider'.
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Adding FILESTREAMSTORENAME property. Its value is 'FilestreamProvider_1'.
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'D:\'.
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '10980'.
    MSI (s) (00:54) [15:27:16:213]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is 'f13e91ecbfc5d34cae7163e948e320cc'.
    MSI (s) (00:54) [15:27:16:213]: RESTART MANAGER: Session opened.
    MSI (s) (00:54) [15:27:16:213]: TRANSFORMS property is now:
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Adding PRODUCTLANGUAGE property. Its value is '1033'.
    MSI (s) (00:54) [15:27:16:213]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '300'.
    MSI (s) (00:54) [15:27:16:213]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\AppData\Roaming
    MSI (s) (00:54) [15:27:16:213]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\Favorites
    MSI (s) (00:54) [15:27:16:229]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\Network Shortcuts
    MSI (s) (00:54) [15:27:16:229]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\Documents
    MSI (s) (00:54) [15:27:16:229]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
    MSI (s) (00:54) [15:27:16:229]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\Recent
    MSI (s) (00:54) [15:27:16:229]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\SendTo
    MSI (s) (00:54) [15:27:16:229]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\Templates
    MSI (s) (00:54) [15:27:16:229]: SHELL32::SHGetFolderPath returned: C:\ProgramData
    MSI (s) (00:54) [15:27:16:229]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\AppData\Local
    MSI (s) (00:54) [15:27:16:229]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\Pictures
    MSI (s) (00:54) [15:27:16:229]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (00:54) [15:27:16:229]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (00:54) [15:27:16:229]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
    MSI (s) (00:54) [15:27:16:229]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
    MSI (s) (00:54) [15:27:16:229]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
    MSI (s) (00:54) [15:27:16:244]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (00:54) [15:27:16:244]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (00:54) [15:27:16:244]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
    MSI (s) (00:54) [15:27:16:244]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\Start Menu
    MSI (s) (00:54) [15:27:16:244]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\Desktop
    MSI (s) (00:54) [15:27:16:244]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates
    MSI (s) (00:54) [15:27:16:244]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
    Property(S): PhysicalMemory = 8192
    Property(S): VirtualMemory = 7158
    Property(S): AdminUser = 1
    Property(S): MsiTrueAdminUser = 1
    Property(S): LogonUser = medsvradmin
    Property(S): UserSID = S-1-5-21-300911508-3398273753-3262312657-1000
    Property(S): UserLanguageID = 1033
    Property(S): ComputerName = JPNTKYINT01
    Property(S): SystemLanguageID = 1033
    Property(S): ScreenX = 1024
    Property(S): ScreenY = 768
    Property(S): CaptionHeight = 19
    Property(S): BorderTop = 1
    Property(S): BorderSide = 1
    Property(S): TextHeight = 16
    Property(S): TextInternalLeading = 3
    Property(S): ColorBits = 32
    Property(S): TTCSupport = 1
    Property(S): Time = 15:27:21
    Property(S): Date = 3/4/2015
    Property(S): MsiNetAssemblySupport = 4.0.30319.34209
    Property(S): MsiWin32AssemblySupport = 6.1.7601.17514
    Property(S): RedirectedDllSupport = 2
    Property(S): MsiRunningElevated = 1
    Property(S): DATABASE = C:\Windows\Installer\6847f.msi
    Property(S): OriginalDatabase = D:\RBS.msi
    Property(S): UILevel = 2
    Property(S): ACTION = INSTALL
    Property(S): ROOTDRIVE = D:\
    Property(S): CostingComplete = 1
    Property(S): OutOfDiskSpace = 0
    Property(S): OutOfNoRbDiskSpace = 0
    Property(S): PrimaryVolumeSpaceAvailable = 0
    Property(S): PrimaryVolumeSpaceRequired = 0
    Property(S): PrimaryVolumeSpaceRemaining = 0
    Property(S): DOTNETCOREPATH = 1
    Property(S): SourcedirProduct = {56D21E05-679B-40F2-94C1-DB0D7EB2E461}
    Property(S): SOURCEDIR = D:\
    MSI (s) (00:54) [15:27:21:049]: Note: 1: 1728
    MSI (s) (00:54) [15:27:21:049]: Product: SQL Server 2008 R2 Remote Blob Store -- Configuration completed successfully.
    MSI (s) (00:54) [15:27:21:049]: Windows Installer reconfigured the product. Product Name: SQL Server 2008 R2 Remote Blob Store. Product Version: 10.50.1600.1. Product Language: 1033. Manufacturer: Microsoft Corporation. Reconfiguration success or error status: 0.
    MSI (s) (00:54) [15:27:21:049]: Deferring clean up of packages/files, if any exist
    MSI (s) (00:54) [15:27:21:049]: MainEngineThread is returning 0
    MSI (s) (00:94) [15:27:21:049]: RESTART MANAGER: Session closed.
    MSI (s) (00:94) [15:27:21:049]: No System Restore sequence number for this installation.
    === Logging stopped: 3/4/2015 15:27:21 ===
    MSI (s) (00:94) [15:27:21:049]: User policy value 'DisableRollback' is 0
    MSI (s) (00:94) [15:27:21:049]: Machine policy value 'DisableRollback' is 0
    MSI (s) (00:94) [15:27:21:049]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (00:94) [15:27:21:049]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (00:94) [15:27:21:049]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (00:94) [15:27:21:049]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
    MSI (s) (00:94) [15:27:21:049]: Restoring environment variables
    MSI (s) (00:94) [15:27:21:049]: Destroying RemoteAPI object.
    MSI (s) (00:A8) [15:27:21:049]: Custom Action Manager thread ending.
    MSI (c) (E4:A4) [15:27:21:049]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
    MSI (c) (E4:A4) [15:27:21:049]: MainEngineThread is returning 0
    === Verbose logging stopped: 3/4/2015 15:27:21 ===

    Hi stecorp75,
    To troubleshoot above error, please make sure the following things.
    1. Use the RBS.msi file on this link http://www.microsoft.com/download/en/details.aspx?id=16978.
    Do not download the rbs_x64 link given in TechNet article
    https://technet.microsoft.com/en-us/library/ee748631.aspx .
    2. Ensure that you run command prompt as administrator and then run your commands for RBS installation.
    3. Follow the steps in this similar
    blog to install RBS on SharePoint 2013.
    However, if you still fail to install Remote Blob Storage, I would like to recommend you post the question in the SharePoint 2013 forum at
    https://social.technet.microsoft.com/Forums/en-US/home?forum=sharepointadmin . It is appropriate and more experts will assist you.
    There is a similar thread for your reference.
    https://social.technet.microsoft.com/Forums/en-US/23a410bd-9afe-438d-abcb-44363847802a/product-sql-remote-blob-storage-installation-failed
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

Maybe you are looking for