Installing GI 11gR2 11.2.0.3 on RHEL5U6

Hi,
Would like to find out if anyone has successfully implemented GI 11gR2 11.2.0.3 on RHEL5U6 with SAN storage? My team is trying to install this and we are encountering issues.
Would like to know, what's your configuration like for udev rules.d, multipath.conf or other files which you had to configure? Do you use "dm-xx" or the WWID?
We have tried using WWID and successfully installed GI. However, after we rebooted the servers, the ASM crashed.
Thanks in advance!

Hello,
I recently install Grid Infrastructure 11.2.0.2 on RHEL5U5. Ihad it working with multipath. Since the SAN was an EMC I opted to use powerpath out of preference afterwards.
As long as you have your partitions created then you should have no problem creating you ASM disks. Please follow the Support Note: [ID 602952.1].
When using mirroring, make sure change the scan order of the devices and opt to leave out any sd. In your case you would put "mpath dm" instead of "emcpower"
In otherwords:
[root@ oraprdrmn1]# vi /etc/sysconfig/oracleasm
  ORACLEASM_SCANORDER="emcpower"
        ORACLEASM_SCANEXCLUDE="sd"Jan

Similar Messages

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

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

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

  • Install Oracle 11gr2 on Windows 2008 R2 with ASM step by step Guide needed

    Hi,
    I am looking for a step by step guide on installing Oracle 11gr2 on Windows 2008 R2 with ASM etc. This is not a RAC environment since ASM architecture is a bit different in 11gR2, I would appreciate if anyone can point me to a guide to follow or provide a one.
    Thanks in advance.
    Sujith

    Hi Sujith;
    I am looking for a step by step guide on installing Oracle 11gr2 on Windows 2008 R2 with ASM etc. This is not a RAC environment since ASM architecture is a bit different in 11gR2, I would appreciate if anyone can point me to a guide to follow or provide a one.You need to install grid first(Software only) its neccessary for ASM, Than you need to use asmca to create asm disks than you need to install 11gr2
    All doc avaliable at:
    http://www.oracle.com/pls/db112/homepage
    Regard
    Helios

  • How to install Oracle 11gR2 on Windows 7

    Hi friend;
    There are many questions about *"how we can make instalaltion on win7"*. Thatswhy i made one video tutorial which is mention *"How to install Oracle 11gR2 on Windows 7*
    Its avaliable at my blog:
    *http://heliosguneserol.wordpress.com/*
    Hope it helps who need to make this installation
    Regard
    Helios

    This question is not related to the Database Migration Assistant for Unicode (DMU). Please, post your question to one of the more appropriate forums, for example:
    General Database Discussions
    Database Installation
    -- Sergiusz

  • Getting Problem installing Oracle 11gR2 on Windows 7 x64

    Hello everyone,
    beforhand thank you for helping a rookie. :-)
    I getting an error message that my installation path contains empty spaces. C:\Program Files\....
    In previous Releases of Oracle you could cancel these error message. Not in 11gR2.
    Does anyone know a solution to install Oracle 11gR2 Client in the Windows Program Files (x86) / Program Files folder?
    I modified the *.rsp File line "Complete path of the Oracle Home" with double quotes like in the previous Versions.
    tried the environment variable "%...%" and also the DOS writing style "PROGRA~2".
    Oracle takes over the complete notation.
    Iam Working on a Windows 7 64 Bit Machine with an english Kernel.
    Have to install: Oracle Client 11gR2 64 bit
    Thank you in advance.
    Best regards

    Was there ever any thoughts on this issue? I'm using Oracle 11G R1 and it lets me cancel past errors saying I can't install to c:\program files\oracle because it has spaces and the programs I use also work perfectly fine.
    Now, we're using Win 7, thus want to use Oracle 11G R2 so it won't fail OS checks and why not use the newest, right? Well, as stated here, you cannot cancel past "space" error any longer. I was going to try %programfiles% but it appears that that won't work; LAME!
    Also, the runtime install for R2 says it's going to be 200MB more than the runtime install for R1, why would that be the case? That's a LOT more!
    Thanks, Nick

  • Installing Oracle 11gR2 RAC issue

    I am installing Oracle 11gR2(11.2.0.3) RAC on RHEL 5.6. I am facing "TCP connectivity check failed" on my precheck using CVU
    Interface information for node "hublpr4"
    Name   IP Address      Subnet          Gateway         Def. Gateway    HW Address        MTU
    eth0   172.16.34.71    172.16.32.0     0.0.0.0         172.16.32.4     00:17:A4:77:08:10 1500
    eth1   192.168.10.3    192.168.10.0    0.0.0.0         172.16.32.4     00:17:A4:77:08:12 1500
    Interface information for node "hublpr3"
    Name   IP Address      Subnet          Gateway         Def. Gateway    HW Address        MTU
    eth0   172.16.34.69    172.16.32.0     0.0.0.0         172.16.32.4     00:17:A4:77:0C:30 1500
    eth1   192.168.10.2    192.168.10.0    0.0.0.0         172.16.32.4     00:17:A4:77:0C:32 1500
    Check: Node connectivity of subnet "172.16.32.0"
      Source                          Destination                     Connected?
      hublpr4[172.16.34.71]           hublpr3[172.16.34.69]           yes
    Result: Node connectivity passed for subnet "172.16.32.0" with node(s) hublpr4,hublpr3
    Check: TCP connectivity of subnet "172.16.32.0"
      Source                          Destination                     Connected?
      hublpr3:172.16.34.69            hublpr4:172.16.34.71            failed
    ERROR:
    PRVF-7617 : Node connectivity between "hublpr3 : 172.16.34.69" and "hublpr4 : 172.16.34.71" failed
    Result: TCP connectivity check failed for subnet "172.16.32.0"
    Check: Node connectivity of subnet "192.168.10.0"
      Source                          Destination                     Connected?
      hublpr4[192.168.10.3]           hublpr3[192.168.10.2]           yes
    Result: Node connectivity passed for subnet "192.168.10.0" with node(s) hublpr4,hublpr3
    Check: TCP connectivity of subnet "192.168.10.0"
      Source                          Destination                     Connected?
      hublpr3:192.168.10.2            hublpr4:192.168.10.3            failed
    ERROR:
    PRVF-7617 : Node connectivity between "hublpr3 : 192.168.10.2" and "hublpr4 : 192.168.10.3" failed
    Result: TCP connectivity check failed for subnet "192.168.10.0"
    Interfaces found on subnet "172.16.32.0" that are likely candidates for VIP are:
    hublpr4 eth0:172.16.34.71
    hublpr3 eth0:172.16.34.69
    WARNING:
    Could not find a suitable set of interfaces for the private interconnect
    Checking subnet mask consistency...
    Subnet mask consistency check passed for subnet "172.16.32.0".
    Subnet mask consistency check passed for subnet "192.168.10.0".
    Subnet mask consistency check passed.
    Result: Node connectivity check failed
    Checking multicast communication...
    Checking subnet "172.16.32.0" for multicast communication with multicast group "230.0.1.0"...
    PRVG-11134 : Interface "172.16.34.71" on node "hublpr4" is not able to communicate with interface "172.16.34.71" on node "hublpr4"
    PRVG-11134 : Interface "172.16.34.71" on node "hublpr4" is not able to communicate with interface "172.16.34.69" on node "hublpr3"
    PRVG-11134 : Interface "172.16.34.69" on node "hublpr3" is not able to communicate with interface "172.16.34.71" on node "hublpr4"
    PRVG-11134 : Interface "172.16.34.69" on node "hublpr3" is not able to communicate with interface "172.16.34.69" on node "hublpr3"
    Checking subnet "172.16.32.0" for multicast communication with multicast group "224.0.0.251"...
    PRVG-11134 : Interface "172.16.34.71" on node "hublpr4" is not able to communicate with interface "172.16.34.71" on node "hublpr4"
    PRVG-11134 : Interface "172.16.34.71" on node "hublpr4" is not able to communicate with interface "172.16.34.69" on node "hublpr3"
    PRVG-11134 : Interface "172.16.34.69" on node "hublpr3" is not able to communicate with interface "172.16.34.71" on node "hublpr4"
    PRVG-11134 : Interface "172.16.34.69" on node "hublpr3" is not able to communicate with interface "172.16.34.69" on node "hublpr3"
    Checking subnet "192.168.10.0" for multicast communication with multicast group "230.0.1.0"...
    PRVG-11134 : Interface "192.168.10.3" on node "hublpr4" is not able to communicate with interface "192.168.10.3" on node "hublpr4"
    PRVG-11134 : Interface "192.168.10.3" on node "hublpr4" is not able to communicate with interface "192.168.10.2" on node "hublpr3"
    PRVG-11134 : Interface "192.168.10.2" on node "hublpr3" is not able to communicate with interface "192.168.10.3" on node "hublpr4"
    PRVG-11134 : Interface "192.168.10.2" on node "hublpr3" is not able to communicate with interface "192.168.10.2" on node "hublpr3"
    Checking subnet "192.168.10.0" for multicast communication with multicast group "224.0.0.251"...
    PRVG-11134 : Interface "192.168.10.3" on node "hublpr4" is not able to communicate with interface "192.168.10.3" on node "hublpr4"
    PRVG-11134 : Interface "192.168.10.3" on node "hublpr4" is not able to communicate with interface "192.168.10.2" on node "hublpr3"
    PRVG-11134 : Interface "192.168.10.2" on node "hublpr3" is not able to communicate with interface "192.168.10.3" on node "hublpr4"
    PRVG-11134 : Interface "192.168.10.2" on node "hublpr3" is not able to communicate with interface "192.168.10.2" on node "hublpr3"

    Try following metalink note for sorting out multicast issues.
    Oracle Grid Infrastructure 11.2.0.2 Installation or Upgrade may fail due to Multicasting Requirement [ID 1212703.1]

  • ASM configureation while installing oracle 11gR2 db

    hi all,
    I want to install oracle 11gr2 with ASM on windows 7.
    can any one tell me how to install step by step?
    Thanks and Regards,
    Vikash (junior DBA)

    This question is not related to the Database Migration Assistant for Unicode (DMU). Please, post your question to one of the more appropriate forums, for example:
    General Database Discussions
    Database Installation
    -- Sergiusz

  • Installing Oracle 11gR2 client from a batch file and it returns before done

    Hello,
    While installing Oracle 11gR2 client on XP and 7 from a batch file. When it launches the OUI from the batch file, it returns to the batch file before the installer finishes. So, there is no way for my script to know when the installer is done, or to glean a return code to test for success. This is particularly annoying...
    I've also used the "call" command to force my batch file to wait, to no avail. Anyone have any clues about this one?
    Thanks in advance!
    --Robert                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Srini,
    Awesome! Worked like a charm.
    Many thanks!
    --Robert                                                                                                                                                                                               

  • Can I install oracle 11gR2 on windows AD server?

    I have a windows 2008 sever which has AD installed, can I install oracle 11gR2 on it?

    If by AD you mean Active Directory, then it should not be an issue, as long as you meet minimum requirements - http://download.oracle.com/docs/cd/E11882_01/install.112/e10843/reqs.htm#i1011417
    HTH
    Srini

  • NTP(Network Time Protocol) Error whil installing Oracle 11gR2 RAC

    Dear Friends,
    I have installed oracle 11gr2 clusterware software in two node RAC. While i run the CLUVFY.SH, It shows error in NTP configuration.
    1)I add "-x" parameter in "/etc/sysconfig/ntp" configuration file. and start the ntpd service and run the cluvfy.sh . then i got the below error.
    Check: CTSS state
    Node Name State
    rac2 Observer
    rac1 Observer
    CTSS is in Observer state. Switching over to clock synchronization checks using NTP
    Starting Clock synchronization checks using Network Time Protocol(NTP)...
    NTP Configuration file check started...
    The NTP configuration file "/etc/ntp.conf" is available on all nodes
    NTP Configuration file check passed
    Checking daemon liveness...
    Check: Liveness for "ntpd"
    Node Name Running?
    rac2 no
    rac1 no
    Result: Liveness check failed for "ntpd"
    PRVF-5415 : Check to see if NTP daemon is running failed
    Result: Clock synchronization check using Network Time Protocol(NTP) failed
    PRVF-9652 : Cluster Time Synchronization Services check failed
    Post-check for cluster services setup was unsuccessful on all the nodes.
    =============================================================================================
    2)Down the ntpd service in both nodes and run the CLUVFY.SH.
    Check: CTSS state
    Node Name State
    rac2 Observer
    rac1 Observer
    CTSS is in Observer state. Switching over to clock synchronization checks using NTP
    Starting Clock synchronization checks using Network Time Protocol(NTP)...
    NTP Configuration file check started...
    The NTP configuration file "/etc/ntp.conf" is available on all nodes
    NTP Configuration file check passed
    Checking daemon liveness...
    Check: Liveness for "ntpd"
    Node Name Running?
    rac2 no
    rac1 yes
    Result: Liveness check failed for "ntpd"
    PRVF-5415 : Check to see if NTP daemon is running failed
    Result: Clock synchronization check using Network Time Protocol(NTP) failed
    PRVF-9652 : Cluster Time Synchronization Services check failed
    Post-check for cluster services setup was unsuccessful on all the nodes.
    ==========================================================================
    3)Based on some website advice, I down the ntpd service and move the "/etc/ntpd.conf" to another location.Then i got the below error.
    Result: Query of CTSS for time offset passed
    Check CTSS state started...
    Check: CTSS state
    Node Name State
    rac2 Observer
    CTSS is in Observer state. Switching over to clock synchronization checks using NTP
    Starting Clock synchronization checks using Network Time Protocol(NTP)...
    NTP Configuration file check started...
    ERROR:
    PRVF-5402 : Warning: Could not find NTP configuration file "/etc/ntp.conf" on node "rac2"
    PRVF-5405 : The NTP configuration file "/etc/ntp.conf" does not exist on all nodes
    rac2
    PRVF-5414 : Check of NTP Config file failed on all nodes. Cannot proceed further for the NTP tests
    Result: Clock synchronization check using Network Time Protocol(NTP) failed
    PRVF-9652 : Cluster Time Synchronization Services check failed
    =============================================================
    What should i do to solve this issue?? Please help me ...

    Hi,
    I start the ntpd start the service in both node and done the CLUVFY.SH.
    The output is below,
    Checking if CTSS Resource is running on all nodes...
    Check: CTSS Resource running on all nodes
    Node Name Status
    rac2 passed
    rac1 passed
    Result: CTSS resource check passed
    Querying CTSS for time offset on all nodes...
    Result: Query of CTSS for time offset passed
    Check CTSS state started...
    Check: CTSS state
    Node Name State
    rac2 Observer
    rac1 Observer
    CTSS is in Observer state. Switching over to clock synchronization checks using NTP
    Starting Clock synchronization checks using Network Time Protocol(NTP)...
    NTP Configuration file check started...
    The NTP configuration file "/etc/ntp.conf" is available on all nodes
    NTP Configuration file check passed
    Checking daemon liveness...
    Check: Liveness for "ntpd"
    Node Name Running?
    rac2 yes
    rac1 yes
    Result: Liveness check passed for "ntpd"
    Checking NTP daemon command line for slewing option "-x"
    Check: NTP daemon command line
    Node Name Slewing Option Set?
    rac2 yes
    rac1 yes
    Result:
    NTP daemon slewing option check passed
    Checking NTP daemon's boot time configuration, in file "/etc/sysconfig/ntpd", for slewing option "-x"
    Check: NTP daemon's boot time configuration
    Node Name Slewing Option Set?
    rac2 yes
    rac1 yes
    Result:
    NTP daemon's boot time configuration check for slewing option passed
    NTP common Time Server Check started...
    PRVF-5410 : Check of common NTP Time Server failed
    PRVF-5416 : Query of NTP daemon failed on all nodes
    Result: Clock synchronization check using Network Time Protocol(NTP) passed
    Oracle Cluster Time Synchronization Services check passed
    ========================================================================================
    [oracle@rac1 ~]$ /u01/app/grid/oracle/product/10.2.0/db_1/bin/cluvfy comp clocksync
    Verifying Clock Synchronization across the cluster nodes
    Checking if Clusterware is installed on all nodes...
    Check of Clusterware install passed
    Checking if CTSS Resource is running on all nodes...
    CTSS resource check passed
    Querying CTSS for time offset on all nodes...
    Query of CTSS for time offset passed
    Check CTSS state started...
    CTSS is in Observer state. Switching over to clock synchronization checks using NTP
    Starting Clock synchronization checks using Network Time Protocol(NTP)...
    NTP Configuration file check started...
    NTP Configuration file check passed
    Checking daemon liveness...
    Liveness check passed for "ntpd"
    NTP daemon slewing option check passed
    NTP daemon's boot time configuration check for slewing option passed
    NTP common Time Server Check started...
    PRVF-5410 : Check of common NTP Time Server failed
    PRVF-5416 : Query of NTP daemon failed on all nodes
    Clock synchronization check using Network Time Protocol(NTP) passed
    Oracle Cluster Time Synchronization Services check passed
    Verification of Clock Synchronization across the cluster nodes was successful.
    [oracle@rac1 ~]$
    ================================================================================
    I hope the problem solved. Am i correct??

  • Installing Oracle 11gR2 RAC Problem: ASM disks

    Folks,
    Hello. I am installing Oracle 11gR2 RAC using 2 Virtual Machines (rac1 and rac2 whose OS are Oracle Linux 5.6) in VMPlayer and according to the tutorial
    http://appsdbaworkshop.blogspot.com/2011/10/11gr2-rac-on-linux-56-using-vmware.html
    At the first time, I create VM rac1. While its OS Oracle Linux 5.6 is booting, initializing ASMLib Driver OK. I create 5 ASM disks successfully using the command:
    [root@rac1 /]# /etc/init.d/oracleasm createdisk ASMDISK1 /dev/sdb1
    Output: Marking disk "ASMDISK1" as an ASM disk: OK
    Because the hard disk space of rac1 is not enough to install Database, I create VM rac1 again with bigger hard disk space (30GB). I do everything the same with that at the first time. But this time, While OS Oracle Linux 5.6 is booting, initializing ASMLib Driver failed. I create 5 ASM disks using the same command:
    [root@rac1 /]# /etc/init.d/oracleasm createdisk ASMDISK1 /dev/sdb1
    Output: Marking disk "ASMDISK1" as an ASM disk: failed
    But when I use the command:
    [root@rac1 /]# /etc/init.d/oracleasm listdisks
    Output: ASMDISK1 ASMDISK2 ASMDISK3 ASMDISK4 ASMDISK5
    My questions are:
    First, can the 5 disks "ASMDISK1 ASMDISK2 ASMDISK3 ASMDISK4 ASMDISK5" be used correctly in spite of Marking disk "ASMDISK1(2 3 4 5)" as an ASM disk failed ?
    Second, how to fix OS Oracle Linux 5.6 so that initializing ASMLib Driver OK while booting ?
    Thanks.

    Folks,
    Hello. The issue is solved by myself. Thanks.

  • Has anyone tried to install Oracle 11gR2 on Red Hat Linux 6 64bit?

    The Oracle Universal Installer is checking for some Red Hat packages which are not the ones in Linux 6. Does anyone know how to resolve this issue?

    Hi;
    I'm aware that RHE6 is not certified yet. Someone was able to install it according to this link http://server.billhamilton.com:84/wp/oracle/installing-oracle-11gr2-on-
    rhel6-in-4-long-steps/ but I'm not sure on how he got around the packages requirement.
    I suggest see Tim's site
    http://www.oracle-base.com/articles/11g/OracleDB11gR2InstallationOnOracleLinux6.php
    Regard
    Helios

  • Hi can anyone help me how to install oracle 11gr2 in linux machine

    Hi can anyone help me how to install oracle 11gr2 in linux machine
    with some documentation or any screen shots ?

    Hello
    you can follow me article:
    Oracle desde Guatemala » Blog Archive » Instalar Oracle Database 12cR1 en OEL 6 con ASM
    Greetings,

  • After installing Oracle 11gR2 it shows - There are no installed products

    I am trying to install oracle 11gR2 on my laptop on windows xp sp-3. every thing was going right but when it was installing dbca, when it reached at 85% of install, it provided me following error..
    Enterprise manager configuration failed due to the following error-
    null
    Refer to the log file at C:\app\Administrator\product\11.2.0\dbhome_1\cfgtoollogs\dbca\orcl\emConfig.log for more details.
    You can retry configuring this database with Enterprise Manager later by manually running C:\app\Administrator\product\11.2.0\dbhome_1\bin\emca script
    At the end I am going to past the log file as well.
    Now probelm is when i manually try to run emca. It does not run. and then i decided to deinstall oracle 11gR2, but when i try to deinstall Oracle 11gR2 from Universal Installer and clicked installed product then it showed me folling
    *"There are no installed products"*
    This is strange for me. now i am confused what to do, services are running but i can not run emca script. I am stuck, if any body can help me in this regard i will be very thank ful....
    the logfile created is following....
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.EMConfig addEMCALogFile
    CONFIG: ORACLE_BASE :C:\app\Administrator\product\11.2.0\dbhome_1
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\app\Administrator\product\11.2.0\dbhome_1\oui
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\app\Administrator\product\11.2.0\dbhome_1\oui
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at C:\app\Administrator\product\11.2.0\dbhome_1\cfgtoollogs\dbca\orcl\emConfig.log.
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\app\Administrator\product\11.2.0\dbhome_1\oui
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\app\Administrator\product\11.2.0\dbhome_1\oui
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'CHECK_CONFIG' set to true
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ASM_OH.
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter REP_DB_RUNNING_HOST.
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.ParamsManager getHost
    CONFIG: Host having instnces running for database orcl : mazke.MyDslDomain
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: REP_DB_RUNNING_HOST value: mazke.MyDslDomain
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.ParamsManager getRepDbPort
    CONFIG: Listener Port: 1521
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired
    CONFIG: isLocalConnectionRequired: true
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally.
    Mar 18, 2011 1:10:55 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: C:\app\Administrator\product\11.2.0\dbhome_1, and user: SYS
    Mar 18, 2011 1:10:59 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine created successfully and connected
    Mar 18, 2011 1:10:59 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ASM_OH.
    Mar 18, 2011 1:10:59 AM oracle.sysman.emcp.ParamsManager getHost
    CONFIG: Host having instnces running for database orcl : mazke.MyDslDomain
    Mar 18, 2011 1:10:59 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: REP_DB_RUNNING_HOST value: mazke.MyDslDomain
    Mar 18, 2011 1:10:59 AM oracle.sysman.emcp.ParamsManager getRepDbPort
    CONFIG: Listener Port: 1521
    Mar 18, 2011 1:10:59 AM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired
    CONFIG: isLocalConnectionRequired: true
    Mar 18, 2011 1:10:59 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally.
    Mar 18, 2011 1:10:59 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: C:\app\Administrator\product\11.2.0\dbhome_1, and user: DBSNMP
    Mar 18, 2011 1:10:59 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: ORA-28000: the account is locked
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-28000: the account is locked
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1655)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:978)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:917)
         at oracle.sysman.emcp.util.GeneralUtil.initSQLEngineLoacly(GeneralUtil.java:441)
         at oracle.sysman.emcp.util.GeneralUtil.initSQLEngine(GeneralUtil.java:637)
         at oracle.sysman.emcp.DatabaseChecks.validateUserCredentials(DatabaseChecks.java:1066)
         at oracle.sysman.emcp.ParamsManager.validatePassword(ParamsManager.java:3417)
         at oracle.sysman.emcp.EMDBPreConfig.validatePassword(EMDBPreConfig.java:4087)
         at oracle.sysman.emcp.EMDBPreConfig.checkConfigParams(EMDBPreConfig.java:1633)
         at oracle.sysman.emcp.EMDBPreConfig.checkParameters(EMDBPreConfig.java:1403)
         at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:209)
         at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:195)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:250)
         at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:583)
         at oracle.sysman.assistants.dbca.backend.PostDBCreationStep.executeImpl(PostDBCreationStep.java:968)
         at oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
         at oracle.sysman.assistants.util.step.Step.execute(Step.java:140)
         at oracle.sysman.assistants.util.step.StepContext$ModeRunner.run(StepContext.java:2667)
         at java.lang.Thread.run(Thread.java:595)
    Mar 18, 2011 1:10:59 AM oracle.sysman.emcp.ParamsManager getHost
    CONFIG: Host having instnces running for database orcl : mazke.MyDslDomain
    Mar 18, 2011 1:10:59 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: REP_DB_RUNNING_HOST value: mazke.MyDslDomain
    Mar 18, 2011 1:10:59 AM oracle.sysman.emcp.ParamsManager getRepDbPort
    CONFIG: Listener Port: 1521
    Mar 18, 2011 1:10:59 AM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired
    CONFIG: isLocalConnectionRequired: true
    Mar 18, 2011 1:10:59 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally.
    Mar 18, 2011 1:10:59 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: C:\app\Administrator\product\11.2.0\dbhome_1, and user: SYS
    Mar 18, 2011 1:11:02 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine created successfully and connected
    Mar 18, 2011 1:11:05 AM oracle.sysman.emcp.DatabaseChecks updateAccountStatus
    CONFIG: DBSNMP password modified
    Mar 18, 2011 1:11:05 AM oracle.sysman.emcp.DatabaseChecks updateAccountStatus
    CONFIG: Unlocked DBSNMP account
    Mar 18, 2011 1:11:05 AM oracle.sysman.emcp.ParamsManager getHost
    CONFIG: Host having instnces running for database orcl : mazke.MyDslDomain
    Mar 18, 2011 1:11:05 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: REP_DB_RUNNING_HOST value: mazke.MyDslDomain
    Mar 18, 2011 1:11:05 AM oracle.sysman.emcp.ParamsManager getRepDbPort
    CONFIG: Listener Port: 1521
    Mar 18, 2011 1:11:05 AM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired
    CONFIG: isLocalConnectionRequired: true
    Mar 18, 2011 1:11:05 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally.
    Mar 18, 2011 1:11:05 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: C:\app\Administrator\product\11.2.0\dbhome_1, and user: DBSNMP
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine created successfully and connected
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager getHost
    CONFIG: Host having instnces running for database orcl : mazke.MyDslDomain
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: REP_DB_RUNNING_HOST value: mazke.MyDslDomain
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager getRepDbPort
    CONFIG: Listener Port: 1521
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired
    CONFIG: isLocalConnectionRequired: true
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally.
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: C:\app\Administrator\product\11.2.0\dbhome_1, and user: SYS
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine created successfully and connected
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager getHost
    CONFIG: Host having instnces running for database orcl : mazke.MyDslDomain
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: REP_DB_RUNNING_HOST value: mazke.MyDslDomain
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager getRepDbPort
    CONFIG: Listener Port: 1521
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired
    CONFIG: isLocalConnectionRequired: true
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally.
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: C:\app\Administrator\product\11.2.0\dbhome_1, and user: SYS
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine created successfully and connected
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: orcl
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: orcl
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: orcl
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBID.
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.DatabaseChecks getDbid
    CONFIG: No dbid available. Will query db to extract it.
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager getHost
    CONFIG: Host having instnces running for database orcl : mazke.MyDslDomain
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: REP_DB_RUNNING_HOST value: mazke.MyDslDomain
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.ParamsManager getRepDbPort
    CONFIG: Listener Port: 1521
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired
    CONFIG: isLocalConnectionRequired: true
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally.
    Mar 18, 2011 1:11:06 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: C:\app\Administrator\product\11.2.0\dbhome_1, and user: SYS
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine created successfully and connected
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBID value: 1273847978
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ASM_OH.
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.ParamsManager getHost
    CONFIG: Host having instnces running for database orcl : mazke.MyDslDomain
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: REP_DB_RUNNING_HOST value: mazke.MyDslDomain
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.ParamsManager getRepDbPort
    CONFIG: Listener Port: 1521
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired
    CONFIG: isLocalConnectionRequired: true
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally.
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: C:\app\Administrator\product\11.2.0\dbhome_1, and user: SYSMAN
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: ORA-28000: the account is locked
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-28000: the account is locked
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1655)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:978)
         at oracle.sysman.assistants.util.sqlEngine.SQLEngine.connect(SQLEngine.java:917)
         at oracle.sysman.emcp.util.GeneralUtil.initSQLEngineLoacly(GeneralUtil.java:441)
         at oracle.sysman.emcp.util.GeneralUtil.initSQLEngine(GeneralUtil.java:637)
         at oracle.sysman.emcp.DatabaseChecks.validateUserCredentials(DatabaseChecks.java:1066)
         at oracle.sysman.emcp.ParamsManager.validatePassword(ParamsManager.java:3417)
         at oracle.sysman.emcp.EMDBPreConfig.validatePassword(EMDBPreConfig.java:4087)
         at oracle.sysman.emcp.EMDBPreConfig.checkConfigParams(EMDBPreConfig.java:1685)
         at oracle.sysman.emcp.EMDBPreConfig.checkParameters(EMDBPreConfig.java:1403)
         at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:209)
         at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:195)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:250)
         at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:583)
         at oracle.sysman.assistants.dbca.backend.PostDBCreationStep.executeImpl(PostDBCreationStep.java:968)
         at oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
         at oracle.sysman.assistants.util.step.Step.execute(Step.java:140)
         at oracle.sysman.assistants.util.step.StepContext$ModeRunner.run(StepContext.java:2667)
         at java.lang.Thread.run(Thread.java:595)
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.ParamsManager getHost
    CONFIG: Host having instnces running for database orcl : mazke.MyDslDomain
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: REP_DB_RUNNING_HOST value: mazke.MyDslDomain
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.ParamsManager getRepDbPort
    CONFIG: Listener Port: 1521
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired
    CONFIG: isLocalConnectionRequired: true
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally.
    Mar 18, 2011 1:11:07 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: C:\app\Administrator\product\11.2.0\dbhome_1, and user: SYS
    Mar 18, 2011 1:11:14 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine created successfully and connected
    Mar 18, 2011 1:11:14 AM oracle.sysman.emcp.DatabaseChecks updateAccountStatus
    CONFIG: SYSMAN password modified
    Mar 18, 2011 1:11:14 AM oracle.sysman.emcp.DatabaseChecks updateAccountStatus
    CONFIG: Unlocked SYSMAN account
    Mar 18, 2011 1:11:14 AM oracle.sysman.emcp.ParamsManager getHost
    CONFIG: Host having instnces running for database orcl : mazke.MyDslDomain
    Mar 18, 2011 1:11:14 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: REP_DB_RUNNING_HOST value: mazke.MyDslDomain
    Mar 18, 2011 1:11:14 AM oracle.sysman.emcp.ParamsManager getRepDbPort
    CONFIG: Listener Port: 1521
    Mar 18, 2011 1:11:14 AM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired
    CONFIG: isLocalConnectionRequired: true
    Mar 18, 2011 1:11:14 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally.
    Mar 18, 2011 1:11:14 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: C:\app\Administrator\product\11.2.0\dbhome_1, and user: SYSMAN
    Mar 18, 2011 1:11:14 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine created successfully and connected
    Mar 18, 2011 1:11:14 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Mar 18, 2011 1:11:14 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Mar 18, 2011 1:11:14 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.ParamsManager getHost
    CONFIG: Host having instnces running for database orcl : mazke.MyDslDomain
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: REP_DB_RUNNING_HOST value: mazke.MyDslDomain
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.ParamsManager getRepDbPort
    CONFIG: Listener Port: 1521
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired
    CONFIG: isLocalConnectionRequired: true
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally.
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: C:\app\Administrator\product\11.2.0\dbhome_1, and user: SYS
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine created successfully and connected
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.EMDBPreConfig invoke
    CONFIG: Passed repository configuration check
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter GLOBAL_DB_UNIQUE_NAME.
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.DatabaseChecks getGlobalDbUniqueName
    CONFIG: No Global database unique name available. Will try to retrieve it from DB itself
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.ParamsManager getHost
    CONFIG: Host having instnces running for database orcl : mazke.MyDslDomain
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: REP_DB_RUNNING_HOST value: mazke.MyDslDomain
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.ParamsManager getRepDbPort
    CONFIG: Listener Port: 1521
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired
    CONFIG: isLocalConnectionRequired: true
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally.
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: C:\app\Administrator\product\11.2.0\dbhome_1, and user: SYS
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine created successfully and connected
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: GLOBAL_DB_UNIQUE_NAME value: orcl
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\app\Administrator\product\11.2.0\dbhome_1\sysman\config\emd.properties to C:\app\Administrator\product\11.2.0\dbhome_1\sysman\config\emd.properties.emca.tmp
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\app\Administrator\product\11.2.0\dbhome_1\sysman\config\emd.properties has been copied to C:\app\Administrator\product\11.2.0\dbhome_1\sysman\config\emd.properties.emca.tmp
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\app\Administrator\product\11.2.0\dbhome_1\sysman\config\emoms.properties to C:\app\Administrator\product\11.2.0\dbhome_1\sysman\config\emoms.properties.emca.tmp
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\app\Administrator\product\11.2.0\dbhome_1\sysman\config\emoms.properties has been copied to C:\app\Administrator\product\11.2.0\dbhome_1\sysman\config\emoms.properties.emca.tmp
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\app\Administrator\product\11.2.0\dbhome_1\sysman\emd\targets.xml to C:\app\Administrator\product\11.2.0\dbhome_1\sysman\emd\targets.xml.emca.tmp
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\app\Administrator\product\11.2.0\dbhome_1\sysman\emd\targets.xml has been copied to C:\app\Administrator\product\11.2.0\dbhome_1\sysman\emd\targets.xml.emca.tmp
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.EMConfig perform
    SEVERE: null
    Refer to the log file at C:\app\Administrator\product\11.2.0\dbhome_1\cfgtoollogs\dbca\orcl\emConfig.log for more details.
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    java.lang.NullPointerException
         at oracle.cluster.impl.install.InstallGroupImpl.<init>(InstallGroupImpl.java:127)
         at oracle.cluster.impl.install.HAInstallImpl.<init>(HAInstallImpl.java:51)
         at oracle.cluster.impl.install.InstallFactoryImpl.getHAInstall(InstallFactoryImpl.java:139)
         at oracle.cluster.install.InstallFactory.getHAInstall(InstallFactory.java:130)
         at oracle.cluster.deployment.ClusterwareInfo.isHAInstalled(ClusterwareInfo.java:231)
         at oracle.sysman.emcp.util.ClusterUtil.isHASInstalled(ClusterUtil.java:283)
         at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:255)
         at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:195)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:250)
         at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:583)
         at oracle.sysman.assistants.dbca.backend.PostDBCreationStep.executeImpl(PostDBCreationStep.java:968)
         at oracle.sysman.assistants.util.step.BasicStep.execute(BasicStep.java:210)
         at oracle.sysman.assistants.util.step.Step.execute(Step.java:140)
         at oracle.sysman.assistants.util.step.StepContext$ModeRunner.run(StepContext.java:2667)
         at java.lang.Thread.run(Thread.java:595)
    Mar 18, 2011 1:11:15 AM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\app\Administrator\product\11.2.0\dbhome_1\oui
    Kind Regards
    Mazahir Abbas

    Hi,
    Which OUI you are using to deinstall 11gR2? It means you have some other oracle software also installed on your lap top. In 11G, you can't use OUI to deinstall the 11gr2 software and you need to user deinstall utility instead. Either you can download deinstall utility from OTN, or you can also run it from oracle home which you are deinstalling, as follows
    On your command prompt, replace ORACLE_HOME with the oracle home path on your laptop then execute following.
    ORACLE_HOME\deinstall\deinstallFor OEM database control, your DBSNMP account is locked. Unlock that account.
    Follow following commands steps you configure it.
    emca -repos recreate
    emca -deconfig dbcontrol db
    emca -config dbcontrol dbSalman

  • Create domain failure when installing forms 11gr2

    I am trying to install forms 11gr2(11.1.2) 64 bit on a windows 7 64 bit OS. I have installed JDK 1.6.0_31 64 bit Java. I installed WLS 10.3.5 and did not run the quickstart or da any configuration. I installed forms 11gr2 without configuration option. When completed installing forms 11gr2 I went to start bar and selected configure classic instance. I select the defaults and it tries to configure. I keep getting failed when trying to create domain. I checked various articles and most have pointed to spaces in path statement. I ave created to junctions to Program Files and Program Files (x86). I changed the path statement and any other system variable that pointed to one of those directories. As a side note, I reboot everytime I make a change. The following is the last part of the log file showing the actual error.
    [2012-05-04T08:47:35.853-04:00] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [SRC_CLASS: oracle.as.install.engine.modules.presentation.PresentationModule] [SRC_METHOD: processModuleEvent] PRESENTATION MODULE RECEIVED EVENT ID: 12201
    [2012-05-04T08:50:39.464-04:00] [as] [WARNING] [] [oracle.as.install.engine.modules.configuration.client.ConfigActionClassLoader] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [Action]: Application Configuration. Library not found: C:\oracle\Middleware\FRHome/jlib/ossoreg.jar
    [2012-05-04T08:52:19.529-04:00] [as] [WARNING] [] [oracle.as.install.engine.modules.configuration.client.ConfigActionClassLoader] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [Action]: Application Configuration. Library not found: C:\oracle\Middleware\FRHome/jlib/jazn.jar
    [2012-05-04T08:52:19.529-04:00] [as] [WARNING] [] [oracle.as.install.engine.modules.configuration.client.ConfigActionClassLoader] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [Action]: Application Configuration. Library not found: C:\oracle\Middleware\FRHome/jlib/ldapjclnt9.jar
    [2012-05-04T08:52:19.529-04:00] [as] [WARNING] [] [oracle.as.install.engine.modules.configuration.client.ConfigActionClassLoader] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [Action]: Application Configuration. Library not found: ORACLE_HOME%/jdbc/lib/ojdbc6.jar
    [2012-05-04T08:52:19.529-04:00] [as] [WARNING] [] [oracle.as.install.engine.modules.configuration.client.ConfigActionClassLoader] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [Action]: Application Configuration. Library not found: C:\oracle\Middleware\FRHome/jlib/repository.jar
    [2012-05-04T08:52:20.138-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Setting data for action:Application Configuration
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CREATE_DOMAIN
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:EXTEND_DOMAIN
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:EXPAND_CLUSTER
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:DOMAIN_HOME_PATH
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:ClassicDomain to variable:DOMAIN_NAME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:C:\oracle\Middleware\user_projects\domains to variable:DOMAIN_LOCATION
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:KBALD138H93R.acct03.us.lmco.com to variable:DOMAIN_HOSTNAME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:DOMAIN_PORT
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:weblogic to variable:ADMIN_USER_NAME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:<SECURE> to variable:ADMIN_PASSWORD
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:C:\oracle\Middleware to variable:MW_HOME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:C:\oracle\Middleware\wlserver_10.3 to variable:WL_SERVER_HOME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:C:\oracle\Middleware\FRHome to variable:ORACLE_HOME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:C:\oracle\Middleware\asinst_1 to variable:INSTANCE_HOME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:asinst_1 to variable:INSTANCE_NAME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:CONFIGURE_PORTAL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_REPORTS
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_FORMS
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:CONFIGURE_DISCO
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_FORMS_BUILDER
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_REPORTS_BUILDER
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:CONFIGURE_OHS
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:CONFIGURE_WEBCACHE
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_MANAGEMENT_COMPONENT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:CONFIGURE_ORACLE_CONFIGURATION_MANAGER_DETAILS
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:CREATE_CLUSTERED
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:0 to variable:PORT_LOCATION
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:AUTOMATIC_PORT_DETECT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:STATICPORT_INI_FILE_LOCATION
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:DO_NOT_USE_PROXY_SETTINGS
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:ENABLE_PROXY
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:proxy1.global.lmco.com to variable:PROXY_HOST
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:8080 to variable:PROXY_PORT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:PROXY_BYPASS
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:DATABASE_CONNECTION_STRING
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:IS_DISCOVERER_DS_NEEDED
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:IS_PORTAL_DS_NEEDED
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:IS_PORTLET_DS_NEEDED
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:DISCOVERER_SCHEMA_NAME
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:PORTAL_SCHEMA_NAME
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:PORTLET_SCHEMA_NAME
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:<SECURE> to variable:DISCOVERER_SCHEMA_PASSWORD
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:<SECURE> to variable:PORTAL_SCHEMA_PASSWORD
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:<SECURE> to variable:PORTLET_SCHEMA_PASSWORD
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:<SECURE> to variable:UPGRADE_PORTAL_SCHEMA
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:USE_OID
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:USE_SSO
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:USE_OAM
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:OID_HOST
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:OID_PORT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:OID_USERNAME
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:<SECURE> to variable:OID_PASSWORD
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:OID_USE_SSL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:OAM_HOST
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:OAM_PORT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:OAM_USERNAME
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:<SECURE> to variable:OAM_PASSWORD
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:CONFIGURE_PORTAL_AGAINST_DEDICATED_REPOSITORY
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:PORTAL_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:FORMS_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:REPORTS_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:DISCO_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:DISCO_PLUS_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:EM_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:EMAGENT_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:ADMIN_CONSOLE_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_FORMS_ENVIRONMENT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_REPORTS_ENVIRONMENT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_FOR_DEVELOPMENT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:CONFIGURE_FOR_DEPLOYMENT
    [2012-05-04T08:52:20.188-04:00] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [SRC_CLASS: oracle.as.install.template.screens.ConfigurationPage] [SRC_METHOD: onDescriptionChange] [CONFIG PAGE] New Description: Application Configuration
    [2012-05-04T08:52:20.198-04:00] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [SRC_CLASS: oracle.as.install.template.screens.ConfigurationPage] [SRC_METHOD: onDescriptionChange] [CONFIG PAGE] Old Description: Application Configuration
    [2012-05-04T08:52:20.218-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Setting valueOf(DOMAIN_HOME_PATH) to:C:/oracle/Middleware/user_projects/domains/ClassicDomain. Value obtained from:USER
    [2012-05-04T08:52:21.788-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Setting valueOf(DOMAIN_PORT) to:7001. Value obtained from:USER
    [2012-05-04T08:52:25.317-04:00] [as] [TRACE:16] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [SRC_CLASS: oracle.as.install.classic.ca.standard.ClassicConfigMain] [SRC_METHOD: doExecute] ENTRY
    [2012-05-04T08:52:30.352-04:00] [as] [WARNING] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] CSF Entries will not be parsed since the AdminServer is unreachable
    [2012-05-04T08:52:30.392-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Executing a Jaxb workflow ...
    [2012-05-04T08:52:30.392-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Begining Oracle Fusion Middleware Configuration ...
    [2012-05-04T08:52:30.392-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Begining Oracle Fusion Middleware Configuration ...
    [2012-05-04T08:52:30.422-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] ENTRY ASDomain.createDomain
    [2012-05-04T08:52:30.422-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] ENTRY ASDomain.createDomain
    [2012-05-04T08:52:30.422-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] reportStartConfigAction: ENTRY........
    [2012-05-04T08:52:30.422-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] reportStartConfigAction: eventStatus........oracle.as.provisioning.engine.ConfigEventStatus@5f2471dc
    [2012-05-04T08:52:30.422-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] reportStartConfigAction: 2........
    [2012-05-04T08:52:30.432-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] reportStartConfigAction: Set the Extion Id to START........
    [2012-05-04T08:52:30.432-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] reportStartConfigAction: Did the assignment...
    [2012-05-04T08:52:30.432-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] reportStartConfigAction: EXIT........
    [2012-05-04T08:52:30.432-04:00] [as] [ERROR] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [[
    oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
         at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:686)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:339)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:662)
    Any help is appreciated as I have been trying to install the 64 bit forms and report developer products for a few weeks and keep receiving the same error. I have tried other versions, forms 11.1.1.2 and WLS 10.3.2, with the same results. Thanks in advance.

    I only have the 127.0.0.1 localhost entry uuncommented in the hosts file. Here is a copy of the .out file from the log directory as it might help for those more knowledgeable than myslef.
    Setting ORACLE_HOME to C:\oracle\Middleware\FRHome
    Setting Doracle.config.mode to true
    Adding C:\Users\675499\AppData\Local\Temp\OraInstall2012-05-04_11-11-29AM for deletion.
    Adding to classpath:file:/C:/Users/675499/AppData/Local/Temp/OraInstall2012-05-04_11-11-29AM/ext/jlib/classic.jar
    Adding to classpath:file:/C:/Users/675499/AppData/Local/Temp/OraInstall2012-05-04_11-11-29AM/ext/jlib/template.jar
    [email protected]lassicPage.ScreenRes
    configFileName:C:\Users\675499\AppData\Local\Temp\OraInstall2012-05-04_11-11-29AM\ext\jlib\footprint.xml
    Setting current page standalone validations to true
    Setting current page standalone validations to true
    Setting current page standalone validations to true
    resultset.getStatus() : true
    Setting collector hub url in screen:null
    Temp Buffer: C:\Oracle\Middleware;
    ExtendDomain: false          ExpandCluster: false
    wasExtendDomain: false          wasExpandCluster: false
    prevAdminServerURL:           adminServerURL: KBALD138H93R.acct03.us.lmco.comweblogic
    isFirstVisit:true
    Oracle Home = C:\oracle\Middleware\FRHome
    Setting current page standalone validations to true
    In processErrorMsgStringOracle Instance
    java.lang.UnsatisfiedLinkError: no GetVolumeInfo in java.library.path
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1737)
         at java.lang.Runtime.loadLibrary0(Runtime.java:823)
         at java.lang.System.loadLibrary(System.java:1028)
         at oracle.as.install.engine.modules.util.others.VolumeAPI.<clinit>(VolumeAPI.java:37)
         at oracle.as.install.common.handlers.fileQueries.ValidateHomeDirectory.checkIfFileSystemIsFAT32(ValidateHomeDirectory.java:398)
         at oracle.as.install.common.handlers.fileQueries.ValidateHomeDirectory.executeHandler(ValidateHomeDirectory.java:320)
         at oracle.as.install.engine.modules.handler.engine.HandlerLauncher$LaunchHelper.execute(HandlerLauncher.java:487)
         at oracle.as.install.engine.modules.handler.engine.HandlerLauncher$LaunchHelper.launch(HandlerLauncher.java:413)
         at oracle.as.install.engine.modules.handler.engine.HandlerLauncher.execute(HandlerLauncher.java:178)
         at oracle.as.install.engine.modules.handler.engine.HandlerEngine.execute(HandlerEngine.java:137)
         at oracle.as.install.engine.modules.handler.HandlerModule.performOperation(HandlerModule.java:455)
         at oracle.as.install.engine.modules.handler.HandlerModule.performInputValidations(HandlerModule.java:413)
         at oracle.as.install.engine.modules.handler.HandlerModule.processModuleEvent(HandlerModule.java:332)
         at oracle.as.install.engine.modules.util.PartnerModuleImpl.processEvent(PartnerModuleImpl.java:118)
         at oracle.as.install.engine.InstallEngine.notifyListeners(InstallEngine.java:626)
         at oracle.as.install.engine.InstallEngine.processEvent(InstallEngine.java:584)
         at oracle.as.install.engine.modules.util.PartnerModuleImpl.notifyAllEventListenersHelper(PartnerModuleImpl.java:227)
         at oracle.as.install.engine.modules.util.PartnerModuleImpl.notifyListeners(PartnerModuleImpl.java:191)
         at oracle.as.install.engine.modules.presentation.PresentationModule.executeModifiedDWizardEvent(PresentationModule.java:716)
         at oracle.as.install.engine.modules.presentation.ui.common.wizard.ModifiedDWizard.fireValidationEvent(ModifiedDWizard.java:3183)
         at oracle.as.install.engine.modules.presentation.ui.common.wizard.ModifiedDWizard.doNext(ModifiedDWizard.java:922)
         at oracle.bali.ewt.wizard.BaseWizard$Action.actionPerformed(Unknown Source)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6289)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6054)
         at java.awt.Container.processEvent(Container.java:2041)
         at java.awt.Component.dispatchEventImpl(Component.java:4652)
         at java.awt.Container.dispatchEventImpl(Container.java:2099)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
         at java.awt.Container.dispatchEventImpl(Container.java:2085)
         at java.awt.Window.dispatchEventImpl(Window.java:2478)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)
         at java.awt.EventQueue.access$000(EventQueue.java:85)
         at java.awt.EventQueue$1.run(EventQueue.java:603)
         at java.awt.EventQueue$1.run(EventQueue.java:601)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
         at java.awt.EventQueue$2.run(EventQueue.java:617)
         at java.awt.EventQueue$2.run(EventQueue.java:615)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    needWritableDirectory: false
    needWritableDirectory: true
    middlewareHomeLocation:C:\oracle\Middleware
    weblogicHomeLocation:C:\oracle\Middleware\wlserver_10.3
    weblogicHome:C:\oracle\Middleware\wlserver_10.3
    weblogicHomeLocation:C:\oracle\Middleware\wlserver_10.3
    In processErrorMsgStringInstance Name
    In processErrorMsgStringThe instance name may only contain alphanumeric and underscore (_) characters, and it must begin with an alphabetic character. The instance name must be at least 4 characters long and up to 30 characters long.
    In processErrorMsgStringOracle Home
    In processErrorMsgStringOracle Home Directory Name
    In [email protected]_OracleDirectoryInvalidErrorString
    Obtained the single page data..SpecifyClassicHomeInformationPage
    External name..INVALID_ORACLE_DIRECTORY_MSG_STRING
    resultset.getStatus() : true
    XXX: setting m_WLSHome to: C:\oracle\Middleware\wlserver_10.3
    Setting current page standalone validations to true
    In processErrorMsgStringDomain Name
    In processErrorMsgStringThe value may only contain alphanumeric characters, or the underscore (_) or hyphen (-) characters.
    In processErrorMsgStringAdministrator Password
    In processErrorMsgStringValid passwords are 8 to 30 characters long, must begin with an alphabetic character, use only alphanumeric, underscore (_), dollar ($) or pound (#) characters. It should contain at least one numeric, underscore (_), dollar ($), or pound (#) character.
    In processErrorMsgStringAdministrator User Name
    In processErrorMsgStringThe value may only contain alphanumeric characters, or the underscore (_) or hyphen (-) characters.
    resultset.getStatus() : true
    the node m_FormsEnv is Not Selected
    the node m_FormsServer is Not Selected
    the node m_FormsBuilder is Not Selected
    the node m_ReportsEnv is Not Selected
    the node m_ReportsServer is Not Selected
    the node m_ReportsBuilder is Not Selected
    the node m_FormsEnv is Selected
    the node m_FormsServer is Selected
    the node m_FormsBuilder is Selected
    the node m_ReportsEnv is Selected
    the node m_ReportsServer is Selected
    the node m_ReportsBuilder is Selected
    root.isSelectedtrue
    Setting current page standalone validations to true
    the node m_FormsEnv is Selected
    the node m_FormsServer is Selected
    the node m_FormsBuilder is Selected
    the node m_ReportsEnv is Selected
    the node m_ReportsServer is Selected
    the node m_ReportsBuilder is Selected
    Entering the exec handler method in get free space for home...
    quotaNeededProperty:null
    isQuotaNeeded : false
    resultset.getStatus() : true
    the node m_FormsEnv is Selected
    the node m_FormsServer is Selected
    the node m_FormsBuilder is Selected
    the node m_ReportsEnv is Selected
    the node m_ReportsServer is Selected
    the node m_ReportsBuilder is Selected
    Setting current page standalone validations to true
    resultset.getStatus() : true
    Setting current page standalone validations to true
    resultset.getStatus() : true
    In doFinish method checking for inventory lock...ConfigurationPage
    Setting current page standalone validations to true
    JAVA.LIBRARY.PATH:C:\Users\675499\AppData\Local\Temp\OraInstall2012-05-04_11-11-29AM\jre\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Oracle\Middleware\FRHome\bin;C:\oracle\10G\BIToolsHome_1\bin;C:\oracle\10G\BIToolsHome_1\jlib;C:\oracle\10G\BIToolsHome_1\jre\1.4.2\bin\client;C:\oracle\10G\BIToolsHome_1\jre\1.4.2\bin;c:\oracle\10G\devsuitehome10GR2\bin;c:\oracle\10G\devsuitehome10GR2\jdk\jre\bin\classic;c:\oracle\10G\devsuitehome10GR2\jdk\jre\bin;c:\oracle\10G\devsuitehome10GR2\jdk\jre\bin\client;c:\oracle\10G\devsuitehome10GR2\jlib;c:\oracle\10G\devsuitehome10GR2\jre\1.4.2\bin\client;c:\oracle\10G\devsuitehome10GR2\jre\1.4.2\bin;C:\pf86\CA\SC\CAWIN\;C:\PROGRA~1\CA\SC\ETPKI\lib;C:\pf86\gs\gs8.62\lib;C:\pf86\gs\gs8.62\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\pf\ActivIdentity\ActivClient\;C:\pf86\ActivIdentity\ActivClient\;C:\PROGRA~2\CA\SC\CAM\bin;C:\pf86\CA\SC\CsamSockAdapter\bin;C:\DSM\Script;C:\Oracle\Middleware\FRHome\opmn\bin;C:\Oracle\Middleware\FRHome\opmn\lib;C:\Oracle\Middleware\FRHome\perl\bin;C:\oracle\Middleware\FRHome\lib\;C:\oracle\Middleware\FRHome\jdk\jre\lib\i386\
    CONFIG LOG CONFIG LOCATION: C:\Users\675499\AppData\Local\Temp\OraInstall2012-05-04_11-11-29AM\ext\jlib\log-config.xml
    XXX Entered Init()!!!
    Check Point Location : C:\Program Files\Oracle\Inventory\checkpoint\AS\11.1.1.0.0
    java.homeC:/oracle/Middleware/FRHome/jdk/jre
    weblogic.homeC:/oracle/Middleware/wlserver_10.3/server
    java.class.pathC:/oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar;C:/oracle/Middleware/wlserver_10.3/server/lib/webservices.jar;C:/oracle/Middleware/utils/config/10.3/config-launch.jar;C:/oracle/Middleware/FRHome/lib/java/shared/args4j/2.0.9/args4j-2.0.9.jar;C:/oracle/Middleware/FRHome/opmn/lib/argus.jar;C:/oracle/Middleware/FRHome/install/config/ASConfig.jar;C:/oracle/Middleware/FRHome/install/config/classic_config.jar;C:/oracle/Middleware/FRHome/opmn/lib/iasprovision.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jmx_11.1.1/jmxframework.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jmx_11.1.1/jmxspi.jar;C:/oracle/Middleware/FRHome/inventory/Scripts/ext/jlib/message.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.odl_11.1.1/ojdl.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.odl_11.1.1/ojdl2.jar;C:/oracle/Middleware/FRHome/opmn/lib/ons.jar;C:/oracle/Middleware/FRHome/opmn/lib/opmneditor.jar;C:/oracle/Middleware/FRHome/opmn/lib/optic.jar;C:/oracle/Middleware/FRHome/opmn/lib/repositorycheck.jar;C:/oracle/Middleware/FRHome/opmn/lib/wlclient.jar;C:/oracle/Middleware/FRHome/opmn/lib/wljmxclient.jar;C:/oracle/Middleware/FRHome/lib/xmlparserv2.jar;C:/oracle/Middleware/FRHome/forms/provision/frmconfig.jar;C:/oracle/Middleware/FRHome/frcommon/provision/frconfig.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.ldap_11.1.1/ldapjclnt11.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jps-common.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jps-wls.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jps-ee.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jps-unsupported-api.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jacc-spi.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jps-mbeans.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jps-api.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar;C:/oracle/Middleware/FRHome/jlib/ossoreg.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jrf_11.1.1/jrf.jar;C:/oracle/Middleware/FRHome/jlib/ojmisc.jar;C:/oracle/Middleware/FRHome/jlib/jazn.jar;C:/oracle/Middleware/FRHome/jlib/ldapjclnt9.jar;ORACLE_HOMEnullORACLE_HOMEnullORACLE_HOMEnullORACLE_HOMEnullORACLE_HOMEnullORACLE_HOME%/../oracle_common/jlib/rcucommon.jar
    inside development taskFactory
    Assigning Port: 7001 to: DOMAIN_PORT
    Domain Provisioning JVMArgs being set:-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m -Doracle.home=C:\oracle\Middleware\FRHome -Ddomain.home=C:/oracle/Middleware/user_projects/domains/ClassicDomain -Djava.ext.dirs=C:\oracle\Middleware\FRHome\jdk\jre\lib\ext -Doracle.security.jps.config=C:/oracle/Middleware/user_projects/domains/ClassicDomain/config/fmwconfig/jps-config.xml -Doracle.instance=C:\oracle\Middleware\asinst_1 -Doracle.instance.name=asinst_1 -Doracle.forms.weblogic=1 -Ddomain.name=ClassicDomain
    Domain provisioning classpath set = C:/oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar;C:/oracle/Middleware/oracle_common/modules/oracle.dms_11.1.1/dms.jar;C:/oracle/Middleware/oracle_common/modules/oracle.jmx_11.1.1/jmxframework.jar;C:/oracle/Middleware/oracle_common/modules/oracle.jmx_11.1.1/jmxspi.jar;C:/oracle/Middleware/oracle_common/modules/oracle.odl_11.1.1/ojdl.jar;C:/oracle/Middleware/FRHome/opmn/lib/nonj2eembeans.jar;C:/oracle/Middleware/FRHome/jdbc/lib/ojdbc6.jar;C:/oracle/Middleware/FRHome/opmn/lib/optic.jar;C:/oracle/Middleware/FRHome/opmn/lib/iasprovision.jar;C:/oracle/Middleware/oracle_common/modules/oracle.ldap_11.1.1/ldapjclnt11.jar;C:/oracle/Middleware/oracle_common/jlib/rcucommon.jar;C:/oracle/Middleware/FRHome/opmn/lib/opmneditor.jar;C:/oracle/Middleware/FRHome/opmn/lib/wlfullclient.jar;C:/oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/commons-el.jar;C:/oracle/Middleware/FRHome/jlib/dfc.jar;C:/oracle/Middleware/FRHome/dvt/lib/dvt-jclient.jar;C:/oracle/Middleware/FRHome/dvt/lib/dvt-utils.jar;C:/oracle/Middleware/oracle_common/jlib/ewt3.jar;C:/oracle/Middleware/oracle_common/modules/oracle.iau_11.1.1/fmw_audit.jar;C:/oracle/Middleware/FRHome/oui/jlib/http_client.jar;C:/oracle/Middleware/oracle_common/modules/oracle.idm_11.1.1/identitystore.jar;C:/oracle/Middleware/oracle_common/modules/oracle.idm_11.1.1/identityutils.jar;C:/oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jaccprovider.jar;C:/oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jacc-spi.jar;C:/oracle/Middleware/FRHome/ord/jlib/jai_codec.jar;C:/oracle/Middleware/FRHome/ord/jlib/jai_core.jar;C:/oracle/Middleware/oracle_common/modules/oracle.oc4j-obsolete_11.1.1/jazn.jar;C:/oracle/Middleware/oracle_common/modules/oracle.oc4j-obsolete_11.1.1/jazncore.jar;C:/oracle/Middleware/oracle_common/jlib/jewt4.jar;C:/oracle/Middleware/FRHome/jlib/jta.jar;C:/oracle/Middleware/oracle_common/modules/oracle.ldap_11.1.1/ldapjclnt11.jar;C:/oracle/Middleware/FRHome/lib/mail.jar;C:/oracle/Middleware/FRHome/jlib/netcfg.jar;C:/oracle/Middleware/FRHome/jlib/oracle_ice.jar;C:/oracle/Middleware/oracle_common/jlib/share.jar;C:/oracle/Middleware/FRHome/jlib/zrclient.jar;C:/oracle/Middleware/FRHome/reports/jlib/aolj.jar;C:/oracle/Middleware/FRHome/reports/jlib/confmbean.jar;C:/oracle/Middleware/FRHome/reports/jlib/runtimembean.jar;C:/oracle/Middleware/FRHome/reports/jlib/rwadmin.jar;C:/oracle/Middleware/FRHome/reports/jlib/rwenv.jar;C:/oracle/Middleware/FRHome/reports/jlib/rwrun.jar;C:/oracle/Middleware/FRHome/reports/jlib/rwxdo.jar;C:/oracle/Middleware/FRHome/jlib/rts2.jar;C:/oracle/Middleware/FRHome/common/wlst/lib/adf-share-mbeans-wlst.jar;C:/oracle/Middleware/FRHome/common/wlst/lib/mdswlst.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/auditwlst.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/jps-wlst.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/jrf-wlst.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/oamap_help.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/oamAuthnProvider.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/ossoiap_help.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/ossoiap.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/sslconfigwlst.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/wsm-wlst.jar
    DOMAIN_HOME: C:/oracle/Middleware/user_projects/domains/ClassicDomain
    Trying to assign 3 consecutive ports where the starting port range is: 6700 - 6800
    Assigning Port: 6700 to: OPMN_LOCAL_PORT
    Assigning Port: 6701 to: OPMN_REMOTE_PORT
    Assigning Port: 6702 to: OPMN_REQUEST_PORT
    GJS OHS Hostname: KBALD138H93R.acct03.us.lmco.com
    GJS managedServer Hostname: KBALD138H93R.acct03.us.lmco.com
    GJS OHS Hostname: KBALD138H93R.acct03.us.lmco.com
    GJS managedServer Hostname: KBALD138H93R.acct03.us.lmco.com
    DOMAIN_HOME: C:/oracle/Middleware/user_projects/domains/ClassicDomain
    XXX Entered DoExecute()!!!
    displayProperties()!!!
    CREATE_DOMAIN : true
    JOIN_DOMAIN :
    DOMAIN_NAME : ClassicDomain
    DOMAIN_HOSTNAME : KBALD138H93R.acct03.us.lmco.com
    DOMAIN_PORT : 7001
    DOMAIN_HOME_PATH : C:/oracle/Middleware/user_projects/domains/ClassicDomain
    ADMIN_USER_NAME : weblogic
    MW_HOME : C:\oracle\Middleware
    ORACLE_HOME : C:\oracle\Middleware\FRHome
    INSTANCE_HOME : C:\oracle\Middleware\asinst_1
    INSTANCE_NAME : asinst_1
    CONFIGURE_FORMS : true
    CONFIGURE_FORMS_BUILDER : true
    CONFIGURE_REPORTS : true
    CONFIGURE_REPORTS_BUILDER : true
    CONFIGURE_OHS : false
    CONFIGURE_MANAGEMENT_COMPONENT : true
    PORT_LOCATION : 0
    AUTOMATIC_PORT_DETECT : true
    STATICPORT_INI_FILE_LOCATION :
    ENABLE_PROXY : false
    PROXY_HOST : proxy1.global.lmco.com
    PROXY_PORT : 8080
    PROXY_BYPASS :
    USE_OID : true
    OID_USE_SSL : false
    OID_HOST :
    OID_PORT :
    OID_USERNAME :
    Executing Task: Creating Domain
    XXX: adding task: oracle.as.install.classic.ca.standard.DomainProvisioningTask
    AdminServer port is 7001
    trying to connect to KBALD138H93R.acct03.us.lmco.com 7001
    Creating Weblogic Domain.
    oracle.as.provisioning.exception.ASProvWorkflowException
         at oracle.as.provisioning.weblogic.ASDomain._createDomain(ASDomain.java:2629)
         at oracle.as.provisioning.weblogic.ASDomain.createDomain(ASDomain.java:2475)
         at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:633)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:339)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:662)
    oracle.as.provisioning.exception.ASProvisioningException
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:872)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:339)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
         at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:686)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         ... 13 more
    Hope this sheds some light. This is getting real frustrating.

Maybe you are looking for

  • Huge file size after importing

    I have a shell (6 slides) used to jump out to windows media files. I imported only two slides from another project with text objects only and now the file size jumped from 977k to over 10 Meg. How on earth is this possible? basically powerpoint slide

  • Zen or Zen Vision

    I'll be buying two, primarily for my two daughters, 5 & 6yrs. They'll be used for music & movies on trips. I know the Vision M has an actual harddri've, and the other one is expandable via SD Cards, but what are the primary differences users see? Are

  • VI file cannot be completely shut down!?

    Hallo all experts, My VI application is to communicate with an A/D converter. It only works properly one time after opening. I have to totally close LabVIEW, then start it again for a second run. When I run HyperTerminal after stop the application, w

  • MS 6.0 Custom Editor

    In preparation of migration from MS 5.2 / DS 4.16 to current releases I have running a test installation jes 04Q2. Trying to manage users/groups I found problems using the custom editor of the management console. It seems, Sun don�t like to support t

  • Applet doesn't show image only if it is running on IE

    HI All, I'm developing an applet that show a table whre any single cell is composed by a Jlabel that contains an image and a text. So the applet working fine if I run it via eclipse viewer but when I create the HTML file addind the right archive cont