Provision an Applications Environment
Installing Oracle Fusion Applications > Setting up Fusion Applications Node > Provision an Applications Environment
Previous: Create new Applications Provisioning Response File
Pro Oracle Fusion Applications – Installation and Administration
Now you can buy the first and only comprehensive book on Oracle Fusion Applications Installation and Administration which covers end to end information on introduction, planning, installation and troubleshooting guides for implementing Fusion Applications on premise. Buy it now from any of the following stores.
http://www.amazon.com/Pro-Oracle-Fusion-Applications-Administration/dp/1484209842
http://www.barnesandnoble.com/w/pro-oracle-fusion-applications-tushar-thakker/1121094340
Preparing for Provisioning
We will need following libraries in the repository installers webgate directory. Let’s make sure if we have the required libraries. The output of all these should be more than 0.
[fusion@fahost bin]$ strings -a /lib64/libgcc_s.so.1 | grep -v .GCC_3.3.1. | grep -c “GCC_3.3”
2
[fusion@fahost bin]$ strings -a /lib64/libgcc_s.so.1 | grep -c “GCC_3.0”
1
[fusion@fahost bin]$ strings -a /lib64/libgcc_s.so.1 | grep -c “GCC_4.2.0”
1
[fusion@fahost bin]$ strings -a /lib64/libgcc_s.so.1 | grep -v “GCC_3.3.1” | grep -c “GCC_3.3”
1
[fusion@fahost bin]$ file -L /lib64/libgcc_s.so.1 | grep “64-bit” | grep -c “x86-64”
1
[fusion@fahost bin]$ file -L /usr/lib64/libstdc++.so.6 | grep “64-bit” | grep -c “x86-64”
1
Keep local copy of the libraries as well (optional)
[fusion@fahost bin]$ mkdir /app/fusion/oam_lib
[fusion@fahost bin]$ cp -p /lib64/libgcc_s.so.1 /app/fusion/oam_lib/
[fusion@fahost bin]$ cp -p /usr/lib64/libstdc++.so.6 /app/fusion/oam_lib/
[fusion@fahost bin]$ cp -p /usr/lib64/libstdc++.so.5 /app/fusion/oam_lib/
Copy the files in repository installers/webgate directory.
[fusion@fahost bin]$ cp -pr /app/fusion/oam_lib/* /stage/installers/webgate/
[fusion@fahost bin]$ ls -ltr /stage/installers/webgate/
total 1820
-rwxrwxrwx 1 root root 2480 Mar 3 2013 Labels.txt
drwxrwxrwx 1 root root 0 Oct 24 03:01 Disk1
drwxrwxrwx 1 root root 0 Oct 24 03:01 patch
-rwxrwxrwx 1 root root 58400 Oct 27 14:51 libgcc_s.so.1
-rwxrwxrwx 1 root root 825400 Oct 27 14:51 libstdc++.so.5
-rwxrwxrwx 1 root root 976312 Oct 27 14:51 libstdc++.so.6
Start Fusion Applications Provisioning
Launch the installer from <provisioning_repository>/bin
It is important to start it with “-ignoreSysPrereqs true” switch
[fusion@fahost bin]$ cd /app/fusion/provisioning/bin/
[fusion@fahost bin]$ ./provisioningWizard.sh -ignoreSysPrereqs true &
Click Next
Select “Provision an Applications Environment” and browse for the response file created in last step. Click Next
Review and click Next
Validate the information and click Next
In case if you want to revisit some of the section in the Response File then you can do so here. Click Next
Review the summary and click Next to begin. Good luck J
You can ignore the warning about HWR mount point size (1024GB). Click Next
Installation takes a few hours on entry level systems. Click Next once finished
Preconfigure shall finish maximum within an hour. Click Next once finished
Configure takes a few hours. Click Next once finished
Configure Primary/Secondary may take a few minutes. Click Next
Postconfigure phase takes very long time. Do not panic if you see errors during this phase since most of the errors are transient and can be fixed upon rerunning based on the error. You can see that HCM postconfigure failed and the error was related to timeout during high CPU activity.
We can rerun the phase by clicking on Retry and it will do cleanup/resotre to previous step (only for the failed product domains).
Here you can see the despite you see a red corss mark against HCM and still it is successful. This is due to following flexfield related errors which are not actually “errors” but the provisioning wizard incorrectly shows them as red mark. This does not affect the phase at all and installation continues.
Here is an example of the same. This may or may not occur during your installation.
Let’s go back to our postconfigure screen.
Click Next to start the “Startup” phase.
Here is the current memory utilization at this stage. (Apprpx 60GB used buffers)
[fusion@fahost fahost]$ free -m
total used free shared buffers cached
Mem: 90819 87601 3218 0 797 25526
-/+ buffers/cache: 61277 29542
Swap: 0 0 0
Validate phase might encounter some known errors as follows.
MESSAGE=Failed connecting to http://fahost:7010/integration/worklistapp/faces/login.jspx, Server redirected too many times (20)!DETAIL=Failed connecting to http://fahost:7010/integration/worklistapp/faces/login.jspx, Server redirected too many times (20)
The web page http://fahost:7001/em/faces/fa-faLogin;jsessionid=UUk-ZidyFeG2FHkJupePpadc6Jwez7Iy9yk5uqIxxteJK7VQDv_d!-1008637013?target=Farm_CommonDomain&type=oracle_ias_farm&FromContextInitFilter=true does not contain the text, html
These and few more expected error messages are documented in Oracle Support Document ID 1487115.1 and 1404577.1
If there are any other validation errors you must resolve them before proceeding to the Summary phase. After resolving all validation errors, if the Next button on the Provisioning Wizard is not enabled, perform these steps from the command line to enable it:
cd <APPLICATIONS_CONFIG>/phaseguards (for example /app/oracle/provisioning/phaseguards)
rm validate-<host>-FAILED.grd.
touch validate-<host>-COMPLETED.grd.
touch validate-<host>-ENDED.grd (this last part is not mentioned in Oracle documents but this is required for Next button to be enabled). Since there is no direct way to ignore this. We can skip this as follows.
WARNING:
Deleting and creating files in the phase guard directory should be used as a workaround to resolve validation phase issues ONLY if none of the other options work. In any other case, you should never modify or make changes to the phase guard files.
[fusion@fahost ~]$ cd /app/oracle/provisioning/phaseguards/
[fusion@fahost phaseguards]$ ls -ltr validate-fahost-*
-rwx—— 1 fusion dba 0 Nov 10 13:02 validate-fahost-STARTED.grd
-rwx—— 1 fusion dba 0 Nov 10 14:23 validate-fahost-FAILED.grd
[fusion@fahost phaseguards]$ rm validate-fahost-FAILED.grd
[fusion@fahost phaseguards]$ touch validate-fahost-COMPLETED.grd
[fusion@fahost phaseguards]$ touch validate-fahost-ENDED.grd
Now you can see the Next button enabled. Click Next to go to post-installation summary.
No need to manually copy the content since once you click Finish, it will create a provisioning summary file which contains all above information.
Login to Fusion Applications homepage URL https://fahost:10634/homePage with FAADMIN user. This would first redirect you to Single Sign-on screen and then redirect you back to Fusion Applications.
Click on Navigator to see list of functions.
Click on Setup and Maintenance to see the functional setup screen.
You can see that the products are “provisioned” but not “Implemented”. You can refer to individual product implementation guide to further implement the products.
This concludes our Fusion Applications 11.1.8 Installation..
Happy Learning !
Tushar Thakker
ORA Training
(A Division of Param Labs)
Installing Oracle Fusion Applications – steps
A. Setting up Identity and Access Management Node
1. Install Fusion Applications Provisioning Framework
2. Install Oracle 11g Database (Identity management database)
3. Run Repository Creation Utility (RCU) for Oracle Identity Management components
4. Install Identity Management Provisioning Wizard
5. Create IDM provisioning Response File
6. Provision Identity Management
7. Perform Post-Provisioning Configuration
B. Setting up Fusion Applications Node
1. Install Fusion Applications Provisioning Framework
2. Install Oracle 11g Database (Fusion Apps Database)
3. Run Oracle Fusion Applications Repository Creation Utility (Applications RCU)
4. Create new Applications Provisioning Response File
5. Provision an Applications Environment
Hi Tushar.
Why no install on 11.1.9?
I will like to know how to get the vision instance for the application please.
Rgds
James
Hi Tushar
During the postconfigure phase of FA the HCM error issues can be resolved after freeing the memory in the server.
this can be done by running this command using root user
sync; echo 3 > /proc/sys/vm/drop_caches
Then it’s worked
Provisioning fusion application 11.1.8, configure phase fails with following error:-
================================================
An Error Occured: [[
Process “/u01/app/oracle/fusionapps/oracle_common/bin/psa -response /u01/app/oracle/provisioning/debug/oraapps.xxxx.com/configure_30_11_17_15_07_56/psaEssResponse828130908.rsp -logDir /u01/app/oracle/logs/provisioning/plan1512018371424/psa” exited with non-zero exit code “255”. Input Stream before decrypting for process execution: “”. Environment variables: “”.
at oracle.apps.fnd.provisioning.ant.taskdefs.SecureExec.executeTask(SecureExec.java:348)
==============================================
The out file had following entries :-
==============================================
BUILD FAILED
/u01/app/fusion/provisioning/provisioning-build/orchestration-build.xml:816: The following error occurred while executing this line:
/u01/app/fusion/provisioning/provisioning-build/common-psa-build.xml:453: The following error occurred while executing this line:
/u01/app/fusion/provisioning/provisioning-build/common-psa-build.xml:526: Process “/u01/app/oracle/fusionapps/oracle_common/bin/psa -response /u01/app/oracle/provisioning/debug/oraapps.xxxx.com/configure_30_11_17_15_15_54/psaEssResponse459944819.rsp -logDir /u01/app/oracle/logs/provisioning/plan1512018371424/psa” exited with non-zero exit code “255”. Input Stream before decrypting for process execution: “”. Environment variables: “”.
Total time: 2 minutes 8 seconds
An ERROR occurred during configure
============================================
PSA out file had following error entry
JDBC SQLException – ErrorCode: 20000SQLState:72000 Message: ORA-20000: Secure Enterprise Search validation failed
ORA-06512: at “SYS.VALIDATE_EQ”, line 68
ORA-06512: at line 2
Error encountered executing SQL statement FileName: ‘/u01/app/oracle/fusionapps/ses/search/admin/eq0upgrade_end.sql’ LineNumber: ’30’
SQL Statement: [begin
SYS.VALIDATE_EQ;
end;
]
Installation failing at runIDMProvisioning-preconfigure. Please how can I get pass the stage.
[2017-05-21T07:32:17.355+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] Creating the basic skeleton
[2017-05-21T07:32:17.505+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] private-init-properties:
[2017-05-21T07:32:17.508+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Identity Management Suite)
[2017-05-21T07:32:17.511+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] common-propertyops.set-bootstrap-provisioning-classpath:
[2017-05-21T07:32:17.511+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Identity Management Suite)
[2017-05-21T07:32:17.880+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] set-bootstrap-provisioning-classpath:
[2017-05-21T07:32:17.880+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Identity Management Suite)
[2017-05-21T07:32:17.930+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] bootstrap.provisioning.classpath=[[
[echo] /apps/provisioning/tools/idmlcm/provisioning/lib/oracle-provisioning-anttasks.jar
[echo] /apps/provisioning/tools/idmlcm/provisioning/lib/oracle-provisioning-tools.jar
[echo] /apps/provisioning/tools/idmlcm/provisioning/lib/ant-contrib.jar
[echo] /apps/provisioning/tools/idmlcm/provisioning/lib/oraclepki.jar
[echo] /apps/provisioning/tools/idmlcm/provisioning/lib/cryptoj.jar
[echo] /apps/provisioning/tools/idmlcm/provisioning/lib/ojmisc.jar
[echo] /apps/provisioning/tools/idmlcm/provisioning/lib/oracle-idmprovisioning-anttasks.jar
[echo] /apps/provisioning/tools/idmlcm/provisioning/lib/oracle-idmprovisioning-credstore.jar
[echo] /apps/provisioning/tools/idmlcm/provisioning/lib/oracle-idmprovisioning-extension.jar
[echo] /apps/provisioning/tools/idmlcm/provisioning/lib/oracle-idmprovisioning-flowdesigner.jar
[echo] /apps/provisioning/tools/idmlcm/provisioning/lib/oracle-idmprovisioning-scriptsutil.jar
[echo] /apps/provisioning/tools/idmlcm/provisioning/lib/oracle-idmprovisioning-scripttasks.jar
[echo] /apps/provisioning/tools/idmlcm/provisioning/lib/oracle-idmprovisioning-tools.jar
[echo] /apps/provisioning/tools/idmlcm/provisioning/lib/oracle-idmprovisioning-topology.jar
[echo] /apps/provisioning/tools/idmlcm/provisioning/lib/oracle-idmprovisioning-util.jar
[echo] END
]]
[2017-05-21T07:32:18.209+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [FAPROV-01162] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [arg: /apps/oracle/plan.lck] [arg: 21 May 2017 07:32:18 WAT] Trying to acquire lock on file /apps/oracle/plan.lck since 21 May 2017 07:32:18 WAT
[2017-05-21T07:32:18.223+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [FAPROV-01234] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [arg: /apps/oracle/plan.lck] [arg: 21 May 2017 07:32:18 WAT] [arg: 0] Successfully acquired lock on file /apps/oracle/plan.lck at 21 May 2017 07:32:18 WAT. Waited for 0 seconds
[2017-05-21T07:32:18.232+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [FAPROV-01073] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [arg: /apps/oracle/plan.lck] Changing permissions recursively for /apps/oracle/plan.lck. This may take a while…
[2017-05-21T07:32:18.234+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [FAPROV-01074] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Permissons changed.
[2017-05-21T07:32:18.235+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] Plan file: /apps/oracle/provisioning/plan/provisioning.plan
[2017-05-21T07:32:18.236+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] Plan exists? true
[2017-05-21T07:32:18.293+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] Plan generated checksum: 8f98b4fc328a0a4010ce0df6238cfeadaefc15803734e2b9e1196d9e68ee30b150073a4f85c65edce7bf8d809309493f8ac020913d037da90d6df85886efaf41
[2017-05-21T07:32:18.304+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] Plan checksum: 8f98b4fc328a0a4010ce0df6238cfeadaefc15803734e2b9e1196d9e68ee30b150073a4f85c65edce7bf8d809309493f8ac020913d037da90d6df85886efaf41
[2017-05-21T07:32:18.308+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [FAPROV-01161] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [arg: /apps/oracle/plan.lck] [arg: 21 May 2017 07:32:18 WAT] Released lock on file /apps/oracle/plan.lck at time 21 May 2017 07:32:18 WAT
[2017-05-21T07:32:18.308+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] preverify.ignore is false
[2017-05-21T07:32:18.313+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [loadplan] No override file specified. Skipping overrides.
[2017-05-21T07:32:18.313+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [loadplan] Loading /apps/oracle/provisioning/plan/provisioning.plan
[2017-05-21T07:32:18.317+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [loadplan] Loaded /apps/oracle/provisioning/plan/provisioning.plan
[2017-05-21T07:32:18.317+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [loadplan] Before setting: invPtrLoc property provisioning.setup.common.core.oui.installer.invptrloc:
[2017-05-21T07:32:18.317+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [loadplan] No inventory pointer location file specified.
[2017-05-21T07:32:18.317+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [loadplan] After setting: invPtrLoc property provisioning.setup.common.core.oui.installer.invptrloc:
[2017-05-21T07:32:18.317+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [loadplan] Before setting: ignoreSysPrereqs property provisioning.setup.common.core.prereqchecks.bypass: false
[2017-05-21T07:32:18.318+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [loadplan] After setting: ignoreSysPrereqs property provisioning.setup.common.core.prereqchecks.bypass: false
[2017-05-21T07:32:19.537+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [loadplan] Saved a copy of all plan properties in /tmp/plan4242959064586954776.properties
[2017-05-21T07:32:19.538+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [loadplan] Repository value from props: /home/oracle/stage
[2017-05-21T07:32:19.539+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [loadplan] Checking for existence of the repository at /home/oracle/stage
[2017-05-21T07:32:19.542+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] Inventory Pointer Location File (based on property):
[2017-05-21T07:32:19.542+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] Plan shows provisioning.setup.common.core.prereqchecks.bypass:false
[2017-05-21T07:32:19.542+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] Plan shows provisioning.setup.common.core.disable.phaseguard.preverify:false
[2017-05-21T07:32:19.791+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task dash2dot
[2017-05-21T07:32:19.793+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task back2frontslash
[2017-05-21T07:32:19.793+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task front2backslash
[2017-05-21T07:32:19.800+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task initidentity
[2017-05-21T07:32:19.800+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task generatekeypair
[2017-05-21T07:32:19.800+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task importcertintojks
[2017-05-21T07:32:19.801+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task exportcertfromjks
[2017-05-21T07:32:19.801+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task copycertfromjkstojks
[2017-05-21T07:32:19.801+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task copycertfromjkstowallet
[2017-05-21T07:32:19.802+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task copycertfromwallettojks
[2017-05-21T07:32:19.802+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task getwlscertdname
[2017-05-21T07:32:19.803+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task importcertfilesintokeystore
[2017-05-21T07:32:19.803+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task importkeystore
[2017-05-21T07:32:19.803+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task keystorehascert
[2017-05-21T07:32:19.804+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task importcertintowallet
[2017-05-21T07:32:19.804+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task exportcertfromwallet
[2017-05-21T07:32:19.804+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task importcertfilesintowallet
[2017-05-21T07:32:19.805+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task wallethascert
[2017-05-21T07:32:19.805+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task getoidurl
[2017-05-21T07:32:19.810+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task seedadfcredentials
[2017-05-21T07:32:19.810+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task convertjkstoautologinwallet
[2017-05-21T07:32:19.810+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task getidentitykeystorefile
[2017-05-21T07:32:19.811+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task gettrustkeystorefile
[2017-05-21T07:32:19.811+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task gettrustkeystorefilerelpath
[2017-05-21T07:32:19.811+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task getjavassldefinerelpath
[2017-05-21T07:32:19.812+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task gettrustwalletfile
[2017-05-21T07:32:19.812+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task getjavassldefine
[2017-05-21T07:32:19.812+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task getwlsssldefine
[2017-05-21T07:32:19.813+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task failAndLogStatus
[2017-05-21T07:32:19.814+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task validateStringLength
[2017-05-21T07:32:19.814+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task validateNumberInRange
[2017-05-21T07:32:19.821+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task installwls
[2017-05-21T07:32:19.821+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task internalinstallwls
[2017-05-21T07:32:19.822+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task initnm
[2017-05-21T07:32:19.822+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task configurenm
[2017-05-21T07:32:19.822+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task internalinstallnm
[2017-05-21T07:32:19.823+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task initnm_root
[2017-05-21T07:32:19.823+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task initidentity_root
[2017-05-21T07:32:19.823+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task configurenm_root
[2017-05-21T07:32:19.824+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task internalinstallnm_root
[2017-05-21T07:32:19.824+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task uninstallwls
[2017-05-21T07:32:19.824+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task internaluninstallwls
[2017-05-21T07:32:19.825+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task installfusionapps
[2017-05-21T07:32:19.825+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task internalinstallfusionapps
[2017-05-21T07:32:19.825+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task uninstallfusionapps
[2017-05-21T07:32:19.826+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task internaluninstallfusionapps
[2017-05-21T07:32:19.826+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task installowlcscoreplatform
[2017-05-21T07:32:19.826+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task internalinstallowlcscoreplatform
[2017-05-21T07:32:19.827+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task installjdev
[2017-05-21T07:32:19.827+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task internalinstalljdev
[2017-05-21T07:32:19.827+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task generatewlscert
[2017-05-21T07:32:19.828+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task internalgeneratewlscert
[2017-05-21T07:32:19.828+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task ocmpropertylogic
[2017-05-21T07:32:19.829+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task installjdk
[2017-05-21T07:32:19.829+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task internalinstalljdk
[2017-05-21T07:32:19.830+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task internalvalidatejdkpreexists
[2017-05-21T07:32:19.831+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task internalinstalljdk_solaris64bit
[2017-05-21T07:32:19.831+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task internalinstalljdk_jrockit64
[2017-05-21T07:32:19.831+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task copyjdkinstallscriptandexec
[2017-05-21T07:32:19.832+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task setplatformtypeproperties
[2017-05-21T07:32:19.832+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task opatch.init
[2017-05-21T07:32:19.842+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task updatewlstrustkeystore
[2017-05-21T07:32:19.843+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task importidmjks
[2017-05-21T07:32:19.843+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task importcacertsjks
[2017-05-21T07:32:19.843+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task addtargettodatasources
[2017-05-21T07:32:19.844+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task getDbConnectInfo
[2017-05-21T07:32:19.844+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task packdomain
[2017-05-21T07:32:19.844+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task unpackdomain
[2017-05-21T07:32:19.845+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task packandunpackdomain
[2017-05-21T07:32:19.845+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task packandunpackdomain_fa
[2017-05-21T07:32:19.845+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task packandunpackdomain_txk
[2017-05-21T07:32:19.846+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task setscriptext
[2017-05-21T07:32:19.846+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task checking_mbean_tree
[2017-05-21T07:32:19.846+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task checkIfComponentExists
[2017-05-21T07:32:19.855+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task setocmfilename
[2017-05-21T07:32:19.856+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task setocmtodos
[2017-05-21T07:32:19.856+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task getOrapkiPath
[2017-05-21T07:32:19.866+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task setCurrentplatformtypeproperties
[2017-05-21T07:32:19.873+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task beginCleanup
[2017-05-21T07:32:19.874+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task endCleanup
[2017-05-21T07:32:19.874+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task beginRestore
[2017-05-21T07:32:19.875+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task endRestore
[2017-05-21T07:32:19.875+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task compresswindowspostconfinst
[2017-05-21T07:32:19.875+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task compress
[2017-05-21T07:32:19.876+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task expand
[2017-05-21T07:32:19.876+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task expand-partial
[2017-05-21T07:32:19.876+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task failIfBackupInProgress
[2017-05-21T07:32:19.877+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task init-local-properties
[2017-05-21T07:32:19.877+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task restoreOidPolicyDomain
[2017-05-21T07:32:19.877+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task cleanupOidPolicyDomainForFailedPF
[2017-05-21T07:32:19.878+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task cleanupOidPolicyDomain
[2017-05-21T07:32:19.878+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task cleanupIdentitiesOnLdap
[2017-05-21T07:32:19.880+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task execute.psa
[2017-05-21T07:32:19.891+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task write-application-phase-status
[2017-05-21T07:32:19.892+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task wait-for-dependent-application-phase-status
[2017-05-21T07:32:19.892+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task packandunpackdomain_idm
[2017-05-21T07:32:19.892+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] Creating the basic skeleton
[2017-05-21T07:32:19.896+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] is.plan.valid:
[2017-05-21T07:32:19.896+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Identity Management Suite)
[2017-05-21T07:32:19.915+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task shellscript
[2017-05-21T07:32:19.915+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task propertycopy
[2017-05-21T07:32:19.917+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task pathtofileset
[2017-05-21T07:32:19.919+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task remoteant
[2017-05-21T07:32:19.920+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task runtarget
[2017-05-21T07:32:19.921+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task assert
[2017-05-21T07:32:19.922+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task propertyregex
[2017-05-21T07:32:19.922+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task math
[2017-05-21T07:32:19.923+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task trycatch
[2017-05-21T07:32:19.923+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task antserver
[2017-05-21T07:32:19.932+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task antcallback
[2017-05-21T07:32:19.934+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task compilewithwalls
[2017-05-21T07:32:19.935+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task outofdate
[2017-05-21T07:32:19.935+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task osfamily
[2017-05-21T07:32:19.936+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task stopwatch
[2017-05-21T07:32:19.937+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task throw
[2017-05-21T07:32:19.939+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task antclipse
[2017-05-21T07:32:19.941+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task urlencode
[2017-05-21T07:32:19.941+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task bool
[2017-05-21T07:32:19.942+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task timestampselector
[2017-05-21T07:32:19.943+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task foreach
[2017-05-21T07:32:19.944+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task if
[2017-05-21T07:32:19.944+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task propertyselector
[2017-05-21T07:32:19.945+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task sortlist
[2017-05-21T07:32:19.946+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task antfetch
[2017-05-21T07:32:19.948+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task post
[2017-05-21T07:32:19.949+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task forget
[2017-05-21T07:32:19.951+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task limit
[2017-05-21T07:32:19.952+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task switch
[2017-05-21T07:32:19.953+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task var
[2017-05-21T07:32:19.954+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task inifile
[2017-05-21T07:32:19.954+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task verifydesign
[2017-05-21T07:32:20.233+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] Creating the basic skeleton
[2017-05-21T07:32:20.237+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] printClasspath:
[2017-05-21T07:32:20.237+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Identity Management Suite)
[2017-05-21T07:32:20.239+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] Using the following classpath:
[2017-05-21T07:32:20.240+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] ========================================
[2017-05-21T07:32:20.240+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] /apps/provisioning/tools/idmlcm/common/util/ant/lib/ant.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/oracle-idmprovisioning-anttasks.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/oracle-idmprovisioning-extension.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/oracle-idmprovisioning-tools.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/oracle-idmprovisioning-topology.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/oracle-idmprovisioning-util.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/oracle-provisioning-tools.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/oracle-provisioning-anttasks.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/oracle-provisioning-apps-metadata.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/odi-core.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/ant-contrib.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/catalina-ant.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/httpunit.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/idmsuitevalidationservice.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/groovy-1.5.7.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/spring-beans.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/spring-core.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/spring-dao.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/spring-jdbc.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/oracle.lcm.sdk.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/oracle.lcm.sdk.odi.jar:/apps/provisioning/tools/idmlcm/provisioning/lib/oracle.lcm.sdk.ibr.jar:/apps/oracle/products/app/iam/server/client/oimclient.jar:/apps/oracle/products/dir/oracle_common/modules/oracle.ldap_11.1.1/ldifloadtool.jar:/${provisioning.include.fs.app.fs-app.home.oracle.common}/modules/oracle.pwdgen_11.1.1/pwdgen.jar:/${provisioning.include.fs.techstack.soa.home.oracle}/soa/modules/oracle.soa.workflow_11.1.1/bpm-services.jar:/${provisioning.include.fs.techstack.atgpf.home.oracle}/ecsf/modules/oracle.ecsf_11.1.1/lib/search_adminapi_wsclient.jar:/${provisioning.include.fs.app.fs-app.home.oracle.common}/modules/oracle.ldap_11.1.1/ldifloadtool.jar:/apps/oracle/fusionapps/wlserver_10.3/server/lib/wljmxclient.jar:/apps/oracle/webtier_mwhome/webtier/opmn/lib/wlfullclient.jar:/${provisioning.setup.common.core.default.home.fmw.j2ee}/wlserver_10.3/server/lib/ojdbc6.jar:/${provisioning.setup.common.core.default.home.fmw.j2ee}/oracle_common/soa/modules/commons-cli-1.1.jar:/${provisioning.include.crm.techstack.odi.home.oracle}/oracledi.sdk/lib/odi-core.jar:/${provisioning.include.crm.techstack.odi.home.oracle}/oracledi.sdk/lib/spring-core.jar:/${provisioning.include.crm.techstack.odi.home.oracle}/oracledi.sdk/lib/commons-logging-1.1.1.jar:/${provisioning.include.crm.techstack.odi.home.oracle}/oracledi.sdk/lib/eclipselink.jar:/${provisioning.include.crm.techstack.odi.home.oracle}/oracledi.sdk/lib/commons-lang-2.2.jar:/${provisioning.include.crm.techstack.odi.home.oracle}/oracledi.sdk/lib/commons-collections-3.2.jar:/${provisioning.include.crm.techstack.odi.home.oracle}/oracledi.sdk/lib/persistence.jar:/${provisioning.include.fs.app.fs-app.home.oracle.common}/modules/oracle.jps_11.1.1/jps-api.jar:/${provisioning.include.fs.app.fs-app.home.oracle.common}/modules/oracle.idm_11.1.1/identitystore.jar:/${provisioning.include.fs.app.fs-app.home.oracle.common}/modules/oracle.jps_11.1.1/jps-unsupported-api.jar:/${provisioning.include.fs.app.fs-app.home.oracle.common}/modules/oracle.jps_11.1.1/jps-internal.jar:/${provisioning.include.fs.app.fs-app.home.oracle.common}/modules/oracle.jps_11.1.1/jps-se.jar:/${provisioning.include.fs.app.fs-app.home.oracle.common}/modules/oracle.ucp_11.1.0.jar:/${provisioning.include.fs.fusionapps.appltop.home}/lcm/sdk/lib/oracle.lcm.sdk.jar:/${provisioning.include.fs.fusionapps.appltop.home}/lcm/sdk/lib/oracle.lcm.sdk.odi.jar:/${provisioning.include.fs.fusionapps.appltop.home}/lcm/sdk/lib/oracle.lcm.sdk.ibr.jar:/${provisioning.include.fs.app.fs-app.home.oracle.common}/jlib/ua.jar:/${provisioning.include.fs.app.fs-app.home.oracle.common}/oui/jlib/ojmisc.jar
[2017-05-21T07:32:20.242+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] common-taskdefs.common-define-tasks:
[2017-05-21T07:32:20.242+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Identity Management Suite)
[2017-05-21T07:32:20.311+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task failNested
[2017-05-21T07:32:20.874+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task isPhaseRunningOnOtherHosts
[2017-05-21T07:32:21.569+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task logStatus
[2017-05-21T07:32:22.577+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task synchronized
[2017-05-21T07:32:23.339+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] execute: property = null
[2017-05-21T07:32:23.339+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] Registering build listener
[2017-05-21T07:32:23.479+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task seedCredentials
[2017-05-21T07:32:23.542+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Trying to override old definition of task validateFileDescriptorLimitTask
[2017-05-21T07:32:23.589+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [FAPROV-01162] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [arg: /apps/oracle/config/provisioning/provlocks/createdebugdir.lck] [arg: 21 May 2017 07:32:23 WAT] Trying to acquire lock on file /apps/oracle/config/provisioning/provlocks/createdebugdir.lck since 21 May 2017 07:32:23 WAT
[2017-05-21T07:32:23.589+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [FAPROV-01234] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [arg: /apps/oracle/config/provisioning/provlocks/createdebugdir.lck] [arg: 21 May 2017 07:32:23 WAT] [arg: 0] Successfully acquired lock on file /apps/oracle/config/provisioning/provlocks/createdebugdir.lck at 21 May 2017 07:32:23 WAT. Waited for 0 seconds
[2017-05-21T07:32:23.590+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [FAPROV-01073] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [arg: /apps/oracle/config/provisioning/provlocks/createdebugdir.lck] Changing permissions recursively for /apps/oracle/config/provisioning/provlocks/createdebugdir.lck. This may take a while…
[2017-05-21T07:32:23.591+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [FAPROV-01074] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Permissons changed.
[2017-05-21T07:32:23.604+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Debug dir does not exist. Creating: /apps/oracle/config/provisioning/debug/fusdb.appsserver.com/preconfigure_21_05_17_07_32_12
[2017-05-21T07:32:23.607+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [FAPROV-01161] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [arg: /apps/oracle/config/provisioning/provlocks/createdebugdir.lck] [arg: 21 May 2017 07:32:23 WAT] Released lock on file /apps/oracle/config/provisioning/provlocks/createdebugdir.lck at time 21 May 2017 07:32:23 WAT
[2017-05-21T07:32:23.607+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] Build log directory exists
[2017-05-21T07:32:23.613+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [mkdir] Created dir: /tmp/idmprov
[2017-05-21T07:32:23.624+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] OID IDStore DB SID value fusiondb
[2017-05-21T07:32:23.624+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] OID PStore DB SID value fusiondb
[2017-05-21T07:32:23.624+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] OIM DB SID value fusiondb
[2017-05-21T07:32:23.625+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] OAM DB SID value fusiondb
[2017-05-21T07:32:23.626+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] preconfigure:
[2017-05-21T07:32:23.626+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Identity Management Suite)
[2017-05-21T07:32:23.632+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Starting the preconfigure process for Identity Management Suite ….
[2017-05-21T07:32:23.728+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [logStatus] STATE=BUILD_STARTED!TIMESTAMP=2017-05-21 07:32:23 WAT!TARGET=preconfigure!CATEGORY=orchestration!DOMAIN=NONE!HOSTNAME=fusdb.appsserver.com!PRODUCTFAMILY=orchestration!PRODUCT=orchestration!TASK=preconfigure!TASKID=orchestration.orchestration.NONE.preconfigure.NONE!MESSAGE=Starting preconfigure for Identity Management Suite!DETAIL=!BUILDFILE=/apps/provisioning/tools/idmlcm/provisioning/idm-provisioning-build/idm-orchestration-build.xml!LINENUMBER=172!
[2017-05-21T07:32:23.765+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [FAPROV-01073] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [arg: /apps/oracle/provisioning/phaseguards/preconfigure-fusdb.appsserver.com-STARTED.grd] Changing permissions recursively for /apps/oracle/provisioning/phaseguards/preconfigure-fusdb.appsserver.com-STARTED.grd. This may take a while…
[2017-05-21T07:32:23.766+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [FAPROV-01074] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] Permissons changed.
[2017-05-21T07:32:23.766+01:00] [runIDMProvisioning-preconfigure] [NOTIFICATION] [FAPROV-01197] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [arg: /apps/oracle/provisioning/phaseguards/preconfigure-fusdb.appsserver.com-STARTED.grd] Wrote phase guard file /apps/oracle/provisioning/phaseguards/preconfigure-fusdb.appsserver.com-STARTED.grd
[2017-05-21T07:32:23.885+01:00] [runIDMProvisioning-preconfigure] [WARNING] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [echo] Creating the basic skeleton
[2017-05-21T07:32:23.887+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] private-invoke-directory:
[2017-05-21T07:32:23.887+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Identity Management Suite)
[2017-05-21T07:32:24.030+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] private-init-properties:
[2017-05-21T07:32:24.030+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Directory Suite)
[2017-05-21T07:32:24.030+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] common-propertyops.set-bootstrap-provisioning-classpath:
[2017-05-21T07:32:24.031+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Directory Suite)
[2017-05-21T07:32:24.031+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] set-bootstrap-provisioning-classpath:
[2017-05-21T07:32:24.032+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Directory Suite)
[2017-05-21T07:32:24.032+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] common-taskdefs.common-define-tasks:
[2017-05-21T07:32:24.033+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Directory Suite)
[2017-05-21T07:32:24.235+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] product-define-tasks:
[2017-05-21T07:32:24.235+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Directory Suite)
[2017-05-21T07:32:24.236+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] base-preinit:
[2017-05-21T07:32:24.236+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Directory Suite)
[2017-05-21T07:32:24.249+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] product-preinit:
[2017-05-21T07:32:24.249+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Directory Suite)
[2017-05-21T07:32:24.260+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] base-init:
[2017-05-21T07:32:24.261+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Directory Suite)
[2017-05-21T07:32:24.272+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] product-postinit:
[2017-05-21T07:32:24.272+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Directory Suite)
[2017-05-21T07:32:24.272+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] product.name=directory
[2017-05-21T07:32:24.273+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] component.key=provisioning.idmprov.product.directory
[2017-05-21T07:32:24.274+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] eval.action.provision.directory=true
[2017-05-21T07:32:24.275+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] provisioning.idmprov.product.directory.host=fusdb.appsserver.com
[2017-05-21T07:32:24.276+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] provisioning.idmprov.product.directory.installs.here=true
[2017-05-21T07:32:24.277+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] provisioning.idmprov.product.directory.runs.here=true
[2017-05-21T07:32:24.278+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] provisioning.idmprov.product.directory.instance2.host=
[2017-05-21T07:32:24.278+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] provisioning.idmprov.product.directory.instance2.runs.here=${provisioning.idmprov.product.directory.instance2.runs.here}
[2017-05-21T07:32:24.279+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] preverify.provisioning.idmprov.product.directory.todo=true
[2017-05-21T07:32:24.280+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] install.provisioning.idmprov.product.directory.todo=true
[2017-05-21T07:32:24.280+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] preconfigure.provisioning.idmprov.product.directory.todo=true
[2017-05-21T07:32:24.281+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] configure.provisioning.idmprov.product.directory.todo=true
[2017-05-21T07:32:24.281+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] configure-secondary.provisioning.idmprov.product.directory.todo=${configur-secondary.provisioning.idmprov.product.directory.todo}
[2017-05-21T07:32:24.282+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] postconfigure.provisioning.idmprov.product.directory.todo=true
[2017-05-21T07:32:24.282+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] startup.provisioning.idmprov.product.directory.todo=true
[2017-05-21T07:32:24.283+01:00] [runIDMProvisioning-preconfigure] [TRACE] [] [runIDMProvisioning-preconfigure] [tid: 10] [ecid: 0000LkdhDgV1rYWzLwjO8A1P8JHl000001,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] validate.provisioning.idmprov.product.directory.todo=true
[2017-05-21T0
Hi Tushar,
I am at postconfigure stage and build for hcm product family is failing. When I attempt to start the node manager, for retrying the phase, CPU utilization goes up to 100% and nothing happens.
Can you please help.
Thanks
Srini
Hi Tushar,
I am facing internal error at FA provisioning->Prerequisite checks and closing provisioning wizard:
Error: LogfileMonitor not found for host
Kindly assist.
Regards
RamPrasad
guest OS OEL 6.8
Dear Tushar,
Please ignore this…error was due to host name resolution..issue fixed after correcting etc/hosts.
Hi,Tushar
Thank you very much for sharing this. I have setup the HCM fusion, now i want to use the “report and analysis” tools, but I don’t know how to config it, can you help me and show me how to do ?
Thanks & regards,
Jonee
Hi Tushar,
I have gone through all the steps in your book however at the point of the startup phase on the Fusion node, it fails immediately. In the log I get hundreds of these types of message:
[2016-08-23T09:11:46.720+01:00] [runProvisioning-startup] [NOTIFICATION] [] [runProvisioning-startup] [tid: 10] [ecid: 0000LQqSfi6F^6WFLzaQOA1Nj0JB000000,0] SEVERE: RuntimeException raised. Incorrect entry found in db for application role FND_HCM_APPLICATION_LOOKUP_ADMINISTRATION_DUTY . May require reconciliation with target LDAP Processing row with grant_guid : 051D775DFF12D65D6A7E7278CFA354E4 ROLE_NAME is FND_HCM_APPLICATION_LOOKUP_ADMINISTRATION_DUTY ROLE_NAME_SPACE is fscm. FND_HCM_APPLICATION_LOOKUP_ADMINISTRATION_DUTY GUID in database is 1D660B7F09FFB71CF9A146C469EFF631 Runtime Exception is oracle.security.jps.JpsRuntimeException: idmhost:3060; socket closed
[2016-08-23T09:11:46.720+01:00] [runProvisioning-startup] [NOTIFICATION] [] [runProvisioning-startup] [tid: 10] [ecid: 0000LQqSfi6F^6WFLzaQOA1Nj0JB000000,0] Aug 23, 2016 9:11:46 AM oracle.apps.fnd.applcore.dataSecurity.util.DSDataMigratorUtil logMessage
[2016-08-23T09:11:46.720+01:00] [runProvisioning-startup] [NOTIFICATION] [] [runProvisioning-startup] [tid: 10] [ecid: 0000LQqSfi6F^6WFLzaQOA1Nj0JB000000,0] SEVERE: PolicyStore is null. Cannot get handle to JpsContextFactory
[2016-08-23T09:11:46.720+01:00] [runProvisioning-startup] [NOTIFICATION] [] [runProvisioning-startup] [tid: 10] [ecid: 0000LQqSfi6F^6WFLzaQOA1Nj0JB000000,0] Aug 23, 2016 9:11:46 AM oracle.apps.fnd.applcore.dataSecurity.util.DSDataMigratorUtil logMessage
I can’t find anything else around this, and can’t find anything on Google/Metalink about it.
Can you offer any insight?
Thanks
Hi Tushar,
Requesting your help for the issue faced by me in the postconfigure phase.
I havent faced even a single error message till this point.
The post configure phase failed initially.
I just rebooted the server and tried again but it fails everytime immediately.
On seeing the logs it says unable to connect to nodemanager. and when i click on retry button it tells me to shutdown each domain manually in FA. But in the server none of the admin server is running except the db and listener process.
I tried to start the startNodeManagerWrapper.sh script manually but it failed with the below error message.
eb 2, 2016 10:50:28 PM weblogic.nodemanager.server.NMServer main
SEVERE: Fatal error in node manager server: Incorrect identity private key password
It will be great if you could help me in fixing the issue with all your expertise in FA.
Hi Tushar,
i have successsfully completed the tasks till configure secondary without any issues.
I have enabled financials,hcm and scm modules.
In post configure phase i get this below error when i try to manually start the nodemanagerwrapper.sh script.
Feb 2, 2016 10:50:28 PM weblogic.nodemanager.server.NMServer main
SEVERE: Fatal error in node manager server: Incorrect identity private key password
i had tried rebooting this server and also the idm server.
but no luck .
Any help here will be really useful.
Awaiting your response.
Hello Tushar,
I am installing 11.1.9 using these instruction, there are very helpful and I completed the 11.1.9 till Post configuration of Fusion Application without any issue with in couple of days on my own server.
But I got stuck in post configuration from last 2-3 days.
Can you please look at the error and guide me as I am very close to finish and start practicing on it.
here is the error I am facing in Functional setup:
[2015-04-05T22:08:08.970-07:00] [runProvisioning-postconfigure] [TRACE] [] [runProvisioning-postconfigure] [tid: 10] [ecid: 0000KmD8ED83n3WjLxiOOA1L8XIp000002,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] Found element cluster with name UCMCluster in /app/oracle/instance/domains/fahost.esquirelab.com/CommonDomain/config/config.xml
[2015-04-05T22:08:09.007-07:00] [runProvisioning-postconfigure] [TRACE] [] [runProvisioning-postconfigure] [tid: 10] [ecid: 0000KmD8ED83n3WjLxiOOA1L8XIp000002,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] private-configure-ucm-webservice:
[2015-04-05T22:08:09.007-07:00] [runProvisioning-postconfigure] [TRACE] [] [runProvisioning-postconfigure] [tid: 10] [ecid: 0000KmD8ED83n3WjLxiOOA1L8XIp000002,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (ucm)
[2015-04-05T22:08:11.930-07:00] [runProvisioning-postconfigure] [TRACE] [] [runProvisioning-postconfigure] [tid: 10] [ecid: 0000KmD8ED83n3WjLxiOOA1L8XIp000002,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] BUILD SUCCESSFUL[[
Total time: 9 seconds
]]
[2015-04-05T22:16:36.740-07:00] [runProvisioning-postconfigure] [TRACE] [] [runProvisioning-postconfigure] [tid: 11] [ecid: 0000KmCz16i3n3WjLxiOOA1L8Wgu000003,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] Finished parallel operation – fs-postconfigure: Log file – /app/oracle/logs/provisioning/plan1427956622966/fahost.esquirelab.com/runProvisioning-fs-postconfigure.log
[2015-04-05T22:16:36.753-07:00] [runProvisioning-postconfigure] [NOTIFICATION] [] [runProvisioning-postconfigure] [tid: 11] [ecid: 0000KmCz16i3n3WjLxiOOA1L8Wgu000003,0] [logStatus] STATE=BUILD_ERROR!TIMESTAMP=2015-04-05 22:16:36 PDT!TARGET=postconfigure!CATEGORY=product-family-thread!DOMAIN=!HOSTNAME=fahost.esquirelab.com!PRODUCTFAMILY=fs!PRODUCT=!TASK=private-invoke-parallel!TASKID=fs.NONE.product-family-thread.postconfigure.private-invoke-parallel!MESSAGE=!DETAIL=!BUILDFILE=/app/fusion/provisioning/provisioning-build/listener-build.xml!LINENUMBER=106!
[2015-04-05T22:16:36.755-07:00] [runProvisioning-postconfigure] [ERROR] [FAPROV-00101] [runProvisioning-postconfigure] [tid: 11] [ecid: 0000KmCz16i3n3WjLxiOOA1L8Wgu000003,0] [arg: The following error occurred while executing this line:\n/app/fusion/provisioning/provisioning-build/orchestration-build.xml:2814: The following error occurred while executing this line:\n/app/fusion/provisioning/provisioning-build/base-product-family-build.xml:1099: The following error occurred while executing this line:\n/app/fusion/provisioning/provisioning-build/fs-build.xml:801: The following error occurred while executing this line:\n/app/fusion/provisioning/provisioning-build/base-product-family-build.xml:708: The following error occurred while executing this line:\n/app/fusion/provisioning/provisioning-build/base-techstack-build.xml:212: The following error occurred while executing this line:\n/app/fusion/provisioning/provisioning-build/ucm-build.xml:610: Java returned: 1] ERROR: The following error occurred while executing this line:[[
/app/fusion/provisioning/provisioning-build/orchestration-build.xml:2814: The following error occurred while executing this line:
/app/fusion/provisioning/provisioning-build/base-product-family-build.xml:1099: The following error occurred while executing this line:
/app/fusion/provisioning/provisioning-build/fs-build.xml:801: The following error occurred while executing this line:
/app/fusion/provisioning/provisioning-build/base-product-family-build.xml:708: The following error occurred while executing this line:
/app/fusion/provisioning/provisioning-build/base-techstack-build.xml:212: The following error occurred while executing this line:
/app/fusion/provisioning/provisioning-build/ucm-build.xml:610: Java returned: 1
]]
[2015-04-05T22:16:36.756-07:00] [runProvisioning-postconfigure] [WARNING] [FAPROV-00102] [runProvisioning-postconfigure] [tid: 11] [ecid: 0000KmCz16i3n3WjLxiOOA1L8Wgu000003,0] [arg: fs-postconfigure] [arg: /app/oracle/logs/provisioning/plan1427956622966/fahost.esquirelab.com/runProvisioning-postconfigure.log] An error occurred for parallel operation fs-postconfigure. Please refer to log file /app/oracle/logs/provisioning/plan1427956622966/fahost.esquirelab.com/runProvisioning-postconfigure.log for more details.
[2015-04-05T22:16:37.193-07:00] [runProvisioning-postconfigure] [TRACE] [] [runProvisioning-postconfigure] [tid: 76] [ecid: 0000KmDABF93n3WjLxiOOA1L8Wgu000014,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log]
********************************************************
Here is the error I am getting in all other domains.
/app/fusion/provisioning/provisioning-build/common-misc-build.xml:110: Flexfield generation aborted because postconfigure for Common Domain has failed without completing taxonomy upload.
Thanks in advance,
Raj
Hello Tushar,
Here is the actual error in UCM_server1 it is long one, sorry for that.
####
####
####
####
####
####
####
####
####
#### <> <Ignored deployment of role \"Admin\" for resource \"type=, application=DMS Application#11.1.1.1.0, contextPath=/dms, uri=/\”>
#### <>
#### <> <Could not start server of type \'server\' at default relative web root URL \'cs\'.
javax.servlet.ServletException: Could not start up IDC server deployment.
at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1284)
at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:547)
at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
at idcservlet.IdcFilter.init(IdcFilter.java:156)
at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1875)
at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3173)
at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1527)
at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:486)
at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:187)
at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:379)
at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
Caused By: java.io.IOException: Oracle WebCenter Content failed to initialize inside its servlet environment.
at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:139)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)
at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1273)
at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:547)
at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
at idcservlet.IdcFilter.init(IdcFilter.java:156)
at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1875)
at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3173)
at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1527)
at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:486)
at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:187)
at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:379)
at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
Caused By: intradoc.common.ServiceException:
at intradoc.server.IdcServerManager.init(IdcServerManager.java:230)
at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:626)
at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:456)
at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)
at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1275)
at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:547)
at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
at idcservlet.IdcFilter.init(IdcFilter.java:156)
at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1877)
at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3174)
at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1527)
at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:489)
at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:672)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:187)
at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:379)
at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:52)
at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:31)
at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)
at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)
at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
Caused By: intradoc.data.DataException:
at intradoc.jdbc.JdbcWorkspace.handleSQLException(JdbcWorkspace.java:2557)
at intradoc.jdbc.JdbcWorkspace.createResultSetSQL(JdbcWorkspace.java:814)
at intradoc.server.IdcExtendedLoader.getDBConfigValue(IdcExtendedLoader.java:3289)
at intradoc.server.IdcExtendedLoader.extraBeforeCacheLoadInit(IdcExtendedLoader.java:201)
at intradoc.server.IdcSystemLoader.loadCaches(IdcSystemLoader.java:1136)
at intradoc.server.IdcServerManager.init(IdcServerManager.java:133)
at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:626)
at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:456)
at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)
at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1275)
at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:547)
at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
at idcservlet.IdcFilter.init(IdcFilter.java:156)
at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1877)
at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3174)
at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1527)
at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:489)
at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:672)
at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:187)
at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:379)
at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:52)
at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:31)
at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)
at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)
at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
is there any update; am also getting same errors except financial domain..
Hi Tushar,
I am totally new for fusion Architecture and trying to map the things with JD Edwards , Getting confusion in the architecture part like if i am installing the HCM module in fusion for three Environment like Development , Functional Testing(QA), and Production so in this case should i run all these installer or Process 3 times each for every environment ?
Thanks
Hi Tushar,
I have completed the post configuration of 3 modules and have got errors in the rest of them. I am retrying the phase, so just wanted to know whether i can shutdown the processes of the completed module in order to assign more memory to the pending modules
Thanks And Regards
Haneef
The above information is in context of FA node
Don’t tell anyone that I told you 🙂 Yes you can do it as a workaround but things get very messy towards postconfigure or startup if you follow this strategy. You need to know what exactly you are doing when you do this but yes I have tried it and it works. Later it will become race against time as startup phase does not have granular cleanup function so either complete phase runs or fails.
Hi Tushar,
I am on my post-configure phase on FA node and i want to stop the phase and restart my server, so what are the mandatory processes that i need to start before resuming my post-configure phase.
Please suggest
Awaiting your revert
Dear Ibrahim,
Please use following steps for startup/shutdown of IDM and FA nodes. Please note that in case if you want to only restart postconfigure phase then you just need to start database, listener, node manager and web server and don’t use fastartstop or BI instance startup scripts
http://www.oratraining.com/blog/2013/05/startupshutdown-scripts-for-fusion-applications-2-nodes-setup/
Good luck.
Tushar
Hi Tushar,
Thank you for replying back.
Had a couple of questions
1.Is it possible to install financial module successfully on a 32 gb RAM server, the reason for this question is that my post configure phase is moving on a very slow rate and eventually throwing multiple errors regarding node manager or webgate(policy domain) etc.
2.what does the “web server” mean in the above context.
Please Help
Awaiting your revert
Hi Tushar,
I got the answer for the second question
the web server refers to opmnctl of CommonDomain_webtier
Hi Tushar,
Appreciate if you can help me. I am installing 11.5.8 and I am at Provisioning the applications – Install level. I am getting listener-log-status-in-error install during the install process. Not sure how to move from here. Earlier version I tried had a patch and I was able to resolve but this time I am blank.
Any help would be highly appreciated
FYI, I am doing 11.5.8 installation as my 11.5.7 failed on many areas when doing the functional configuration.
Regards,
Anand
My mistake.. it is 11.1.8 Fusion.
I resolved it. The log file directed to the opatch directory which failed and then when I went through the log file, it identified that there was a file missing. Once I downloaded the relevant file and placed it in the location, the process completed and moved to the next step. I am in Preconfigure now.
Regards,
Anand
Dear Anand,
Sorry for the delayed response due to high number of pending responses. This is unusual. Could you please mention which file was missing so accordingly I can advise what went wrong. Was it any OS library file? If so then you might have some missing RPMs in the initial OS build.
Regards
Tushar
The file was activityStreamSettings.jsff.xml
Dear Anand,
I am aware of this file. This file is located in a deep subtree inside staging installer directory so if you are have prepared the installer directory using windows host, it is possible that you have exceeded 255 characters limit during file extraction. You would have got an error while extracting the staging directory about it. Even if you try to make the staging directory again with longer path for example e:\fusion\apps\1118\staging instead of e:\stage then you will see this error again while extracting the files.
Regards,
Tushar
Hi Tushar,
As per searched in Oracle support and blogs people are telling to apply patch for this error. But there is no proper information.
Please can you guide what patch I need to apply exactly in fahost.
The following error facing in fahost while configure phase.
[2014-11-05T21:19:09.720+05:30] [runProvisioning-configure] [NOTIFICATION] [] [runProvisioning-configure] [tid: 11] [ecid: 0000Ka0R^SUFW7WFLz7U8A1KMZTR000002,0] [logStatus] STATE=BUILD_ERROR!TIMESTAMP=2014-11-05 21:19:09 IST!TARGET=configure!CATEGORY=product-family-thread!DOMAIN=!HOSTNAME=fahost.fugo1.dba!PRODUCTFAMILY=fs!PRODUCT=!TASK=private-invoke-parallel!TASKID=fs.NONE.product-family-thread.configure.private-invoke-parallel!MESSAGE=!DETAIL=!BUILDFILE=/u01/app/fusion/provisioning/provisioning-build/listener-build.xml!LINENUMBER=106!
[2014-11-05T21:19:09.721+05:30] [runProvisioning-configure] [ERROR] [FAPROV-00101] [runProvisioning-configure] [tid: 11] [ecid: 0000Ka0R^SUFW7WFLz7U8A1KMZTR000002,0] [arg: The following error occurred while executing this line:\n/u01/app/fusion/provisioning/provisioning-build/orchestration-build.xml:2652: The following error occurred while executing this line:\n/u01/app/fusion/provisioning/provisioning-build/base-product-family-build.xml:873: The following error occurred while executing this line:\n/u01/app/fusion/provisioning/provisioning-build/base-product-family-build.xml:440: The following error occurred while executing this line:\n/u01/app/fusion/provisioning/provisioning-build/fs-build.xml:605: The following error occurred while executing this line:\n/u01/app/fusion/provisioning/provisioning-build/common-configure-build.xml:1988: The following error occurred while executing this line:\n/u01/app/fusion/provisioning/provisioning-build/domain-build.xml:375: The following error occurred while executing this line:\n/u01/app/fusion/provisioning/provisioning-build/common-configure-build.xml:691: The following error occurred while executing this line:\n/u01/app/fusion/provisioning/provisioning-build/webgate-build.xml:615: Process “/u01/stage/jdk6/bin/java -jar /u01/app/oracle/webtier_mwhome/oracle_common/modules/oracle.oamprovider_11.1.1/oamcfgtool.jar mode=INFO oam_version=11 app_domain=fs oam_admin_server=http://idmhost.fugo.com:7001 oam_admin_username=oamadmin -noprompt” exited with non-zero exit code “1”. Input Stream before decrypting for process execution: “oV27HDOmIvgPGtc1HYvwIQ==”. Environment variables: “”.] ERROR: The following error occurred while executing this line:[[
Dear Tushar,
Thanks a lot . I am able to install and configure the fusion application finally.
Your blog really helped a lot and i don’t think so it can be any better (it’s just perfect).
Regards,
Ro
Glad that we could help. Please feel free to contact us for any queries in any Oracle technologies.
ORATraining
Congrats ro. Good job.
Please can you help me in configure phase(FAHOST). You can see the error in the same blog which I posted on Nov 6th.
Dear Loganathan,
Seems you have missed the actual cause from the logfile and posted only the last part in the comment. Please scroll up and you will see the actual error and please note that many times the errors in this phase occur due to no response in timely manner so just retrying the phase goes fine.
Regards
Tushar
Dear Tushar,
Thanks for your replying.
Same error contnousouly I am getting the same error after retry the phase also.
Error 1:
2014-11-05 21:19:08.561 NOTIFICATION SEVERE: Server side error occurred. Specific error messages are:Exception encountered while validating using User/Role API : Unable to connect to the User Store. User Store OIMIDStore with initParams {SECURITY_PRINCIPAL=cn=oamLDAP, cn=systemids,dc=fugo,dc=com, GROUP_SEARCH_BASE=cn=Groups,dc=fugo,dc=com, USER_NAME_ATTRIBUTE=uid, IsSystem=true, IsPrimary=true, Name=OIMIDStore, SearchTimeLimit=120, MIN_CONNECTIONS=10, LDAP_PROVIDER=OID, RoleMappings={Role Security Admin={Groups=OAMAdministrators}}, USER_SEARCH_BASE=cn=Users,dc=fugo,dc=com, ENABLE_PASSWORD_POLICY=false, LDAP_URL=ldap://idmhost.fugo.com:3060, MAX_CONNECTIONS=100, UserIdentityProviderType=OracleUserRoleAPI} could not be initialized due to Error initializing User/Role API : null… The exception trace is : oracle.security.am.engines.common.identity.provider.exceptions.IdentityProviderException: OAMSSA-20007: Unable to connect to the User Store. User Store OIMIDStore with initParams {SECURITY_PRINCIPAL=cn=oamLDAP, cn=systemids,dc=fugo,dc=com, GROUP_SEARCH_BASE=cn=Groups,dc=fugo,dc=com, USER_NAME_ATTRIBUTE=uid, IsSystem=true, IsPrimary=true, Name=OIMIDStore, SearchTimeLimit=120, MIN_CONNECTIONS=10, LDAP_PROVIDER=OID, RoleMappings={Role Security Admin={Groups=OAMAdministrators}}, USER_SEARCH_BASE=cn=Users,dc=fugo,dc=com, ENABLE_PASSWORD_POLICY=false, LDAP_URL=ldap://idmhost.fugo.com:3060, MAX_CONNECTIONS=100, UserIdentityProviderType=OracleUserRoleAPI} could not be initialized due to Error initializing User/Role API : null..
Error 2:
!TIMESTAMP=2014-11-05 21:19:08 IST!TARGET=oam-info!CATEGORY=BUILD_ERROR!DOMAIN=CommonDomain!HOSTNAME=fahost.fugo1.dba!PRODUCTFAMILY=fs!PRODUCT=WebGate!TASK=execSecure!TASKID=fs.WebGate.BUILD_ERROR.oam-info.execSecure!MESSAGE=Process “/u01/stage/jdk6/bin/java -jar /u01/app/oracle/webtier_mwhome/oracle_common/modules/oracle.oamprovider_11.1.1/oamcfgtool.jar mode=INFO oam_version=11 app_domain=fs oam_admin_server=http://idmhost.fugo.com:7001 oam_admin_username=oamadmin -noprompt” exited with non-zero exit code “1”. Input Stream before decrypting for process execution: “oV27HDOmIvgPGtc1HYvwIQ==”. Environment variables: “”.!DETAIL=Process “/u01/stage/jdk6/bin/java -jar /u01/app/oracle/webtier_mwhome/oracle_common/modules/oracle.oamprovider_11.1.1/oamcfgtool.jar mode=INFO oam_version=11 app_domain=fs oam_admin_server=http://idmhost.fugo.com:7001 oam_admin_username=oamadmin -noprompt” exited with non-zero exit code “1”. Input Stream before decrypting for process execution: “oV27HDOmIvgPGtc1HYvwIQ==”. Environment variables: “”.!BUILDFILE=/u01/app/fusion/provisioning/provisioning-build/webgate-build.xml!LINENUMBER=615!
I know that issue due to no response in timely manner. How to solve the issue.
For last 15 days I am stuck in the same issue. How to avoid this issue ?
Hi Tushar:
I have a basic question and hoping that you or visitors of of your wonderful blog answer this. What I noticed is, when installing fusion apps, even though I picked the option of provisioning HCM only, provisioning process installs and starts various services for other domains such as Financials, CRM etc. I can understand starting the services for CommonDomain.
There may be internal dependencies between various products within fusion apps but is it necessary to start all these services? The reason I bring it up is, because of all these services lot of memory is used making install process slow and some times server becomes unresponsive for period of time.
Do you have any recommendations as to if any of the domain services for products I am not interested in can be shut down to free up hardware resources for HCM Domain I would like to use.
Any information on this topic is greatly appreciated.
Regards
Dear Rama,
Sorry for very delayed response since I just noticed your question. You are right that the provisioning process creates a lot of managed servers from the products which are not selected for provisioning. And again you are right that there are dependencies among them hence they are required. That is the reason we have specified large amount of memory requirement for the installation and implementation process. At which phase of installation you are so that I can give some offline suggestions as they are not supported solutions.
Thanks
Tushar
Orchestraton:listener-log-status-in-error install BUILD ERROR
DatabaseClient private-install-dbclient-oui10g-BUILD ERROR the OUI call failed
error during prerequisite check and install phase
please suggest me a solution..I am stuck here from a long time
Hi Admin,
Abnormal power shutdown while configuring in Node 2(final stage) machine, whether it will affect Node 1 settings.
Can you guys provide me the steps for manual cleanup phases in provisioning.
Please use following for cleanup and restore after any failed phase.
runProvisioning.sh -responseFile <response file full path> -target cleanup-<phase_name>
runProvisioning.sh -responseFile <response file full path> -target restore-<phase_name>
Hi Tushar,
I am looking forward for your comment.
Error:
/u01/app/fusion/provisioning/provisioning-build/domain-build.xml:375: The following error occurred while executing this line:
/u01/app/fusion/provisioning/provisioning-build/common-configure-build.xml:671: Process execution failed with return code: 1. Check the logs for more information.
Check the following
(1) Your OID details are provided correctly
(2) A policy domain does not already exist if you are seeding security data
(3) The necessary schemas are present on the OID
The following error occurred while executing this line:
/u01/app/fusion/provisioning/provisioning-build/orchestration-build.xml:2893: The following error occurred while executing this line:
/u01/app/fusion/provisioning/provisioning-build/orchestration-build.xml:2742: The following error occurred while executing this line:
/u01/app/fusion/provisioning/provisioning-build/base-techstack-build.xml:170: The following error occurred while executing this line:
/u01/app/fusion/provisioning/provisioning-build/bi-build.xml:697: The following error occurred while executing this line:
/u01/app/fusion/provisioning/provisioning-build/bi-build.xml:930: Credential seeding on primordial host failed or is suspended. Cannot proceed with BI configure.
Total time: 311 minutes 57 seconds
Tushar,
Common seed error in configure phase, I proceed with cleanup the phase, but for last 26 hours it’s running there is no error in log file.
Please guide me how to proceed further.
!TIMESTAMP=2014-09-27 07:52:26 IST!TARGET=common-seed-role-templates!CATEGORY=BUILD_ERROR!DOMAIN=NONE!HOSTNAME=fahost.fugodba1.com!PRODUCTFAMILY=fs!PRODUCT=fsdomain1!TASK=seedRoleTemplates!TASKID=fs.fsdomain1.BUILD_ERROR.common-seed-role-templates.seedRoleTemplates!MESSAGE=Process execution failed with return code: 1. Check the logs for more information. See /u01/app/oracle/provisioning/debug/fahost/configure_27_09_14_05_58_52/seedRoleTemplates1859043536381461379.py!DETAIL=!BUILDFILE=/u01/app/fusion/provisioning/provisioning-build/common-configure-build.xml!LINENUMBER=1411!
2014-09-27 07:52:27.291 NOTIFICATION [logStatus] STATE=BUILD_ERROR!TIMESTAMP=2014-09-27 07:52:27 IST!TARGET=common-seed-role-templates!CATEGORY=BUILD_ERROR!DOMAIN=NONE!HOSTNAME=fahost.fugodba1.com!PRODUCTFAMILY=fs!PRODUCT=fsdomain1!TASK=seedRoleTemplates!TASKID=fs.fsdomain1.BUILD_ERROR.common-seed-role-templates.seedRoleTemplates!MESSAGE=Seed Role Templates operation failed. Details of the error are available in the provisioning log files. Action: Check the role templates directory and fix any errors. Role templates directory location: /u01/app/oracle/provisioning/debug/fahost/configure_27_09_14_05_58_52/roletemplate2105994251. Check the AdminServer logs to see if the APM application is in running state on the AdminServer process.!DETAIL=Process execution failed with return code: 1. Check the logs for more information.!BUILDFILE=/u01/app/fusion/provisioning/provisioning-build/common-configure-build.xml!LINENUMBER=1411!
2014-09-27 07:52:27.327 NOTIFICATION [logStatus] STATE=BUILD_ERROR!TIMESTAMP=2014-09-27 07:52:27 IST!TARGET=common-seed-role-templates!CATEGORY=BUILD_ERROR!DOMAIN=NONE!HOSTNAME=fahost.fugodba1.com!PRODUCTFAMILY=fs!PRODUCT=fsdomain1!TASK=seedRoleTemplates!TASKID=fs.fsdomain1.BUILD_ERROR.common-seed-role-templates.seedRoleTemplates!MESSAGE=Process execution failed with return code: 1. Check the logs for more information.!DETAIL=Process execution failed with return code: 1. Check the logs for more information.!BUILDFILE=/u01/app/fusion/provisioning/provisioning-build/common-configure-build.xml!LINENUMBER=1411!
2014-09-27 07:52:27.941 ERROR [echoNested] Cannot run the configure phase.
2014-09-27 07:52:28.509 NOTIFICATION [logStatus] STATE=BUILD_ERROR!TIMESTAMP=2014-09-27 07:52:28 IST!TARGET=configure!CATEGORY=product-family-thread!DOMAIN=!HOSTNAME=fahost.fugodba1.com!PRODUCTFAMILY=fs!PRODUCT=!TASK=private-invoke-parallel!TASKID=fs.NONE.product-family-thread.configure.private-invoke-parallel!MESSAGE=!DETAIL=!BUILDFILE=/u01/app/fusion/provisioning/provisioning-build/listener-build.xml!LINENUMBER=106!
2014-09-27 07:55:01.044 WARNING [exec] [ERROR][thread ] Could not start thread Thread-169. Resource temporarily unavailable
2014-09-27 07:55:01.828 NOTIFICATION [propertyfile] Updating property file: /u01/app/oracle/fusionapps/bi/.bidomain.build.properties
2014-09-27 07:55:02.023 TRACE
_set_oui_location:
Hi Tushar,
Now I am facing error in Node 2 machine.
Error: Timed out in validating component – OIM11G
———————————————————-
[2014-09-25T23:41:34.239+05:30] [runProvisioning-preverify] [TRACE] [] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] private-init-properties:
[2014-09-25T23:41:34.349+05:30] [runProvisioning-preverify] [TRACE] [] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Fusion Applications)
[2014-09-25T23:41:34.351+05:30] [runProvisioning-preverify] [TRACE] [] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] set-bootstrap-provisioning-classpath:
[2014-09-25T23:41:34.351+05:30] [runProvisioning-preverify] [TRACE] [] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Fusion Applications)
[2014-09-25T23:41:34.539+05:30] [runProvisioning-preverify] [NOTIFICATION] [] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [echo] bootstrap.provisioning.classpath=[[
[echo] /u01/app/fusion/provisioning/lib/oracle-provisioning-anttasks.jar
[echo] /u01/app/fusion/provisioning/lib/oracle-provisioning-tools.jar
[echo] /u01/app/fusion/provisioning/lib/ant-contrib.jar
[echo] /u01/app/fusion/provisioning/lib/oraclepki.jar
[echo] /u01/app/fusion/provisioning/lib/cryptoj.jar
[echo] /u01/app/fusion/provisioning/lib/ojmisc.jar
[echo] END
]]
[2014-09-25T23:41:34.797+05:30] [runProvisioning-preverify] [NOTIFICATION] [FAPROV-01162] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [arg: /u01/app/oracle/plan.lck] [arg: 25 Sep 2014 23:41:34 IST] Trying to acquire lock on file /u01/app/oracle/plan.lck since 25 Sep 2014 23:41:34 IST
[2014-09-25T23:41:34.803+05:30] [runProvisioning-preverify] [NOTIFICATION] [FAPROV-01234] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [arg: /u01/app/oracle/plan.lck] [arg: 25 Sep 2014 23:41:34 IST] [arg: 0] Successfully acquired lock on file /u01/app/oracle/plan.lck at 25 Sep 2014 23:41:34 IST. Waited for 0 seconds
[2014-09-25T23:41:34.810+05:30] [runProvisioning-preverify] [NOTIFICATION] [FAPROV-01073] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [arg: /u01/app/oracle/plan.lck] Changing permissions recursively for /u01/app/oracle/plan.lck. This may take a while…
[2014-09-25T23:41:34.811+05:30] [runProvisioning-preverify] [NOTIFICATION] [FAPROV-01074] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] Permissons changed.
[2014-09-25T23:41:34.811+05:30] [runProvisioning-preverify] [NOTIFICATION] [] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [echo] Plan file: /u01/app/oracle/provisioning/plan/provisioning.plan
[2014-09-25T23:41:34.835+05:30] [runProvisioning-preverify] [NOTIFICATION] [] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [mkdir] Created dir: /u01/app/oracle/provisioning/plan
[2014-09-25T23:41:34.903+05:30] [runProvisioning-preverify] [TRACE] [] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] private-generate-provisioning-plan:
[2014-09-25T23:41:34.903+05:30] [runProvisioning-preverify] [TRACE] [] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [SRC_CLASS: oracle.apps.fnd.provisioning.ant.taskdefs.util.logger.ProvisioningLogger] [SRC_METHOD: log] (Fusion Applications)
[2014-09-25T23:41:34.953+05:30] [runProvisioning-preverify] [NOTIFICATION] [] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [logStatus] STATE=BUILD_STARTED!TIMESTAMP=2014-09-25 23:41:34 IST!TARGET=private-generate-provisioning-plan!CATEGORY=filesystem!DOMAIN=NONE!HOSTNAME=fahost.fugodba1.com!PRODUCTFAMILY=orchestration!PRODUCT=orchestration!TASK=!TASKID=orchestration.orchestration.NONE.private-generate-provisioning-plan.NONE!MESSAGE=!DETAIL=!BUILDFILE=/u01/app/fusion/provisioning/provisioning-build/common-propertyops-build.xml!LINENUMBER=532!
[2014-09-25T23:41:34.998+05:30] [runProvisioning-preverify] [NOTIFICATION] [FAPROV-01073] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [arg: /u01/app/oracle/provisioning/phaseguards] Changing permissions recursively for /u01/app/oracle/provisioning/phaseguards. This may take a while…
[2014-09-25T23:41:34.998+05:30] [runProvisioning-preverify] [NOTIFICATION] [FAPROV-01074] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] Permissons changed.
[2014-09-25T23:41:35.002+05:30] [runProvisioning-preverify] [NOTIFICATION] [FAPROV-01073] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [arg: /u01/app/oracle/provisioning/phaseguards/preverify-fahost-STARTED.grd] Changing permissions recursively for /u01/app/oracle/provisioning/phaseguards/preverify-fahost-STARTED.grd. This may take a while…
[2014-09-25T23:41:35.002+05:30] [runProvisioning-preverify] [NOTIFICATION] [FAPROV-01074] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] Permissons changed.
[2014-09-25T23:41:35.002+05:30] [runProvisioning-preverify] [NOTIFICATION] [FAPROV-01197] [runProvisioning-preverify] [tid: 10] [ecid: 0000KYi0hKjFW7WFLzUKOA1K95fM000000,0] [arg: /u01/app/oracle/provisioning/phaseguards/preverify-fahost-STARTED.grd] Wrote phase guard file /u01/app/oracle/provisioning/phaseguards/preverify-fahost-STARTED.grd
…
…
0000KYi0hWTFW7WFLzUKOA1K95fM000002,0] [exec] Component: WebCenter Custom Services Producer Server
[2014-09-25T23:41:55.964+05:30] [runProvisioning-preverify] [NOTIFICATION] [] [runProvisioning-preverify] [tid: 11] [ecid: 0000KYi0hWTFW7WFLzUKOA1K95fM000002,0] [exec]
[2014-09-25T23:41:55.964+05:30] [runProvisioning-preverify] [NOTIFICATION] [] [runProvisioning-preverify] [tid: 11] [ecid: 0000KYi0hWTFW7WFLzUKOA1K95fM000002,0] [exec] Component: Host
[2014-09-25T23:41:56.536+05:30] [runProvisioning-preverify] [NOTIFICATION] [] [runProvisioning-preverify] [tid: 11] [ecid: 0000KYi0hWTFW7WFLzUKOA1K95fM000002,0] [exec]
[2014-09-25T23:41:56.537+05:30] [runProvisioning-preverify] [NOTIFICATION] [] [runProvisioning-preverify] [tid: 11] [ecid: 0000KYi0hWTFW7WFLzUKOA1K95fM000002,0] [exec] Component: ATGPF Instance
[2014-09-25T23:41:56.611+05:30] [runProvisioning-preverify] [NOTIFICATION] [] [runProvisioning-preverify] [tid: 11] [ecid: 0000KYi0hWTFW7WFLzUKOA1K95fM000002,0] [exec]
[2014-09-25T23:41:56.611+05:30] [runProvisioning-preverify] [NOTIFICATION] [] [runProvisioning-preverify] [tid: 11] [ecid: 0000KYi0hWTFW7WFLzUKOA1K95fM000002,0] [exec] Component: Host
[2014-09-25T23:41:56.676+05:30] [runProvisioning-preverify] [NOTIFICATION
I resolved this issue.
Problem with Node 1 Database side, I checked alert log with error TNS-12535: TNS:operation timed out.
Solution :
1. I have added the SQLNET.INBOUND_CONNECT_TIMEOUT = 0 in sqlnet.ora.
2. Restart the listener
I have truncated the log text since posting full log increases the pagesize for other users especially those using mobile devices. Please post minimal required log for us and other users to understand and help accordingly.
Thanks
Hi Tushar,
I copied the libraries to the webgate folder and started the provisioning wizard
During the installation phase, i am getting an error at the
>Orchestraton:listener-log-status-in-error install BUILD ERROR
AND
>DatabaseClient private-install-dbclient-oui10g-BUILD ERROR the OUI call failed
Here is the log file entries
4-09-09T16:54:19.391+05:30] [runProvisioning-install] [NOTIFICATION] [] [runProvisioning-install] [tid: 15] [ecid: 0000KXQA3kzFg4WFLzRL8A1K3hlf000006,0] Starting Oracle Universal Installer…[[
Checking Temp space: must be greater than 120 MB. Actual 17557 MB Passed
Checking swap space: must be greater than 150 MB. Actual 31999 MB Passed
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2014-09-09_04-54-18PM. Please wait …
]]
[2014-09-09T16:54:19.610+05:30] [runProvisioning-install] [NOTIFICATION] [] [runProvisioning-install] [tid: 11] [ecid: 0000KXQ3IwbFg4WFLzRL8A1K3hlf000002,0] [logStatus] STATE=BUILD_ERROR!TIMESTAMP=2014-09-09 16:54:19 IST!TARGET=listener-log-status-in-error!CATEGORY=private-install-dbclient!DOMAIN=CommonDomain!HOSTNAME=unionfusion!PRODUCTFAMILY=dbclient!PRODUCT=DatabaseClient!TASK=private-install-dbclient!TASKID=dbclient.DatabaseClient.NONE.listener-log-status-in-error.NONE!MESSAGE=ERROR!DETAIL=OUI10g installer failed: /u02/fmnt/installers/dbclient/client/runInstaller!BUILDFILE=/u01/fusion/provisioning/provisioning-build/listener-build.xml!LINENUMBER=65!
[2014-09-09T16:54:19.610+05:30] [runProvisioning-install] [ERROR] [] [runProvisioning-install] [tid: 11] [ecid: 0000KXQ3IwbFg4WFLzRL8A1K3hlf000002,0] OUI10g installer failed: /u02/fmnt/installers/dbclient/client/runInstaller
[2014-09-09T16:54:19.936+05:30] [runProvisioning-install] [NOTIFICATION] [FAPROV-01073] [runProvisioning-install] [tid: 11] [ecid: 0000KXQ3IwbFg4WFLzRL8A1K3hlf000002,0] [arg: /u01/fusion/oracle/provisioning/phaseguards/pf/install-unionfusion-fs-FAILED.grd] Changing permissions recursively for /u01/fusion/oracle/provisioning/phaseguards/pf/install-unionfusion-fs-FAILED.grd. This may take a while…
[2014-09-09T16:54:19.936+05:30] [runProvisioning-install] [NOTIFICATION] [FAPROV-01074] [runProvisioning-install] [tid: 11] [ecid: 0000KXQ3IwbFg4WFLzRL8A1K3hlf000002,0] Permissons changed.
[2014-09-09T16:54:19.936+05:30] [runProvisioning-install] [NOTIFICATION] [FAPROV-01197] [runProvisioning-install] [tid: 11] [ecid: 0000KXQ3IwbFg4WFLzRL8A1K3hlf000002,0] [arg: /u01/fusion/oracle/provisioning/phaseguards/pf/install-unionfusion-fs-FAILED.grd] Wrote phase guard file /u01/fusion/oracle/provisioning/phaseguards/pf/install-unionfusion-fs-FAILED.grd
4-09-09T16:54:20.235+05:30] [runProvisioning-install] [NOTIFICATION] [] [runProvisioning-install] [tid: 10] [ecid: 0000KXQ3GK^Fg4WFLzRL8A1K3hlf000000,0] [logStatus] STATE=BUILD_ERROR!TIMESTAMP=2014-09-09 16:54:20 IST!TARGET=listener-log-status-in-error!CATEGORY=install!DOMAIN=NONE!HOSTNAME=unionfusion!PRODUCTFAMILY=orchestration!PRODUCT=orchestration!TASK=install!TASKID=orchestration.orchestration.NONE.listener-log-status-in-error.NONE!MESSAGE=ERROR!DETAIL=The following error occurred while executing this line:|/u01/fusion/provisioning/provisioning-build/orchestration-build.xml:2652: The following error occurred while executing this line:|/u01/fusion/provisioning/provisioning-build/base-product-family-build.xml:774: The following error occurred while executing this line:|/u01/fusion/provisioning/provisioning-build/base-product-family-build.xml:209: The following error occurred while executing this line:|/u01/fusion/provisioning/provisioning-build/base-product-family-build.xml:1363: The following error occurred while executing this line:|/u01/fusion/provisioning/provisioning-build/base-product-family-build.xml:1555: The following error occurred while executing this line:|/u01/fusion/provisioning/provisioning-build/base-techstack-build.xml:68: The following error occurred while executing this line:|/u01/fusion/provisioning/provisioning-build/dbclient-build.xml:184: The following error occurred while executing this line:|/u01/fusion/provisioning/provisioning-build/dbclient-build.xml:252: OUI10g installer failed: /u02/fmnt/installers/dbclient/client/runInstaller!BUILDFILE=/u01/fusion/provisioning/provisioning-build/listener-build.xml!LINENUMBER=65!
[2014-09-09T16:54:20.444+05:30] [runProvisioning-install] [ERROR] [FAPROV-01213] [runProvisioning-install] [tid: 10] [ecid: 0000KXQ3GK^Fg4WFLzRL8A1K3hlf000000,0] [arg: install] Cannot run the install phase.
[2014-09-09T16:54:20.800+05:30] [runProvisioning-install] [NOTIFICATION] [FAPROV-01073] [runProvisioning-install] [tid: 10] [ecid: 0000KXQ3GK^Fg4WFLzRL8A1K3hlf000000,0] [arg: /u01/fusion/oracle/provisioning/phaseguards/install-unionfusion-FAILED.grd] Changing permissions recursively for /u01/fusion/oracle/provisioning/phaseguards/install-unionfusion-FAILED.grd. This may take a while…
[2014-09-09T16:54:20.800+05:30] [runProvisioning-install] [NOTIFICATION] [FAPROV-01074] [runProvisioning-install] [tid: 10] [ecid: 0000KXQ3GK^Fg4WFLzRL8A1K3hlf000000,0] Permissons changed.
[2014-09-09T16:54:20.800+05:30] [runProvisioning-install] [NOTIFICATION] [FAPROV-01197] [runProvisioning-install] [tid: 10] [ecid: 0000KXQ3GK^Fg4WFLzRL8A1K3hlf000000,0] [arg: /u01/fusion/oracle/provisioning/phaseguards/install-unionfusion-FAILED.grd] Wrote phase guard file /u01/fusion/oracle/provisioning/phaseguards/install-unionfusion-FAILED.grd
[2014-09-09T16:54:21.014+05:30] [runProvisioning-install] [NOTIFICATION] [FAPROV-01073] [runProvisioning-install] [tid: 10] [ecid: 0000KXQ3GK^Fg4WFLzRL8A1K3hlf000000,0] [arg: /u01/fusion/oracle/logs/provisioning/plan1410166312550/unionfusion] Changing permissions recursively for /u01/fusion/oracle/logs/provisioning/plan1410166312550/unionfusion. This may take a while…
[2014-09-09T16:54:21.119+05:30] [runProvisioning-install] [NOTIFICATION] [FAPROV-01074] [runProvisioning-install] [tid: 10] [ecid: 0000KXQ3GK^Fg4WFLzRL8A1K3hlf000000,0] Permissons changed.
[2014-09-09T16:54:21.127+05:30] [runProvisioning-install] [NOTIFICATION] [FAPROV-01073] [runProvisioning-install] [tid: 10] [ecid: 0000KXQ3GK^Fg4WFLzRL8A1K3hlf000000,0] [arg: /u01/fusion/oracle/provisioning] Changing permissions recursively for /u01/fusion/oracle/provisioning. This may take a while…
[2014-09-09T16:54:21.258+05:30] [runProvisioning-install] [NOTIFICATION] [FAPROV-01074] [runProvisioning-install] [tid: 10] [ecid: 0000KXQ3GK^Fg4WFLzRL8A1K3hlf000000,0] Permissons changed.
[2014-09-09T16:54:21.266+05:30] [runProvisioning-install] [NOTIFICATION] [FAPROV-01073] [runProvisioning-install] [tid: 10] [ecid: 0000KXQ3GK^Fg4WFLzRL8A1K3hlf000000,0] [arg: /u01/fusion/oracle/provisioning/provlocks] Changing permissions recursively for /u01/fusion/oracle/provisioning/provlocks. This may take a while…
[2014-09-09T16:54:21.266+05:30] [runProvisioning-install] [NOTIFICATION] [FAPROV-01074] [runProvisioning-install] [tid: 10] [ecid: 0000KXQ3GK^Fg4WFLzRL8A1K3hlf000000,0] Permissons changed
[2014-09-09T16:54:21.270+05:30] [runProvisioning-install] [ERROR] [] [runProvisioning-install] [tid: 10] [ecid: 0000KXQ3GK^Fg4WFLzRL8A1K3hlf000000,0] BUILD FAILED[[
/u01/fusion/provisioning/provisioning-build/orchestration-build.xml:211: The following error occurred while executing this line:
/u01/fusion/provisioning/provisioning-build/orchestration-build.xml:2652: The following error occurred while executing this line:
/u01/fusion/provisioning/provisioning-build/base-product-family-build.xml:774: The following error occurred while executing this line:
/u01/fusion/provisioning/provisioning-build/base-product-family-build.xml:209: The following error occurred while executing this line:
/u01/fusion/provisioning/provisioning-build/base-product-family-build.xml:1363: The following error occurred while executing this line:
/u01/fusion/provisioning/provisioning-build/base-product-family-build.xml:1555: The following error occurred while executing this line:
/u01/fusion/provisioning/provisioning-build/base-techstack-build.xml:68: The following error occurred while executing this line:
/u01/fusion/provisioning/provisioning-build/dbclient-build.xml:184: The following error occurred while executing this line:
/u01/fusion/provisioning/provisioning-build/dbclient-build.xml:252: OUI10g installer failed: /u02/fmnt/installers/dbclient/client/runInstaller
Total time: 29 minutes 46 seconds
Please give me a solution to the “OUI10g installer failed”
Thanks And Regards
Ibrahim Khan
Hi, Tushar
We are in the fa node installation phase facing below error:-(opatch in webgate getting failed)
Oracle Home : /fusion/app/oracle/webtier_mwhome/webgate
Central Inventory : /fusion/oraInventory
from : /fusion/app/oracle/webtier_mwhome/webgate/oraInst.loc
OPatch version : 11.1.0.10.3
OUI version : 11.1.0.9.0
OUI location : /fusion/app/oracle/webtier_mwhome/webgate/oui
Log file location : /fusion/app/oracle/webtier_mwhome/webgate/cfgtoollogs/opatch/opatch2014-07-29_16-00-26PM_1.log
[Jul 29, 2014 4:00:35 PM] Patch history file: /fusion/app/oracle/webtier_mwhome/webgate/cfgtoollogs/opatch/opatch_history.txt
[Jul 29, 2014 4:00:37 PM] Verifying environment and performing prerequisite checks…
[Jul 29, 2014 4:00:37 PM] Checking conflict among patches…
[Jul 29, 2014 4:00:37 PM] Patch ID 16928612
[Jul 29, 2014 4:00:37 PM] Patches that conflict: [ ]
[Jul 29, 2014 4:00:37 PM] Checking conflicts for patch : 16928612
[Jul 29, 2014 4:00:38 PM] Checking if Oracle Home has components required by patches…
[Jul 29, 2014 4:00:38 PM] OUI-67073:UtilSession failed: Patch 16928612 requires component(s) that are not installed in OracleHome. These not-installed components are oracle.as.upgrade:11.1.1.7.0,
[Jul 29, 2014 4:00:38 PM] Finishing UtilSession at Tue Jul 29 16:00:38 IST 2014
[Jul 29, 2014 4:00:38 PM] Log file location: /fusion/app/oracle/webtier_mwhome/webgate/cfgtoollogs/opatch/opatch2014-07-29_16-00-26PM_1.log
[Jul 29, 2014 4:00:38 PM] Stack Description: java.lang.RuntimeException: Patch 16928612 requires component(s) that are not installed in OracleHome. These not-installed components are oracle.as.upgrade:11.1.1.7.0,
[Jul 29, 2014 4:00:38 PM] StackTrace: oracle.opatch.opatchutil.NApply.process(NApply.java:1051)
[Jul 29, 2014 4:00:38 PM] StackTrace: oracle.opatch.opatchutil.OUSession.napply(OUSession.java:1098)
[Jul 29, 2014 4:00:38 PM] StackTrace: sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[Jul 29, 2014 4:00:38 PM] StackTrace: sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
[Jul 29, 2014 4:00:38 PM] StackTrace: sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
[Jul 29, 2014 4:00:38 PM] StackTrace: java.lang.reflect.Method.invoke(Method.java:597)
[Jul 29, 2014 4:00:38 PM] StackTrace: oracle.opatch.UtilSession.process(UtilSession.java:305)
[Jul 29, 2014 4:00:38 PM] StackTrace: oracle.opatch.OPatchSession.main(OPatchSession.java:2304)
[Jul 29, 2014 4:00:38 PM] StackTrace: oracle.opatch.OPatch.main(OPatch.java:666)
Please reply as we did not find any solution for above issue
Regards
Sameer
I have a Problem finishing the configure Part of provisioning Fusion 11.1.8
I tried everything, checked hosts, deleted .lck Files, checked 2 Node NFS mount, tried cleanup, restore and begin again.
bi-configuration fails and when I run opmnctl status meanwhile configure phase runs I get:
Processes in Instance: BIInstance
———————————+——————–+———+———
ias-component | process-type | pid | status
———————————+——————–+———+———
essbaseserver1 | Essbase | N/A | Down
coreapplication_obiccs1 | OracleBIClusterCo~ | N/A | Down
coreapplication_obisch1 | OracleBIScheduler~ | N/A | Down
coreapplication_obijh1 | OracleBIJavaHostC~ | N/A | Down
coreapplication_obips1 | OracleBIPresentat~ | N/A | Down
coreapplication_obis1 | OracleBIServerCom~ | N/A | Down
Which seems ok, but if in some time it fails I only have the essbaseserver1 and the core applications disappear.
Thats the error log, and the xml files saying absolute nothing about the error.
Please Help
n/scripts/bidomain/bi-install.xml:283: exec returned: 1
]]
[2014-05-15T05:04:13.772+02:00] [runProvisioning-configure] [WARNING] [FAPROV-00102] [runProvisioning-configure] [tid: 19] [ecid: 0000KNwfHCN5YbG6yzicMG1JSy7I00000A,0] [arg: bi-configure] [arg: /u01/fusion/logs/provisioning/plan1399931931106/fahost2.oprisk.int/runProvisioning-configure.log] An error occurred for parallel operation bi-configure. Please refer to log file /u01/fusion/logs/provisioning/plan1399931931106/fahost2.oprisk.int/runProvisioning-configure.log for more details.
[2014-05-15T05:04:14.875+02:00] [runProvisioning-configure] [NOTIFICATION] [] [runProvisioning-configure] [tid: 10] [ecid: 0000KNweXza5YbG6yzicMG1JSy7I000000,0] [logStatus] STATE=BUILD_ERROR!TIMESTAMP=2014-05-15 05:04:14 CEST!TARGET=listener-log-status-in-error!CATEGORY=configure!DOMAIN=NONE!HOSTNAME=fahost2.oprisk.int!PRODUCTFAMILY=orchestration!PRODUCT=orchestration!TASK=configure!TASKID=orchestration.orchestration.NONE.listener-log-status-in-error.NONE!MESSAGE=ERROR!DETAIL=The following error occurred while executing this line:|/opt/fusion_prov/provisioning/provisioning-build/orchestration-build.xml:2893: The following error occurred while executing this line:|/opt/fusion_prov/provisioning/provisioning-build/orchestration-build.xml:2742: The following error occurred while executing this line:|/opt/fusion_prov/provisioning/provisioning-build/base-techstack-build.xml:170: The following error occurred while executing this line:|/opt/fusion_prov/provisioning/provisioning-build/bi-build.xml:660: The following error occurred while executing this line:|/opt/fusion_prov/provisioning/provisioning-build/bi-build.xml:2503: The following error occurred while executing this line:|/u01/fusion/fusionapps/bi/bifoundation/provision/scripts/bi-bidomainprov.xml:83: The following error occurred while executing this line:|/u01/fusion/fusionapps/bi/bifoundation/provision/scripts/bidomain/bi-install.xml:321: The following error occurred while executing this line:|/u01/fusion/fusionapps/bi/bifoundation/provision/scripts/bidomain/bi-install.xml:517: The following error occurred while executing this line:|/u01/fusion/fusionapps/bi/bifoundation/provision/scripts/bidomain/bi-install.xml:283: exec returned: 1!BUILDFILE=/opt/fusion_prov/provisioning/provisioning-build/listener-build.xml!LINENUMBER=65!
[2014-05-15T05:04:15.674+02:00] [runProvisioning-configure] [ERROR] [FAPROV-01213] [runProvisioning-configure] [tid: 10] [ecid: 0000KNweXza5YbG6yzicMG1JSy7I000000,0] [arg: configure] Cannot run the configure phase.
[2014-05-15T05:04:15.686+02:00] [runProvisioning-configure] [ERROR] [] [runProvisioning-configure] [tid: 10] [ecid: 0000KNweXza5YbG6yzicMG1JSy7I000000,0] The following error occurred while executing this line:[[
/opt/fusion_prov/provisioning/provisioning-build/orchestration-build.xml:2893: The following error occurred while executing this line:
/opt/fusion_prov/provisioning/provisioning-build/orchestration-build.xml:2742: The following error occurred while executing this line:
/opt/fusion_prov/provisioning/provisioning-build/base-techstack-build.xml:170: The following error occurred while executing this line:
/opt/fusion_prov/provisioning/provisioning-build/bi-build.xml:660: The following error occurred while executing this line:
/opt/fusion_prov/provisioning/provisioning-build/bi-build.xml:2503: The following error occurred while executing this line:
/u01/fusion/fusionapps/bi/bifoundation/provision/scripts/bi-bidomainprov.xml:83: The following error occurred while executing this line:
/u01/fusion/fusionapps/bi/bifoundation/provision/scripts/bidomain/bi-install.xml:321: The following error occurred while executing this line:
/u01/fusion/fusionapps/bi/bifoundation/provision/scripts/bidomain/bi-install.xml:517: The following error occurred while executing this line:
/u01/fusion/fusionapps/bi/bifoundation/provision/scripts/bidomain/bi-install.xml:283: exec returned: 1
]]
Tushar,
Thank you very much. This posting has helped me finally to get the fusion installed. It is working good and I am able to go into the provisioned but yet to configured screen. Appreciate all the good work you are doing.
Regards,
Anand
Congratulations Anand. You are the Fusion Apps warrior as we say 🙂
Good luck for your experience with Fusion Apps and feel free to share with the group.
Regards
Tushar
Hi Tushar,
I am getting below error in install step of fusion application provisioning.
[2014-03-29T20:33:42.337+00:00] [runProvisioning-install] [ERROR] [FAPROV-00298] [runProvisioning-install] [tid: 11] [ecid: 0000KKFSt5hFc5WFLz7U8A1JDmV1000002,0] An Error Occured: [[
OUI10g installer failed: /stage/installers/dbclient/client/runInstaller
at oracle.apps.fnd.provisioning.ant.taskdefs.installer.BaseInstallerTask.executeTask(BaseInstallerTask.java:289)
at oracle.apps.fnd.provisioning.ant.taskdefs.BaseProvisioningTask.execute(BaseProvisioningTask.java:106)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:357)
at org.apache.tools.ant.Target.performTasks(Target.java:385)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:40)
at org.apache.tools.ant.Project.executeTargets(Project.java:1191)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:106)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:357)
at org.apache.tools.ant.Target.performTasks(Target.java:385)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:40)
at org.apache.tools.ant.Project.executeTargets(Project.java:1191)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:106)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:357)
at org.apache.tools.ant.Target.performTasks(Target.java:385)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:40)
at org.apache.tools.ant.Project.executeTargets(Project.java:1191)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:357)
at org.apache.tools.ant.Target.performTasks(Target.java:385)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:40)
at org.apache.tools.ant.Project.executeTargets(Project.java:1191)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:106)
at oracle.apps.fnd.provisioning.ant.taskdefs.util.GuardedAntCallTask.execute(GuardedAntCallTask.java:91)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:357)
at org.apache.tools.ant.Target.performTasks(Target.java:385)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:40)
at org.apache.tools.ant.Project.executeTargets(Project.java:1191)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:106)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:357)
at org.apache.tools.ant.Target.performTasks(Target.java:385)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:40)
at org.apache.tools.ant.Project.executeTargets(Project.java:1191)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:106)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:357)
at org.apache.tools.ant.Target.performTasks(Target.java:385)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:40)
at org.apache.tools.ant.Project.executeTargets(Project.java:1191)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:62)
at net.sf.antcontrib.logic.IfTask.execute(IfTask.java:197)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.TaskAdapter.execute(TaskAdapter.java:154)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:357)
at org.apache.tools.ant.Target.performTasks(Target.java:385)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:40)
at org.apache.tools.ant.Project.executeTargets(Project.java:1191)
at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:106)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:62)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.taskdefs.Parallel$TaskRunnable.run(Parallel.java:428)
at java.lang.Thread.run(Thread.java:680)
]]
[2014-03-29T20:33:42.556+00:00] [runProvisioning-install] [NOTIFICATION] [] [runProvisioning-install] [tid: 15] [ecid: 0000KKFZ4QSFc5WFLz7U8A1JDmV1000006,0]
[2014-03-29T20:33:42.745+00:00] [runProvisioning-install] [NOTIFICATION] [] [runProvisioning-install] [tid: 11] [ecid: 0000KKFSt5hFc5WFLz7U8A1JDmV1000002,0] [logStatus] STATE=BUILD_ERROR!TIMESTAMP=2014-03-29 20:33:42 GMT!TARGET=listener-log-status-in-error!CATEGORY=private-install-dbclient!DOMAIN=CommonDomain!HOSTNAME=fahost.vm.com!PRODUCTFAMILY=dbclient!PRODUCT=DatabaseClient!TASK=private-install-dbclient!TASKID=dbclient.DatabaseClient.NONE.listener-log-status-in-error.NONE!MESSAGE=ERROR!DETAIL=OUI10g installer failed: /stage/installers/dbclient/client/runInstaller!BUILDFILE=/oracle/fabase/provisioning/provisioning-build/listener-build.xml!LINENUMBER=65!
[2014-03-29T20:33:42.746+00:00] [runProvisioning-install] [ERROR] [] [runProvisioning-install] [tid: 11] [ecid: 0000KKFSt5hFc5WFLz7U8A1JDmV1000002,0] OUI10g installer failed: /stage/installers/dbclient/client/runInstaller
[2014-03-29T20:33:43.057+00:00] [runProvisioning-install] [NOTIFICATION] [FAPROV-01073] [runProvisioning-install] [tid: 11] [ecid: 0000KKFSt5hFc5WFLz7U8A1JDmV1000002,0] [arg: /oracle/fusion/provisioning/phaseguards/pf/install-fahost-fs-FAILED.grd] Changing permissions recursively for /oracle/fusion/provisioning/phaseguards/pf/install-fahost-fs-FAILED.grd. This may take a while…
[2014-03-29T20:33:43.058+00:00] [runProvisioning-install] [NOTIFICATION] [FAPROV-01074] [runProvisioning-install] [tid: 11] [ecid: 0000KKFSt5hFc5WFLz7U8A1JDmV1000002,0] Permissons changed.
[2014-03-29T20:33:43.058+00:00] [runProvisioning-install] [NOTIFICATION] [FAPROV-01197] [runProvisioning-install] [tid: 11] [ecid: 0000KKFSt5hFc5WFLz7U8A1JDmV1000002,0] [arg: /oracle/fusion/provisioning/phaseguards/pf/install-fahost-fs-FAILED.grd] Wrote phase guard file /oracle/fusion/provisioning/phaseguards/pf/install-fahost-fs-FAILED.grd
Any suggestions on this error.
Dear Sukumar,
Seems that you have missed out the actual error in the log. Kindly look at the log file again bottom to up and look for the actual error message before above log entries and post here.
Regards
Tushar
Tushar,
Appreciate if you can help. I get the above error mentioning that the AccessGate is unable to contact any Access Servers and also is mentioning that there is an Exception thrown during WebGate initialization.
I found that when I start the Web Serverusing OPMNCTL STARTALL it starts and comes back to Unix Prompt but within few seconds I start getting the above error.
It seems unless I start the Web Server in Node 2 properly I will not be able to complete the Startup process.
Any input would be great. I dont want to start again from scratch.
Regards,
Anand
Tushar,
Appreciate if you can help. I am trying to do this second time and ending up in the same place. The Web Server OHS1 from FA_NODE is trying to access the IDM_NODE and is failing with the error “The AccessGate is unable to contact any Access Servers”.
I looked at a note in Oracle and tried the following. Saved the OraAppFusion11G WebGate in IDM_NODE and then copied the sso, xml files to the FA_NODE location and also the keys to the simple folder. Restarted the web server in FA_NODE but the error is still coming. Not sure what to do. Appreciate if you can point me as to what I did wrong or is there any patch that I need to apply.
Regards,
Anand
Give me some time and I would try to look into your configuration. Currently busy with preparing 11.1.8 notes
Thanks. I resolved the issue. Couple of things I did. Made sure I regenerated the webgate files again and copied them over to FANODE. After that I completely shutdown both the nodes and restarted the provisioning from where I left. When I restarted the web server again in FANODE it did not error out and my process started completing. Now I am provisioning the startup phase. Will keep you updated if I finish successfully or encounter issues as I motor along.
Regards,
Anand
Hi Tushar,
Appreciate your help. I am in Installation step. The process is failing in Build Messages for Functional Setup Product Family and failing at exact step “ATGPF”. The error is mentioned as listener-log-status-in-error invoke-opatch-for-dir – BUILD_ERROR. It is also giving me a execNested returned: 73 message. I am not sure what to do as I am unable to pin point what exactly is causing this to error.
Appreciate if you can guide me further. I am doing Financials Installation on two nodes. One in Oracle Virtual Box and another one is Linux Installation.
Regards,
Anand
Just an FYI. I combed through the log files in oraInventory and I could not find any relevance to this error above. Not sure where I should look into.
Thanks in advance.
Thanks again. I found the issue. The problem is in patch 16878408. One of the files WEB-INF is missing and that is causing the issue to error out. I will download again the entire zip files.
Hi Tushar,
I am doing Provisioning an Applications Environment. After I select the provisioning file and click next, the system throws error mentioning “Provisoning Wizard Error”. An Applications environment can be provisioned only from one of the provisioning hosts.
Not sure what to do. I have two machines. First one is for IDM and second one is for FA.
Appreciate your help.
Regards,
Anand
I made a mistake in identifying the servers and once I corrected them, the issue did not arise. Thanks anyway.
Regards,
Anand
hi tusha
thank you very much for your help , i succeeded to reach to welcome page
just i have one problem
after login i found an error message in the worklist :notification and approval area
Error showing tasklist. Possible reasons could be : 1. SOA server connection information is not available. 2. If it is run in federated mode, the default server may be down.
what is this error
Actually this error is misleading. Since SOA connection takes a bit of time to establish and if the page renders before that then you may see this error. Just navigate to another page and click on home again to return back and this error would disappear. Also if you launch welcome page using https URL then you may see this error on first attempt. But regardless of that, it is just a temporary misleading message.
Regards
Tushar
Hi Tushar,
I have successfully completed the installation, but I’m having issue after the SSO login.
when i go to fusion application URL –
https://fahost:10634/homepage
it redirects to Single Sign-on screen –
https://idmhost:7777/oam/server/obrareq.cgi?encquery
and when i enter user and pwd and click sign then i get the error –
“This webpage has redirect loop”.
Please suggest what’s wrong i’m doing here.
Thanks.
Dear Tushar
in the prerequest i face this error
Functional Setup: common-preverify-security getFullDN – BUILD_ERROR : Cannot find Distinguished Name for name Administrators
i hope you can help me
thank you
Dear Magdy, dear Tushar
i face the same error
Functional Setup: common-preverify-security getFullDN – BUILD_ERROR : Cannot find Distinguished Name for name Administrators
how did you manage this ?
thanks
dear Tahuy76
refer to MOS note Provisioning Error During Preverify Phase (Cannot Find Distinguished Name For Name Administrators). (Doc ID 1533436.1)
you forgot to check the 3 box during the creation of the provisioning response file phase
so Check the 3 boxes create Administrators Group/Monitors Group and Operators group
Tuan
Hi Tushar
This is an awesome blog on Fusion Application installation. I am trying to login into BI Weblogic Admin Server Console with url http://:10201/console but it is not accepting FAADMIN user/pwd. Do you know which user should we use to login into BI Admin Server console?
Mat
Never mind, got it.
M
Hi Tushar,
I completed all steps and trying to run Startup phase and below error is stopping me to continue, I couldn’t get any help online or metalink. Can you help?
[runProvisioning-startup] [NOTIFICATION] [] [runProvisioning-startup] [tid: 10] [ecid: 0000KEA5CXJDwWWFLziOOA1IorcE000001,0] [logStatus] STATE=BUILD_ERROR!TIMESTAMP=2014-01-12 21:43:19 PST!TARGET=private-configure-webcenter-ses-task!CATEGORY=BUILD_ERROR!DOMAIN=NONE!HOSTNAME=vivehasvr!PRODUCTFAMILY=orchestration!PRODUCT=orchestration!TASK=createSesObjects!TASKID=orchestration.orchestration.BUILD_ERROR.private-configure-webcenter-ses-task.createSesObjects!MESSAGE=Unable to create SES source object with name: SecureWebCenterRssSource due to error: EQA-15011: The plug-in manager raised an unexpected error.!DETAIL=Unable to create SES source object with name: SecureWebCenterRssSource due to error: EQA-15011: The plug-in manager raised an unexpected error.!BUILDFILE=/media/fus/fusion/provisioning/provisioning-build/webcenter-build.xml!LINENUMBER=2570!
[2014-01-12T21:43:19.998-08:00] [runProvisioning-startup] [ERROR] [FAPROV-00298] [runProvisioning-startup] [tid: 10] [ecid: 0000KEA5CXJDwWWFLziOOA1IorcE000001,0] An Error Occured: [[
Unable to create SES source object with name: SecureWebCenterRssSource due to error: EQA-15011: The plug-in manager raised an unexpected error.
at oracle.apps.fnd.provisioning.ant.taskdefs.BaseCreateSesObjectsTask.createSesObject(BaseCreateSesObjectsTask.java:292)
at oracle.apps.fnd.provisioning.ant.taskdefs.CreateWebcenterSesObjectsTask.configureWebCenter(CreateWebcenterSesObjectsTask.java:226)
at oracle.apps.fnd.provisioning.ant.taskdefs.CreateWebcenterSesObjectsTask.executeTask(CreateWebcenterSesObjectsTask.java:101)
at oracle.apps.fnd.provisioning.ant.taskdefs.CreateSesObjectsTask.executeTask(CreateSesObjectsTask.java:121)
at oracle.apps.fnd.provisioning.ant.taskdefs.BaseProvisioningTask.execute(BaseProvisioningTask.java:102)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:62)
at oracle.apps.fnd.provisioning.ant.taskdefs.util.SynchronizedTask.executeInternal(SynchronizedTask.java:286)
at oracle.apps.fnd.provisioning.ant.taskdefs.util.SynchronizedTask.executeTask(SynchronizedTask.java:318)
at oracle.apps.fnd.provisioning.ant.taskdefs.BaseProvisioningTask.execute(BaseProvisioningTask.java:102)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:357)
at org.apache.tools.ant.Target.performTasks(Target.java:385)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
at org.apache.tools.ant.Project.executeTarget(Project.java:1307)
at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
at org.apache.tools.ant.Project.executeTargets(Project.java:1191)
at org.apache.tools.ant.Main.runBuild(Main.java:758)
at org.apache.tools.ant.Main.startAnt(Main.java:218)
at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)
at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)
Caused by: oracle.search.admin.api.ws.client.AdminAPIRuntimeFault_Exception: EQA-15011: The plug-in manager raised an unexpected error.
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
at com.sun.xml.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:141)
at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:125)
at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:95)
at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:136)
at $Proxy32.create(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at weblogic.wsee.jaxws.spi.ClientInstanceInvocationHandler.invoke(ClientInstanceInvocationHandler.java:84)
at $Proxy33.create(Unknown Source)
at oracle.apps.fnd.provisioning.ant.taskdefs.BaseCreateSesObjectsTask.createSesObject(BaseCreateSesObjectsTask.java:276)
at oracle.apps.fnd.provisioning.ant.taskdefs.CreateWebcenterSesObjectsTask.configureWebCenter(CreateWebcenterSesObjectsTask.java:226)
at oracle.apps.fnd.provisioning.ant.taskdefs.CreateWebcenterSesObjectsTask.executeTask(CreateWebcenterSesObjectsTask.java:101)
at oracle.apps.fnd.provisioning.ant.taskdefs.CreateSesObjectsTask.executeTask(CreateSesObjectsTask.java:119)
at oracle.apps.fnd.provisioning.ant.taskdefs.BaseProvisioningTask.execute(BaseProvisioningTask.java:102)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.taskdefs.Sequential.execute(Sequential.java:62)
at oracle.apps.fnd.provisioning.ant.taskdefs.util.SynchronizedTask.executeInternal(SynchronizedTask.java:286)
at oracle.apps.fnd.provisioning.ant.taskdefs.util.SynchronizedTask.executeTask(SynchronizedTask.java:318)
at oracle.apps.fnd.provisioning.ant.taskdefs.BaseProvisioningTask.execute(BaseProvisioningTask.java:102)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
at org.apache.tools.ant.Task.perform(Task.java:348)
at org.apache.tools.ant.Target.execute(Target.java:357)
at org.apache.tools.ant.Target.performTasks(Target.java:385)
at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
at org.apache.tools.ant.Project.executeTargets(Project.java:1189)
at org.apache.tools.ant.Main.runBuild(Main.java:758)
at org.apache.tools.ant.Main.startAnt(Main.java:217)
... 2 more
Hi Kris,
did you find a solution for that ?
//
Frank
Hi Kris,
I am getting the same error. Not sure how to resolve it. Appreciate if you can let me know if you have resolved it and if so how?
Regards,
Anand
Tushar,
Appreciate if you can help. I get the above error mentioning that the AccessGate is unable to contact any Access Servers and also is mentioning that there is an Exception thrown during WebGate initialization.
I found that when I start the Web Serverusing OPMNCTL STARTALL it starts and comes back to Unix Prompt but within few seconds I start getting the above error.
It seems unless I start the Web Server in Node 2 properly I will not be able to complete the Startup process.
Any input would be great. I dont want to start again from scratch. 🙂
Regards,
Anand
Hi Tushar,
I am installing Fusion Accounting Hub and Finance. Getting below error at configure. As per one of metalink doc id, I have added “net.ipv6.conf.all.disable_ipv6 = 1” in /etc/sysctl.conf. Bounce servers and restarted install from scratch. But still getting error. Please share if you have any workaround.
[2013-12-25T03:16:56.002+05:30] [runProvisioning-configure] [ERROR] [] [runProvisioning-configure] [tid: 10] [ecid: 0000KC_fwW^D0j95nfT4iZ1IiSQP000000,0] BUILD FAILED[[
/apps/fusion/provisioning/provisioning-build/orchestration-build.xml:737: The following error occurred while executing this line:
/apps/fusion/provisioning/provisioning-build/orchestration-build.xml:2792: The following error occurred while executing this line:
/apps/fusion/provisioning/provisioning-build/orchestration-build.xml:2551: The following error occurred while executing this line:
/apps/fusion/provisioning/provisioning-build/base-product-family-build.xml:839: The following error occurred while executing this line:
/apps/fusion/provisioning/provisioning-build/base-product-family-build.xml:365: The following error occurred while executing this line:
/apps/fusion/provisioning/provisioning-build/base-product-family-build.xml:1932: The following error occurred while executing this line:
/apps/fusion/provisioning/provisioning-build/base-product-family-build.xml:613: The following error occurred while executing this line:
/apps/fusion/provisioning/provisioning-build/base-techstack-build.xml:139: The following error occurred while executing this line:
/apps/fusion/provisioning/provisioning-build/odi-build.xml:477: The following error occurred while executing this line:
/apps/fusion/provisioning/provisioning-build/odi-build.xml:819: Process “/apps/fusion/jdk6/bin/java oracle.apps.fnd.provisioning.ant.taskdefs.util.SecureJ2SEUtilInvoker oracle.odi.util.odiConfigDataServer 2,7 FUSION_ODI jdbc:oracle:thin:@fadbserv.fusionapps.net:1521/fusiondb 2000 jdbc:oracle:thin:@fadbserv.fusionapps.net:1521/fusiondb FUSION_ODI_STAGE” exited with non-zero exit code “1”. Input Stream before decrypting for process execution: “NlUmxgt7mxqp34xyat45iQ==NlUmxgt7mxqp34xyat45iQ==”. Environment variables: “(CLASSPATH=/apps/oracle/fusionapps/wlserver_10.3/server/ext/jdbc/oracle/11g/ojdbc5.jar:/apps/oracle/fusionapps/odi/oracledi.sdk/lib/odi-core.jar:/apps/oracle/fusionapps/odi/oracledi.sdk/lib/spring-core.jar:/apps/oracle/fusionapps/odi/oracledi.sdk/lib/commons-lang-2.2.jar:/apps/fusion/provisioning/lib/oracle-provisioning-tools.jar:/apps/fusion/provisioning/lib/oracle-provisioning-anttasks.jar:/apps/fusion/provisioning/lib/oracle-provisioning-apps-metadata.jar:/apps/fusion/provisioning/lib/ant.jar:/apps/fusion/provisioning/lib/ant-contrib.jar:/apps/fusion/provisioning/lib/catalina-ant.jar:/apps/fusion/provisioning/lib/httpunit.jar:/apps/fusion/provisioning/lib/idmsuitevalidationservice.jar:/apps/fusion/provisioning/lib/groovy-1.5.7.jar:/apps/fusion/provisioning/lib/spring-beans.jar:/apps/fusion/provisioning/lib/spring-core.jar:/apps/fusion/provisioning/lib/spring-dao.jar:/apps/fusion/provisioning/lib/spring-jdbc.jar:/apps/oracle/fusionapps/oracle_common/modules/oracle.pwdgen_11.1.1/pwdgen.jar:/apps/oracle/fusionapps/soa/soa/modules/oracle.soa.workflow_11.1.1/bpm-services.jar:/apps/oracle/fusionapps/atgpf/ecsf/modules/oracle.ecsf_11.1.1/lib/search_adminapi_wsclient.jar:/apps/oracle/fusionapps/oracle_common/modules/oracle.ldap_11.1.1/ldifloadtool.jar:/apps/oracle/fusionapps/wlserver_10.3/server/lib/wljmxclient.jar:/apps/oracle/webtier_mwhome/webtier/opmn/lib/wlfullclient.jar:/apps/oracle/fusionapps/wlserver_10.3/server/lib/wlclient.jar:/apps/oracle/fusionapps/wlserver_10.3/server/lib/ojdbc6.jar:/apps/oracle/fusionapps/odi/oracledi.sdk/lib/odi-core.jar:/apps/oracle/fusionapps/odi/oracledi.sdk/lib/commons-logging-1.1.1.jar:/apps/oracle/fusionapps/odi/oracledi.sdk/lib/eclipselink.jar:/apps/oracle/fusionapps/odi/oracledi.sdk/lib/commons-lang-2.2.jar:/apps/oracle/fusionapps/odi/oracledi.sdk/lib/commons-collections-3.2.jar:/apps/oracle/fusionapps/odi/oracledi.sdk/lib/persistence.jar:/apps/oracle/fusionapps/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar:/apps/oracle/fusionapps/oracle_common/modules/oracle.idm_11.1.1/identitystore.jar:/apps/oracle/fusionapps/oracle_common/modules/oracle.jps_11.1.1/jps-unsupported-api.jar:/apps/oracle/fusionapps/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar:/apps/oracle/fusionapps/oracle_common/modules/oracle.jps_11.1.1/jps-se.jar:/apps/oracle/fusionapps/oracle_common/modules/oracle.ucp_11.1.0.jar:/apps/oracle/fusionapps/oracle_common/jlib/ua.jar:/apps/oracle/fusionapps/oracle_common/oui/jlib/ojmisc.jar)”.
I have fixed this error by running below command to increase entropy value
rngd -r /dev/urandom -o /dev/random
Thank you Prashant. This fix works also for us.
Hi Tushar
Need your help , while running FA provisioning post configure completing with below error.
2013-11-16 00:06:41.255 NOTIFICATION [logStatus] STATE=BUILD_ERROR!TIMESTAMP=2013-11-16 00:03:49 IST!TARGET=private-postconfigure!CATEGORY=BUILD_ERROR!DOMAIN=NONE!HOSTNAME=fahost.bahwancybertek.com!PRODUCTFAMILY=scm!PRODUCT=scmdomain1!TASK=enableWeblogicProxyPlugin!TASKID=scm.scmdomain1.BUILD_ERROR.private-postconfigure.enableWeblogicProxyPlugin!MESSAGE=Process execution failed with return code: 1. Check the logs for more information. See /u06/faapp/provisioning/debug/fahost/postconfigure_15_11_13_19_42_06/enableWeblogicProxyPlugin1123717278768185392.py!DETAIL=!BUILDFILE=/u06/fusion/provisioning/provisioning-build/domain-build.xml!LINENUMBER=390!
2013-11-16 00:06:41.260 NOTIFICATION [logStatus] STATE=BUILD_ERROR!TIMESTAMP=2013-11-16 00:03:49 IST!TARGET=private-postconfigure!CATEGORY=BUILD_ERROR!DOMAIN=NONE!HOSTNAME=fahost.bahwancybertek.com!PRODUCTFAMILY=crm!PRODUCT=crmdomain1!TASK=enableWeblogicProxyPlugin!TASKID=crm.crmdomain1.BUILD_ERROR.private-postconfigure.enableWeblogicProxyPlugin!MESSAGE=Process execution failed with return code: 1. Check the logs for more information. See /u06/faapp/provisioning/debug/fahost/postconfigure_15_11_13_19_42_06/enableWeblogicProxyPlugin1543950018305182305.py!DETAIL=!BUILDFILE=/u06/fusion/provisioning/provisioning-build/domain-build.xml!LINENUMBER=390!
2013-11-16 00:06:43.181 NOTIFICATION [logStatus] STATE=BUILD_ERROR!TIMESTAMP=2013-11-16 00:06:41 IST!TARGET=private-postconfigure!CATEGORY=BUILD_ERROR!DOMAIN=NONE!HOSTNAME=fahost.bahwancybertek.com!PRODUCTFAMILY=scm!PRODUCT=scmdomain1!TASK=enableWeblogicProxyPlugin!TASKID=scm.scmdomain1.BUILD_ERROR.private-postconfigure.enableWeblogicProxyPlugin!MESSAGE=Add policy operation failed. Details of the error are available in the provisioning log files.!DETAIL=!BUILDFILE=/u06/fusion/provisioning/provisioning-build/domain-build.xml!LINENUMBER=390!
2013-11-16 00:06:43.181 NOTIFICATION [logStatus] STATE=BUILD_ERROR!TIMESTAMP=2013-11-16 00:06:41 IST!TARGET=private-postconfigure!CATEGORY=BUILD_ERROR!DOMAIN=NONE!HOSTNAME=fahost.bahwancybertek.com!PRODUCTFAMILY=crm!PRODUCT=crmdomain1!TASK=enableWeblogicProxyPlugin!TASKID=crm.crmdomain1.BUILD_ERROR.private-postconfigure.enableWeblogicProxyPlugin!MESSAGE=Add policy operation failed. Details of the error are available in the provisioning log files.!DETAIL=!BUILDFILE=/u06/fusion/provisioning/provisioning-build/domain-build.xml!LINENUMBER=390!
Need your help.
Elayaraja
hi Elayaraja,
Did you find any solution for your issue mentioned here? I am getting similar error.
Thanks,
Prasad
Hi Tushar
Thanks for your update and if possible please update the Start & shutdown procedure for Fusion Apps
Dear Elayaraja,
The startup and shutdown procedures are the same in 11.1.7
You can look at the steps as posted earlier. The only change is in the listener name and installation path (instead of /app/fusion we have now used /app/oracle) but this is only for our installation. Your path could be different.
http://www.oratraining.com/blog/2013/05/startupshutdown-scripts-for-fusion-applications-2-nodes-setup/
I will still post an updated version for our new directory structure but technically it is same.
Regards
Tushar
Dear Tushar
Thanks for your update.
Regards
Elayaraja
Tushar,
Thanks for the update. I built an 11.1.7 environment a month ago and will compare the configuration I used with your steps to see if there are any refinements to either.
I’m curious as to why you don’t use the startup and shutdown scripts provided by Oracle. I find them much easier than manually starting up all the components in the environment (especially the 80+ managed services). One problem I have encountered is that the fastartstop.sh script does not seem to work on a secondary application node, it works fine on the primary node. It complains about not being able to find the instance homes in the domain registry file (though they are there). I’m wondering if this is to do with enabling local storage.
I’ll provide some feedback on your extremely well documented implementation steps once I have compared them with mine.
Dave.
Dear Dave,
For IDM node yes we can use stopall and startall by oracle but the reason I have shown individual stop and start procedures for managed server is that some times users do not want to start ODMS, OIF etc when not required so this will give them leverage to choose what to start.
Regarding FA Node I find fastopstart to be working fine. If you have any other oracle provided scripts then kindly share with the forum here so that it will help every one.
Regards
Tushar