WLST Domain Creation using JRF template throws SQLRecoverableException

I am working on domain creation using templates and included the JRF template to use OPSS functionality.
I have run the RCU utility to create the required components that will have necessary tables to host OPSS data and also tested that it works with CC_STB user that i will use to connect from WLS.
I am able to ping the database server having RCU components from the VM where i want to create and configure the domain but when i configure the LocalSvcTblDataSource with the same ip address and try to setup the OPSS datasources, it gives me "Internal Exception: java.sql.SQLRecoverableException: IO Error: Unknown host specified Error Code: 17002"
Below is my WLST python script:
#=======================================================================================
# Open a domain template.
#=======================================================================================
readTemplate("/u01/app/mw/Oracle_Home/wlserver/common/templates/wls/wls.jar")
#=======================================================================================
# Update the domain to enable the WebLogic Server domain with JRF and EM.
#=======================================================================================
addTemplate('/u01/app/mw/Oracle_Home/oracle_common/common/templates/wls/oracle.jrf_template_12.1.2.jar')
addTemplate('/u01/app/mw/Oracle_Home/em/common/templates/wls/oracle.em_wls_template_12.1.2.jar')
#=======================================================================================
# Configure the Administration Server and SSL port.
# To enable access by both local and remote processes, you should not set the
# listen address for the server instance (that is, it should be left blank or not set).
# In this case, the server instance will determine the address of the machine and
# listen on it.
#=======================================================================================
cd('Servers/AdminServer')
set('ListenAddress','')
set('ListenPort', 7001)
create('AdminServer','SSL')
cd('SSL/AdminServer')
set('Enabled', 'True')
set('ListenPort', 7002)
#=======================================================================================
# Define the user password for weblogic.
#=======================================================================================
cd('/')
cd('Security/base_domain/User/weblogic')
# Please set password here before using this script, e.g. cmo.setPassword('value')
cmo.setPassword('password')
#=======================================================================================
# Create and configure a JDBC Data Source, and sets the JDBC user.
#=======================================================================================
# Get RCU Configuration using RCU service table (STB) schema credentials
cd('/')
cd('JDBCSystemResource/LocalSvcTblDataSource/JdbcResource/LocalSvcTblDataSource')
cd('JDBCDriverParams/NO_NAME_0')
set('DriverName','oracle.jdbc.OracleDriver')
set('URL','jdbc:oracle:thin:@XX.XX.XX.XX:15210/xe')
set('PasswordEncrypted', 'password')
set('UseXADataSourceInterface', 'false')
cd('Properties/NO_NAME_0')
cd('Property/user')
cmo.setValue('CC_STB')
getDatabaseDefaults()
#=======================================================================================
# Write the domain and close the domain template.
#=======================================================================================
setOption('OverwriteDomain', 'true')
writeDomain('/u01/data/user_projects/domains/cc_domain')
closeTemplate()
#=======================================================================================
# Exit WLST.
#=======================================================================================
exit()
And the complete exception trace.
Internal Exception: java.sql.SQLRecoverableException: IO Error: Unknown host specified
Error Code: 17002
Error: writeDomain() failed. Do dumpStack() to see details.
wls:/offline/base_domain>dumpStack();
com.oracle.cie.domain.script.jython.WLSTException: com.oracle.cie.domain.script.ScriptException: Domain Creation Failed!
Domain Location: /u01/data/user_projects/domains/cc_domain
Reason: oracle.security.opss.tools.lifecycle.LifecycleException: oracle.security.jps.service.policystore.PolicyStoreException: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.4.2.v20130514-5956486): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLRecoverableException: IO Error: Unknown host specified
Error Code: 17002
Exception:
oracle.security.opss.tools.lifecycle.LifecycleException: oracle.security.jps.service.policystore.PolicyStoreException: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.4.2.v20130514-5956486): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLRecoverableException: IO Error: Unknown host specified
Error Code: 17002
  at com.oracle.cie.domain.script.jython.CommandExceptionHandler.handleException(CommandExceptionHandler.java:55)
  at com.oracle.cie.domain.script.jython.WLScriptContext.handleException(WLScriptContext.java:1967)
  at com.oracle.cie.domain.script.jython.WLScriptContext.writeDomain(WLScriptContext.java:1126)
  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
  at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  at java.lang.reflect.Method.invoke(Method.java:606)
  at org.python.core.PyReflectedFunction.__call__(Unknown Source)
  at org.python.core.PyMethod.__call__(Unknown Source)
  at org.python.core.PyObject.__call__(Unknown Source)
  at org.python.core.PyInstance.invoke(Unknown Source)
  at org.python.pycode._pyx5.writeDomain$15(/tmp/WLSTOfflineIni4846195865917165143.py:73)
  at org.python.pycode._pyx5.call_function(/tmp/WLSTOfflineIni4846195865917165143.py)
  at org.python.core.PyTableCode.call(Unknown Source)
  at org.python.core.PyTableCode.call(Unknown Source)
  at org.python.core.PyFunction.__call__(Unknown Source)
  at org.python.pycode._pyx93.f$0(<console>:1)
  at org.python.pycode._pyx93.call_function(<console>)
  at org.python.core.PyTableCode.call(Unknown Source)
  at org.python.core.PyCode.call(Unknown Source)
  at org.python.core.Py.runCode(Unknown Source)
  at org.python.core.Py.exec(Unknown Source)
  at org.python.util.PythonInterpreter.exec(Unknown Source)
  at org.python.util.InteractiveInterpreter.runcode(Unknown Source)
  at org.python.util.InteractiveInterpreter.runsource(Unknown Source)
  at org.python.util.InteractiveInterpreter.runsource(Unknown Source)
  at weblogic.management.scripting.WLST.main(WLST.java:219)
  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
  at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
  at java.lang.reflect.Method.invoke(Method.java:606)
  at weblogic.WLST.main(WLST.java:29)
Caused by: com.oracle.cie.domain.script.ScriptException: Domain Creation Failed!
Domain Location: /u01/data/user_projects/domains/cc_domain
Reason: oracle.security.opss.tools.lifecycle.LifecycleException: oracle.security.jps.service.policystore.PolicyStoreException: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.4.2.v20130514-5956486): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLRecoverableException: IO Error: Unknown host specified
Error Code: 17002
Exception:
oracle.security.opss.tools.lifecycle.LifecycleException: oracle.security.jps.service.policystore.PolicyStoreException: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.4.2.v20130514-5956486): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLRecoverableException: IO Error: Unknown host specified
Error Code: 17002
  at com.oracle.cie.domain.script.ScriptExecutor.runGenerator(ScriptExecutor.java:3706)
  at com.oracle.cie.domain.script.ScriptExecutor.writeDomain(ScriptExecutor.java:991)
  at com.oracle.cie.domain.script.jython.WLScriptContext.writeDomain(WLScriptContext.java:1117)
  ... 29 more
Caused by: com.oracle.cie.domain.security.external.ConfigSecurityException: oracle.security.opss.tools.lifecycle.LifecycleException: oracle.security.jps.service.policystore.PolicyStoreException: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.4.2.v20130514-5956486): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLRecoverableException: IO Error: Unknown host specified
Error Code: 17002
  at oracle.security.opss.tools.lifecycle.cie.OpssSecurityConfiguration.initializeSubsystem(OpssSecurityConfiguration.java:129)
  at com.oracle.cie.domain.DomainGenerator.run(DomainGenerator.java:315)
  at java.lang.Thread.run(Thread.java:744)
Caused by: oracle.security.opss.tools.lifecycle.LifecycleException: oracle.security.jps.service.policystore.PolicyStoreException: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.4.2.v20130514-5956486): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLRecoverableException: IO Error: Unknown host specified
Error Code: 17002
  at oracle.security.opss.tools.lifecycle.OpssDomainConfigImpl.checkIfFarmExists(OpssDomainConfigImpl.java:708)
  at oracle.security.opss.tools.lifecycle.OpssDomainConfigImpl.configureDBSecurityStore(OpssDomainConfigImpl.java:339)
  at oracle.security.opss.tools.lifecycle.OpssDomainConfigImpl.initializeSubsystem(OpssDomainConfigImpl.java:166)
  at oracle.security.opss.tools.lifecycle.cie.OpssSecurityConfiguration.initializeSubsystem(OpssSecurityConfiguration.java:126)
  ... 2 more
Caused by: oracle.security.jps.service.policystore.PolicyStoreException: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.4.2.v20130514-5956486): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLRecoverableException: IO Error: Unknown host specified
Error Code: 17002
  at oracle.security.jps.internal.policystore.rdbms.JpsDBDataManager.processJPAException(JpsDBDataManager.java:2088)
  at oracle.security.jps.internal.policystore.rdbms.JpsDBDataManager.init(JpsDBDataManager.java:955)
  at oracle.security.jps.internal.policystore.rdbms.JpsDBDataManager.beginTransaction(JpsDBDataManager.java:1459)
  at oracle.security.jps.internal.policystore.rdbms.JpsDBDataManager.beginTransaction(JpsDBDataManager.java:1455)
  at oracle.security.jps.internal.common.rdbms.util.JpsDbBootstrapImpl.<init>(JpsDbBootstrapImpl.java:162)
  at oracle.security.opss.tools.lifecycle.OpssDomainConfigImpl.checkIfFarmExists(OpssDomainConfigImpl.java:679)
  ... 5 more
Caused by: javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.4.2.v20130514-5956486): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLRecoverableException: IO Error: Unknown host specified
Error Code: 17002
  at org.eclipse.persistence.internal.jpa.EntityManagerSetupImpl.deploy(EntityManagerSetupImpl.java:614)
  at org.eclipse.persistence.internal.jpa.EntityManagerFactoryDelegate.getDatabaseSession(EntityManagerFactoryDelegate.java:186)
  at org.eclipse.persistence.internal.jpa.EntityManagerFactoryDelegate.createEntityManagerImpl(EntityManagerFactoryDelegate.java:278)
  at org.eclipse.persistence.internal.jpa.EntityManagerFactoryImpl.createEntityManagerImpl(EntityManagerFactoryImpl.java:304)
  at org.eclipse.persistence.internal.jpa.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:282)
  at oracle.security.jps.internal.policystore.rdbms.JpsDBDataManager.getVersion(JpsDBDataManager.java:1027)
  at oracle.security.jps.internal.policystore.rdbms.JpsDBDataManager.getEMFAndSubject(JpsDBDataManager.java:1124)
  at oracle.security.jps.internal.policystore.rdbms.JpsDBDataManager.init(JpsDBDataManager.java:907)
  ... 9 more
Caused by: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.4.2.v20130514-5956486): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLRecoverableException: IO Error: Unknown host specified
Error Code: 17002
  at org.eclipse.persistence.exceptions.DatabaseException.sqlException(DatabaseException.java:324)
  at org.eclipse.persistence.exceptions.DatabaseException.sqlException(DatabaseException.java:319)
  at org.eclipse.persistence.sessions.DefaultConnector.connect(DefaultConnector.java:138)
  at org.eclipse.persistence.sessions.DatasourceLogin.connectToDatasource(DatasourceLogin.java:162)
  at org.eclipse.persistence.internal.sessions.DatabaseSessionImpl.loginAndDetectDatasource(DatabaseSessionImpl.java:690)
  at org.eclipse.persistence.internal.jpa.EntityManagerFactoryProvider.login(EntityManagerFactoryProvider.java:215)
  at org.eclipse.persistence.internal.jpa.EntityManagerSetupImpl.deploy(EntityManagerSetupImpl.java:554)
  ... 16 more
Caused by: java.sql.SQLRecoverableException: IO Error: Unknown host specified
  at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:465)
  at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:546)
  at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:232)
  at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
  at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:521)
  at java.sql.DriverManager.getConnection(DriverManager.java:571)
  at java.sql.DriverManager.getConnection(DriverManager.java:187)
  at org.eclipse.persistence.sessions.DefaultConnector.connect(DefaultConnector.java:98)
  ... 20 more
Caused by: oracle.net.ns.NetException: Unknown host specified
  at oracle.net.resolver.HostnameNamingAdapter.resolve(HostnameNamingAdapter.java:191)
  at oracle.net.resolver.NameResolver.resolveName(NameResolver.java:133)
  at oracle.net.resolver.AddrResolution.resolveAndExecute(AddrResolution.java:416)
  at oracle.net.ns.NSProtocol.establishConnection(NSProtocol.java:687)
  at oracle.net.ns.NSProtocol.connect(NSProtocol.java:247)
  at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1109)
  at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:316)
  ... 27 more
Any help/pointers/hints will be helpful
Thanks,
Santosh

Hi Micheal,
Thanks a Lot for your response.
We have checked the OS requirements :
System Itanium 11i (11.31) B.11.31.0803.318a Base Quality Pack Bundle for HP-UX 11i v3, March 2008+
Response:
======
We have the higher version installed for this quality pack.
QPKBASE B.11.31.1109.367a Base Quality Pack Bundle for HP-UX 11i v3, September 2011
2) Required Packages : HPDesktopDev (version B.11.31.01)
Response:
=======
This package is also installed.
X11MotifDevKit B.11.31.01 HP-UX Desktop Developer's Toolkit - X11, Motif, and Imake
3) Required Operating System Patches
PHKL_36248
PHKL_36249
PHSS_37202
PHSS_37501
PHCO_38050
PHSS_38139
Response:
========
We have the supersets for these patches installed. The installation logs also confirm these patches at the OS level.
Check Name:Patches
Check Description:This is a prerequisite condition to test whether the patches recommended for installing the product are available on the system.
Checking for PHKL_36248; found PHKL_36248. Passed
Checking for PHKL_36249; found PHKL_36249. Passed
Checking for PHSS_37202; found PHSS_37202. Passed
Checking for PHSS_37501; found PHSS_37501. Passed
Checking for PHCO_38050; found PHCO_38050. Passed
Checking for PHSS_38139; found PHSS_38139. Passed
Check complete. The overall result of this check is: Passed
Regards
Sumit Kapila

Similar Messages

  • Error during weblogic domain creation using template.

    Hi,
    I have 2 machines(lets say Old and New). I have installed weblogic 10.3.5 in my Old machine where in I have used RCU 11.1.1.50. I have created a template of this domain. Now I have Weblogic 10.3.6 in my New machine and have used RCU 11.1.1.6.0. I am creating domain using the template created from Old machine where I am getting this error:
    Component Schema=SOA Infrastructure
    Driver=oracle.jdbc.xa.client.OracleXADataSource
    URL=jdbc:oracle:thin:@localhost:1521/fcubs
    User=DEV_SOAINFRA
    Password=******
    SQL Test=select 1 from schema_version_registry where owner=(select user from dual) and mr_type='SOAINFRA' and version='11.1.1.5.0'
    CFGFWK-60850:  Test Failed!
    CFGFWK-60853:  A connection was established to the database but no rows were returned from the test SQL statement.
    Component Schema=User Messaging Service
    Driver=oracle.jdbc.OracleDriver
    URL=jdbc:oracle:thin:@localhost:1521/fcubs
    User=DEV_ORASDPM
    Password=******
    SQL Test=select 1 from schema_version_registry where owner=(select user from dual) and mr_type='ORASDPM' and version='11.1.1.2.0'
    CFGFWK-60850:  Test Failed!
    CFGFWK-60853:  A connection was established to the database but no rows were returned from the test SQL statement.
    Component Schema=OWSM MDS Schema
    Driver=oracle.jdbc.OracleDriver
    URL=jdbc:oracle:thin:@localhost:1521/fcubs
    User=DEV_MDS
    Password=******
    SQL Test=select 1 from schema_version_registry where
    +                    owner=(select user from dual) and mr_type='MDS' and+
    +                    version='11.1.1.5.0'+
    CFGFWK-60850:  Test Failed!
    CFGFWK-60853:  A connection was established to the database but no rows were returned from the test SQL statement.
    Component Schema=SOA MDS Schema
    Driver=oracle.jdbc.OracleDriver
    URL=jdbc:oracle:thin:@localhost:1521/fcubs
    User=DEV_MDS
    Password=******
    SQL Test=select 1 from schema_version_registry where owner=(select user from dual) and mr_type='MDS' and version='11.1.1.5.0'
    CFGFWK-60850:  Test Failed!
    CFGFWK-60853:  A connection was established to the database but no rows were returned from the test SQL statement.
    Please help.
    Abhay

    You may simply ignore these errors. They are harmless.
    As you created the template using older version, it is trying to find older version entry in new schema created by higher version of RCU and hence it is expected to fail.
    Regards,
    Anuj

  • DIR creation using a template, but template file is not in content Server

    HI Sap Gurus,
    We have a scenario where in we are planning to maintain a different template Files /documents in SAP DMS,
    The user will use this templates to update his details and save the filled in details back accordingly.
    so i have uploaded few files / templates in DC30 for a particular Workstation Application to be used as templates,
    but this templates are not stored in the content server for the client wide access, so if i have uploaded the file from my system only i can access or work with the template,
    why is it so, why is the template not stored in a content server so that every user can access this,
    is there any other better way of maintaining the templates in SAP DMS. please let me know.
    Points Awaiting
    Thanks and regards
    Sathish

    Hi
    There are two options to store templates
    1) Source File :- Where you give the File path in ur PC
    2) Source Document :- It takes the template from a DIR stored - the orginal may be stored in the content server
    Now you have used option 1)..
    Go for 2 ) and store the original in the content server. This will help all users to access the template
    Regards
    Aby

  • Domain creation using WLST offline mode

    Hi,
    We are migrating from WL8.1SP5 to WL10MP2. After reading through the various options (WLST online, WLST offline, WLST.configToScript(), and Configuration Wizard) , I have concluded that we will use WLST in offline mode to create domains in our prod, qa, and dev environments. In 8.1 I had a silent script that would create domains for me repeatedly in any environment very easily. I want to map this script into the corresponding SOME_NAME.py script to be used for WL10MP2 domain.
    I have the BEA provided basicWLSDomain.py (please see below) script. I have difficulty in understanding more than half of that script! I know the basic concept is to traverse the MBean tree and creat and/or set parameters. But I do not know which MBean I will need to modify/create.
    Example 1:
    readTemplate("C:/bea/wlserver_10.0/common/templates/domains/wls.jar")
    cd('Servers/AdminServer')
    Q1] I went through http://e-docs.bea.com/wls/docs90/wlsmbeanref/core/index.html but could not find either ServersMBean or AdminServerMBean.
    Example 2:
    cd('/')
    create('myJMSServer', 'JMSServer')
    cd('/')
    create('myJmsSystemResource', 'JMSSystemResource')
    cd('JMSSystemResource/myJmsSystemResource/JmsResource/NO_NAME_0')
    Q2] What is a JMSSystemResource? (If I remember correctly, there is no such thing in WL8.1)
    Q3] What is JmsResource?
    Example 3:
    cd('/')
    create('myDataSource', 'JDBCSystemResource')
    cd('JDBCSystemResource/myDataSource/JdbcResource/myDataSource')
    create('myJdbcDriverParams','JDBCDriverParams')
    cd('JDBCDriverParams/NO_NAME_0')
    set('DriverName','com.pointbase.jdbc.jdbcUniversalDriver')
    set('URL','jdbc:pointbase:server://localhost/demo')
    set('PasswordEncrypted', 'PBPUBLIC')
    set('UseXADataSourceInterface', 'false')
    create('myProps','Properties')
    cd('Properties/NO_NAME_0')
    create('user', 'Property')
    cd('Property/user')
    cmo.setValue('PBPUBLIC')
    cd('/JDBCSystemResource/myDataSource/JdbcResource/myDataSource')
    create('myJdbcDataSourceParams','JDBCDataSourceParams')
    cd('JDBCDataSourceParams/NO_NAME_0')
    set('JNDIName', java.lang.String("myDataSource_jndi"))
    cd('/JDBCSystemResource/myDataSource/JdbcResource/myDataSource')
    create('myJdbcConnectionPoolParams','JDBCConnectionPoolParams')
    cd('JDBCConnectionPoolParams/NO_NAME_0')
    set('TestTableName','SYSTABLES')
    Q4] Can you please explain the above snippet line by line?
    Q5] Why are certain attributes set like this --- set('TestTableName','SYSTABLES') while certain attributes like below are set like this -- myq.setJNDIName('jms/myqueue')?
    Example 4:
    myq=create('myQueue','Queue')
    myq.setJNDIName('jms/myqueue')
    myq.setSubDeploymentName('myQueueSubDeployment')
    cd('/')
    cd('JMSSystemResource/myJmsSystemResource')
    create('myQueueSubDeployment', 'SubDeployment')
    Q6] What us a SubDeployment?
    I apologize for the long question. I would greatly appreciate any help!
    Thanks!
    Edited by: user10045656 on Oct 29, 2008 11:03 AM
    Edited by: user10045656 on Oct 29, 2008 11:06 AM

    1 - What is the best way to create a schema, for reporting application, during automated domain build process as we need to create new domains from the script and also be able to start and deploy applications on it. which will also require to have db schema for reporting application.
    My suggestion would be to execute the scripts under /neelapu/bea/post31/RC4-samples/osb_10.3/dbscripts/oracle/*.sql with your automated process. OSB requires two simple tables WLI_QS_REPORT_DATA and WLI_QS_REPORT_ATTRIBUTE.
    If reporting is not required then we can modify (I guess) in wlst offline mode to delete the below applications from domain.
    <app-deployment>
    <name>JMS Reporting Provider</name>
    <target>osb_server1</target>
    <module-type>ear</module-type>
    <source-path>/neelapu/bea/xyz/load4/Oracle_OSB1/lib/common/jmsreportprovider.ear</source-path>
    <deployment-order>125</deployment-order>
    <security-dd-model>DDOnly</security-dd-model>
    </app-deployment>
    <app-deployment>
    <name>Message Reporting Purger</name>
    <target>osb_server1</target>
    <module-type>ear</module-type>
    <source-path>/neelapu/bea/xyx/load4/Oracle_OSB1/lib/common/msgpurger.ear</source-path>
    <deployment-order>126</deployment-order>
    <security-dd-model>DDOnly</security-dd-model>
    </app-deployment>
    Thanks
    Manoj

  • WLS domain creation errors using new release (v5)

    I'm running into errors in Step 5 of the beta install. I've completely uninstalled the previous version of everything (including RCU drop/create) and done a clean install using the files on the beta site after the announcement of the new release was made this morning.
    It seems that the version string entries in "schema_version_registry" created by RCU differ. The "User Messaging", "OWSM MDS" and "SOA MDS" schemas all get created with version string "11.1.1.2.0" but "BAM" and "SOA Infrastructure" schemas are created with version "11.1.1.3.0". The WLS domain creation utility runs queries for ALL schemas having version "11.1.1.2.0", so the BAM and SOA Infrastructure schemas fail the test.
    Should I manually edit the version strings in schema_version_registry so they all match 11.1.1.2.0 or will this cause problems elsewhere?
    Here are the failing queries that the "Test Component Schema" screen is running for the WLS Domain creation step:
    SQL Test=select 1 from schema_version_registry where owner=(select user from dual) and mr_type='BAM' and version='11.1.1.2.0'
    SQL Test=select 1 from schema_version_registry where owner=(select user from dual) and mr_type='SOAINFRA' and version='11.1.1.2.0'
    These succeed:
    SQL Test=select 1 from schema_version_registry where owner=(select user from dual) and mr_type='ORASDPM' and version='11.1.1.2.0'
    SQL Test=select 1 from schema_version_registry where owner=(select user from dual) and mr_type='MDS' and version='11.1.1.2.0'

    OK, I cleaned out all the old files downloaded fresh and did a complete re-install - now I'm getting an error about a missing file.
    1. Installed WLS
    http://download.oracle.com/otn/beta/bpmbeta1/wls1033_win32.exe
    2. Installed SOA
    http://download.oracle.com/otn/beta/bpmbeta1/soa.zip
    3. Installed BPM/SOA patchset
    http://download.oracle.com/otn/beta/bpmbeta1/soa_patchset.zip
    The failure occurs on step 3 - while installing the SOA patchset it gives an error at 45% completion: "File not found - C:\Oracle\Middleware\home_bpmbeta\oracle_common\bin\commonenv.bat.template".
    I checked and that file does not exist on the filesystem. There's a commenv.template file (a *nix shell script), but no commonenv.bat.template.  There are other .bat.template files in that directory, but not commonenv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Domain creation too much time

    Hi Guys,
    I am trying to create a domain in my windows 7 with following components.
    Oracle database 11.2.0.1
    RCU 11.1.1.5
    weblogic 10.3.6
    IDM suite 11.1.1.5
    Trying to create domain using Oracle\Middleware\Oracle_IDM1\bin\config.bat and domain creation taking too much time and in the log file i am getting below message
    "java.lang.UnsatisfiedLinkError: no GetVolumeInfo in java.library.path" and then it continues with domain creation and getting following message
    NMProcess: INFO: Saving node manager configuration properties to 'C:\Oracle\Middleware\wlserver_10.3\common\nodemanager\nodemanager.properties'
    NMProcess: <Sep 18, 2012 10:32:48 AM> <SEVERE> <Fatal error in node manager server>
    NMProcess: java.lang.NullPointerException
    NMProcess:      at java.util.Hashtable.containsKey(Hashtable.java:307)
    NMProcess:      at weblogic.nodemanager.server.NMServerConfig.initNetworkInfoList(NMServerConfig.java:491)
    NMProcess:      at weblogic.nodemanager.server.NMServerConfig.getNetworkInfoList(NMServerConfig.java:481)
    NMProcess:      at weblogic.nodemanager.server.NMServerConfig.getConfigProperties(NMServerConfig.java:545)
    NMProcess:      at weblogic.nodemanager.server.NMServer.<init>(NMServer.java:154)
    NMProcess:      at weblogic.nodemanager.server.NMServer.main(NMServer.java:375)
    NMProcess:      at weblogic.NodeManager.main(NodeManager.java:31)
    NMProcess:
    NMProcess: Sep 18, 2012 10:32:48 AM weblogic.nodemanager.server.NMServer main
    NMProcess: SEVERE: Fatal error in node manager server
    NMProcess: java.lang.NullPointerException
    NMProcess:      at java.util.Hashtable.containsKey(Hashtable.java:307)
    NMProcess:      at weblogic.nodemanager.server.NMServerConfig.initNetworkInfoList(NMServerConfig.java:491)
    NMProcess:      at weblogic.nodemanager.server.NMServerConfig.getNetworkInfoList(NMServerConfig.java:481)
    NMProcess:      at weblogic.nodemanager.server.NMServerConfig.getConfigProperties(NMServerConfig.java:545)
    NMProcess:      at weblogic.nodemanager.server.NMServer.<init>(NMServer.java:154)
    NMProcess:      at weblogic.nodemanager.server.NMServer.main(NMServer.java:375)
    NMProcess:      at weblogic.NodeManager.main(NodeManager.java:31)
    NMProcess: Stopped draining NMProcess
    NMProcess: Stopped draining NMProcess
    Successfully launched the Node Manager.
    The Node Manager process is running independent of the WLST process.
    Exiting WLST will not stop the Node Manager process. Please refer
    to the Node Manager logs for more information.
    The Node Manager logs will be under C:\Oracle\Middleware\wlserver_10.3\common\nodemanager
    Node Manager starting in the background
    But process won't move forward, it just hangs with Progress 0% only. I checked similar errors in the forums and it is due to path settings but i tried to remove the existing path settings but no luck. If you guys have any idea what went wrong...?
    Thanks,
    Ravindher

    I don't have any CLASSPATH variable and I have only Path variable but nothing was specified to any oracle product except DB(D:\Oracle\product\11.2.0\dbhome_1\bin;)
    Even i set java is 1.6 using JAVA_HOME earlier and then removed but no difference. Not sure what went wrong.
    Thanks,
    Ravindher

  • RMS Installation using Retail Templates from RA

    Hi,
    I have pre-installed RA 13.2.3, and now I need to install RMS 13.2.3 in the same server (64 bit environment). So, I'm thinking of installing RMS in a different database instance in the same Oracle Software. Can I use the same Retail Template from RA to create a database instance for RMS ? The template includes the following files:
    •     Retail_DB_Template_13.2.3_Linux_x86_64_Release.ctl
    •     Retail_DB_Template_13.2.3_Linux_x86_64_Release.dbc
    •     Retail_DB_Template_13.2.3_Linux_x86_64_Release.dfb
    •     Retail_DB_Template_13.2.3_Linux_x86_64_Release_variables.txt
    I tried using the template files from RMS, but the database instance installation fails. It goes on fine with template from RA, but I face problems with required patches installation during RMS Schema Creation phase. Can I or can't I use Retail Database Creation Templates from RA to create RMS database instance ?

    Thanks ErikYkema,
    Yes, RA means Retail Analytics. Installation Guide says "if you have these files already present, then you can continue with those". It would suggest that for database installation of all Retail Family, the same template would work if they have the same file names. I wouldn't have risked using the same template, but using the template from RMS throws me error, while the one with RA runs smoothly. So, I wanted to confirm. Thanks for your reply :)

  • WLST domain configuration readTemplate problem

    Hi,
    I am getting java.lang.NoClassDefFoundError when I try to invoke readTemplate operation while installing WLS90 domain on solaris environment. I sourced $WL_HOME/server/bin/setWLSEnv.sh before I invoked WLST shell. Can anyone shed some light on this ?
    wls:/offline> readTemplate("/export/webapps/sbea/weblogic900/common/templates/domains/wls.jar")
    Traceback (innermost last):
    File "<input>", line 1, in ?
    File "<string>", line 18, in readTemplate
    java.lang.NoClassDefFoundError: com/bea/xml/XmlObject
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.bea.plateng.domain.aspect.ConfigAspectManager.<clinit>(ConfigAspectManager.java:39)
    at com.bea.plateng.domain.TemplateBuilder.<clinit>(TemplateBuilder.java:184)
    at com.bea.plateng.domain.script.ScriptExecutor.readTemplate(ScriptExecutor.java:353)
    at com.bea.plateng.domain.script.jython.WLScriptContext.readTemplate(WLScriptContext.java:246)
    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:585)
    at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java:160)
    at org.python.core.PyMethod.__call__(PyMethod.java:96)
    at org.python.core.PyObject.__call__(PyObject.java:270)
    at org.python.core.PyInstance.invoke(PyInstance.java:261)
    at org.python.pycode._pyx3.readTemplate$1(<string>:18)
    at org.python.pycode._pyx3.call_function(<string>)
    at org.python.core.PyTableCode.call(PyTableCode.java:208)
    at org.python.core.PyTableCode.call(PyTableCode.java:267)
    at org.python.core.PyFunction.__call__(PyFunction.java:172)
    at org.python.pycode._pyx16.f$0(<input>:1)
    at org.python.pycode._pyx16.call_function(<input>)
    at org.python.core.PyTableCode.call(PyTableCode.java:208)
    at org.python.core.PyCode.call(PyCode.java:14)
    at org.python.core.Py.runCode(Py.java:1135)
    at org.python.core.Py.exec(Py.java:1157)
    at org.python.util.PythonInterpreter.exec(PythonInterpreter.java:148)
    at org.python.util.InteractiveInterpreter.runcode(InteractiveInterpreter.java:89)
    at org.python.util.InteractiveInterpreter.runsource(InteractiveInterpreter.java:70)
    at org.python.util.InteractiveInterpreter.runsource(InteractiveInterpreter.java:40)
    at weblogic.management.scripting.WLST.main(WLST.java:130)
    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:585)
    at weblogic.WLST.main(WLST.java:22)
    java.lang.NoClassDefFoundError: java.lang.NoClassDefFoundError: com/bea/xml/XmlObject

    Hi Satya,
    I have another followup issue regarding domain creation in WLS90.
    WLST complains on local registry file and jdbcdrivers.xml under /export/webapps/wls90 filesystem, which is true.
    The way I installed WLS90 is I ran the installer bin file on one host under /export/webapps/wls90 directory and after removing some unnecessary files (line man, samples, examples etc), I tared up the remaining directories and untared on another host. I modified all scripts that refered to /export/webapps/wls90 to new location. But not sure why it is still refrering to OLD directory structure. The new location is /export/webapps/sbea.
    Does installer caches the installation directory other than scripts under common/bin and server/bin ? Can you please let me know if I am missing anything. I verified all scripts under common/bin, server/bin which points to new location.
    2005-07-07 11:37:50,068 DEBUG [main] com.bea.plateng.gpr.model.BEAHomeBuilder - Transform BEAHOME: /export/webapps/wls90
    2005-07-07 11:37:50,073 DEBUG [main] com.bea.plateng.gpr.model.BEAHomeBuilder - Could not find the local registry file
    2005-07-07 11:37:53,211 DEBUG [main] com.bea.plateng.gpr.model.BEAHomeBuilder - Transform BEAHOME: /export/webapps/wls90
    2005-07-07 11:37:53,216 DEBUG [main] com.bea.plateng.gpr.model.BEAHomeBuilder - Could not find the local registry file
    2005-07-07 11:37:53,302 DEBUG [main] com.bea.plateng.domain.jdbc.JDBCHelper - Looking file system for: /export/webapps/w
    ls90/weblogic90/server/lib/jdbcdrivers.xml
    2005-07-07 11:37:53,307 DEBUG [main] com.bea.plateng.domain.jdbc.JDBCHelper - jdbcdrivers.xml not found at "/export/weba
    pps/wls90/weblogic90/server/lib/jdbcdrivers.xml", giving up...
    2005-07-07 11:37:53,828 ERROR [main] com.bea.plateng.domain.jdbc.JDBCHelper - weblogic.xml.stream.XMLStreamException: Un
    able to instantiate the stream, the error was: Unable to resolve input source.
    weblogic.xml.stream.XMLStreamException: Unable to instantiate the stream, the error was: Unable to resolve input source.
    at weblogic.xml.babel.stream.XMLInputStreamBase.open(XMLInputStreamBase.java:91)
    at weblogic.xml.babel.stream.XMLInputStreamBase.open(XMLInputStreamBase.java:49)
    at weblogic.xml.babel.stream.XMLInputStreamFactoryImpl.newInputStream(XMLInputStreamFactoryImpl.java:67)
    at weblogic.xml.babel.stream.XMLInputStreamFactoryImpl.newInputStream(XMLInputStreamFactoryImpl.java:49)
    at weblogic.xml.babel.stream.XMLInputStreamFactoryImpl.newInputStream(XMLInputStreamFactoryImpl.java:79)
    at weblogic.jdbc.utils.JDBCConnectionMetaDataParser.loadSchema(JDBCConnectionMetaDataParser.java:207)
    at weblogic.jdbc.utils.JDBCConnectionMetaDataParser.<init>(JDBCConnectionMetaDataParser.java:124)
    at com.bea.plateng.domain.jdbc.JDBCHelper.getDriverInfoFactory(JDBCHelper.java:495)
    at com.bea.plateng.domain.jdbc.JDBCAspectHelper.initDriverMap(JDBCAspectHelper.java:700)
    at com.bea.plateng.domain.jdbc.JDBCAspectHelper.getJDBCDriverInfoTable(JDBCAspectHelper.java:113)
    at com.bea.plateng.domain.jdbc.JDBCAspectHelper.getAllVendors(JDBCAspectHelper.java:396)
    at com.bea.plateng.domain.GeneratorHelper.configureDBVariables(GeneratorHelper.java:862)

  • Portal Domain creation - config.xml

    Folks,
    I created a portal domain using weblogic 8.1 GUI configuration wizard.It wlp.jar
    file as a template to create this one.
    After creating this, I opened config.xml file of new portal domain and it have
    JDBC connection pool setup for point database.I do not want to have this in my
    config.xml file and do not want to remove this manually because of our automation.
    How can I resolve this?
    Thanks
    - Spider

    if you don't want the JDBC Connection pool ion your domain ,
    please use the config Wizard to configure JDBC connection pool with database
    other that pointbase at the time of creation.
    otherwise using the wizard, you change the properties of exisiting domain.
    Karthi.
    "SpiderMan" <[email protected]> wrote in message
    news:3f74b601$[email protected]..
    >
    Folks,
    I created a portal domain using weblogic 8.1 GUI configuration wizard.Itwlp.jar
    file as a template to create this one.
    After creating this, I opened config.xml file of new portal domain and ithave
    JDBC connection pool setup for point database.I do not want to have thisin my
    config.xml file and do not want to remove this manually because of ourautomation.
    >
    How can I resolve this?
    Thanks
    - Spider

  • Custom List Form creation using Powershell - SharePoint 2013

    Hi,
    I have a custom List called 'IssuesList' with 4 fields - "IssueTitle","IssueID","IssueDesc","Status"
    While displaying display form I should show 3 fields expect Issue ID i.e. IssueID should be hidden.
    and on edit form only Status field should be editable. So using SharePoint designer I created respective Edit form and display forms and changed XSLT to control the display mode on the fields.
    I have everything scripted in powershell till now - creation of custom list, publishing pages, webparts etc. however I am looking for how to provision or associate these 2 list forms with IssuesList after I create the list in new site.
    I have restrictions on using wsp and site/list template due to business needs. So I need to know if there is any way I can upload these 2 files after I create custom list in powershell and associate them as defaultdisplay and defauteditforms?
    Please advise.

    Hi,
    Per my understanding, you might need to apply these custom forms to a list after list creation using PowerShell.
    With PowerShell with SharePoint Object Model, we can hide fields on list forms.
    The similar thread below with code snippet will provide more information about this:
    https://social.technet.microsoft.com/Forums/en-US/ee6fc2eb-197f-4144-94fa-8a4e438675d9/hide-a-field-from-edit-form-list?forum=sharepointgeneralprevious
    If there may be other requirements except for hiding fields, as you have limitation on using custom solution package(which should be preferable in such scenario),
    a workaround I can provide is that, after list creation, you can add Content Editor Web Part contains the CSS style or JavaScript to the form pages of a specific list, it will help you hide/disable the specific elements, this can be achieved programmatically.
    The code below can add a Content Editor Web Part to the DisplayForm of a list(though in C#):
    public static void AddCEWP()
    SPLimitedWebPartManager manager = null;
    SPFile file = null;
    using (SPSite site = new SPSite("http://sp"))
    using (SPWeb web = site.RootWeb)
    try
    web.AllowUnsafeUpdates = true;
    file = web.GetFile(web.Url + "/Lists/List018/DispForm.aspx");
    manager = file.GetLimitedWebPartManager(PersonalizationScope.Shared);
    ContentEditorWebPart webPart = new ContentEditorWebPart();
    XmlDocument xmlDoc = new XmlDocument();
    XmlElement xmlElement = xmlDoc.CreateElement("HtmlContent");
    //xmlElement.InnerText = "<strong>Hello World!</strong>";
    //write the custom CSS style or JavaScript here
    string content = "<style>your custom style here...</style>";
    xmlElement.InnerText = content;
    webPart.Content = xmlElement;
    manager.AddWebPart(webPart, "Top", 0);
    manager.SaveChanges(webPart);
    web.Update();
    catch (Exception ex)
    //Utility.SPTraceLogError(ex);
    finally
    if (manager != null)
    manager.Dispose();
    web.AllowUnsafeUpdates = false;
    About how to hide fields on Standard List Forms using jQuery:
    http://social.technet.microsoft.com/wiki/contents/articles/21730.sharepoint-2010-conditionally-hide-fields-on-standard-list-forms-using-jquery.aspx
    http://stackoverflow.com/questions/10010405/how-to-hide-a-field-in-sharepoint-display-form-based-on-the-field-name-jquery
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Patrick Liang
    TechNet Community Support

  • Creation of label templates for waste and dangerous goods

    hi,
    How to create waste and dagerous labels in EH&S. How to create label template. What are the parameters to be maintained in the specification management for a particular substance.
    sathish. R

    Hi,
    Label creation and shipping for DG and waste material is same procedure. In specification master, you need to maintain substance and assign to materials. Using report templates report will be created and released for shipping. reports can be shipped by automatic/manual/sequantial method.
    This is a big process and it is not possible to explain in one mail.
    -ram

  • Issue in domain creation local deployment Error :  odi-core.jar

    Hi,
    I am trying to create a domain on my VM for local deployment of fincomm and Ess. But during domain creation it is failing with following errors.
    Error in writing to file '/scratch/software/mw_local/FMWTOOLS_11.1.1.7.0_GENERIC_130327.1838_PATCHES4FA_11.1.1.7.0_PLATFORMS/vimjain/mw_home_standalone/odi/oracledi.sdk/lib/odi-core.jar'. [invalid block type]
    Cancelling Install Session..
    Internal Error: File Copy failed. Aborting Install
    I tried the various different options for creation but all failed.
    1> I tried by resetting to old patchset.
    2> 3 days back i was able to successfully create the domain, but today i am seeing the error as discussed.
    3>Tried to delete the patchset and recreate a new one, but still no luck
    If anyone else is also seeing the same issue and able to resolve.
    Thanks
    Vimal

    You may want to use Oracle Internal forums and blogs for solution.
    Since these are public forums, you should not post content contains sensitive information here. Please remove the dir structure (which also includes your uid).

  • Domain creation error during installation of forms 11g

    Dear all,
    I have the following error, during installation of forms 11g, the installation completed successfully but in configuration section it gave error on the 1st step domain creation.
    weblogic server version 10.3.6
    forms and reports version 11.1.2.1.0
    java version "1.4.2_06"
    here is the error portion from installation log
    ----- **************** log *****************************-------------------------------------------------------------------------------------------------
    Entering windows
    OneoffTool  Script Location: C:\Users\Nadeem\AppData\Local\Temp\tmpOneoffTool1383064488002.bat
    oneoff command is: f:\Oracle\Middleware\Oracle_FRHome2\OPatch\opatch apply f:\Oracle\Middleware\Oracle_FRHome2\oneoffpatches\p12429525_111070_Win32.zip -oh f:\Oracle\Middleware\Oracle_FRHome2 -silent
    [ProcessManager] Invoking:C:\Users\Nadeem\AppData\Local\Temp\tmpOneoffTool1383064488002.bat
        stdout=[
    C:\Users\Nadeem\AppData\Local\Temp>f:\Oracle\Middleware\Oracle_FRHome2\OPatch\opatch apply f:\Oracle\Middleware\Oracle_FRHome2\oneoffpatches\p12429525_111070_Win32.zip -oh f:\Oracle\Middleware\Oracle_FRHome2 -silent
    OPatch failed with error code = 1
        stderr=[java.lang.UnsupportedClassVersionError: oracle/opatch/OPatch (Unsupported major.minor version 49.0)
      at java.lang.ClassLoader.defineClass0(Native Method)
      at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
      at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
      at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
      at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
      at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
      at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
      at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
      at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
      at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    Exception in thread "main" ]   
    sbStderr.length():891
    [Applying patch f:\Oracle\Middleware\Oracle_FRHome2\oneoffpatches\p12429525_111070_Win32.zip and the  java.lang.UnsupportedClassVersionError: oracle/opatch/OPatch (Unsupported major.minor version 49.0)
      at java.lang.ClassLoader.defineClass0(Native Method)
      at java.lang.ClassLoader.defineClass(ClassLoader.java:539)
      at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
      at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
      at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
      at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
      at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
      at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
      at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
      at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    Exception in thread "main"  ]
    oneoff command is: f:\Oracle\Middleware\Oracle_FRHome2\OPatch\opatch apply f:\Oracle\Middleware\Oracle_FRHome2\oneoffpatches\p6599470_111070_Generic.zip -oh f:\Oracle\Middleware\Oracle_FRHome2 -silent
    [ProcessManager] Invoking:C:\Users\Nadeem\AppData\Local\Temp\tmpOneoffTool1383064488002.bat
        stdout=[
    C:\Users\Nadeem\AppData\Local\Temp>f:\Oracle\Middleware\Oracle_FRHome2\OPatch\opatch apply f:\Oracle\Middleware\Oracle_FRHome2\oneoffpatches\p6599470_111070_Generic.zip -oh f:\Oracle\Middleware\Oracle_FRHome2 -silent
    ----- **************** log *****************************-------------------------------------------------------------------------------------------------

    user2040934 wrote:
    Dear all,
    I have the following error, during installation of forms 11g, the installation completed successfully but in configuration section it gave error on the 1st step domain creation.
    weblogic server version 10.3.6
    forms and reports version 11.1.2.1.0
    java version "1.4.2_06"
    You have the wrong Java version installed.  Do you already have another Forms version installed (like Forms 10g)?  I ask this because Java 1.4.2_06 installs with the Oracle Developer Suite 10g. For Fusion Middleware 11g (Forms 11g) you need to have Java 1.6 installed.  If you already have Java 1.6 installed, then you will need to modify your System PATH so that it lists Java 1.6 before Java 1.4.  The error you are getting, "stderr=[java.lang.UnsupportedClassVersionError" is because Java 1.4 doesn't support the method the installer is using.  Run the following command from a Command/Dos window:  "Java -version".  If it does not show Java 1.6.0_??, then your PATH is still not setup correctly or you don't have Java 1.6.0 installed.
    Craig...

  • Weblogic domain creation fails with "The domain location must have write permission."

    Hi
    I am trying to install and setup weblogic in Linux RHEL 5.4
    so I can test webservices . This is what i have done
    WLS Zip Distribution for Oracle WebLogic Server 12.1.1.0 - downloaded & installed.
    Followed the steps in README.
    - extract contents of tar, setup home, run installation-configuration script, setup wls environment
    Step 5:
    Create a new WLS domain and start WLS.  It is recommended that you create domains outside the MW_HOME.
         $ mkdir /home/myhome/mydomain
        $ cd /home/myhome/mydomain
        $ $JAVA_HOME/bin/java $JAVA_OPTIONS -Xmx1024m -XX:MaxPermSize=128m weblogic.Server
    -> returns the below error
    $JAVA_HOME/bin/java $JAVA_OPTIONS -Xmx1024m -XX:MaxPermSize=128m weblogic.Server  -Dweblogic.security.allowCryptoJDefaultJCEVerification=true
    <Jun 25, 2013 3:39:57 PM EDT> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Jun 25, 2013 3:39:57 PM EDT> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Jun 25, 2013 3:39:58 PM EDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 23.21-b01 from Oracle Corporation.>
    /apps/Informatica/tdwdomain/config not found
    No config.xml was found.
    Would you like the server to create a default configuration and boot? (y/n): y
    <Jun 25, 2013 3:40:03 PM EDT> <Info> <Management> <BEA-140013> </apps/Informatica/tdwdomain/config not found>
    <Jun 25, 2013 3:40:03 PM EDT> <Info> <Security> <BEA-090065> <Getting boot identity from user.>
    Enter username to boot WebLogic server:admin  Enter password to boot WebLogic server:admin123
    For confirmation, please re-enter password required to boot WebLogic server:admin123
    <Jun 25, 2013 3:40:13 PM EDT> <Info> <Management> <BEA-141254> <Generating new domain directory in /apps/Informatica/tdwdomain.>
    <Jun 25, 2013 3:40:17 PM EDT> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
    There are 1 nested errors:
    weblogic.management.ManagementException: Failure during domain creation
            at weblogic.management.internal.DomainGenerator.generateDefaultDomain(DomainGenerator.java:119)
            at weblogic.management.internal.DomainDirectoryService.start(DomainDirectoryService.java:82)
            at weblogic.t3.srvr.ServerServicesManager.startService(ServerServicesManager.java:461)
            at weblogic.t3.srvr.ServerServicesManager.startInStandbyState(ServerServicesManager.java:166)
            at weblogic.t3.srvr.T3Srvr.initializeStandby(T3Srvr.java:883)
            at weblogic.t3.srvr.T3Srvr.startup(T3Srvr.java:570)
            at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:469)
            at weblogic.Server.main(Server.java:74)
    Caused by: com.oracle.cie.domain.script.ScriptException: The domain location must have write permission.
            at com.oracle.cie.domain.script.ScriptExecutor.writeDomain(ScriptExecutor.java:757)
            at com.oracle.cie.domain.script.ScriptParserClassic$StateMachine.processWrite(ScriptParserClassic.java:573)
            at com.oracle.cie.domain.script.ScriptParserClassic$StateMachine.execute(ScriptParserClassic.java:429)
            at com.oracle.cie.domain.script.ScriptParserClassic.parseAndRun(ScriptParserClassic.java:148)
            at com.oracle.cie.domain.script.ScriptParserClassic.doExecute(ScriptParserClassic.java:110)
            at com.oracle.cie.domain.script.ScriptParser.execute(ScriptParser.java:72)
            at com.oracle.cie.domain.DomainInfoHelper.executeSilentScript(DomainInfoHelper.java:854)
            at com.oracle.cie.domain.DomainInfoHelper.createDefaultDomain(DomainInfoHelper.java:1775)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
            at java.lang.reflect.Method.invoke(Method.java:601)
            at weblogic.management.internal.CIEDomainGenerator.generateDefaultDomain(CIEDomainGenerator.java:62)
            at weblogic.management.internal.DomainGenerator.generateDefaultDomain(DomainGenerator.java:114)
         <Jun 25, 2013 3:40:17 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED.>
    <Jun 25, 2013 3:40:17 PM EDT> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down.>
    <Jun 25, 2013 3:40:17 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN.>
    - Any help appreciated.
    Thanks

    hi,
    the binaries available for download are all packaged with 32bit JVM. Please have a look at the link below
    WebLogic Server 12c (12.1.1), WebLogic Server 11g (10.3.6) and Previous Releases
    It also has binaries for linux available. I am quoting from the site verbatim for your reference:
    The following provides links to WebLogic Server 12.1.1 installers with 32-bit JVMs for Windows and
    Linux, the generic installer that can be used on any supported platform, and the zip distribution. The
    generic installer and the zip distribution do not include a JVM/JDK. For instructions on using the
    generic installer, see this document.
    In case you want to use your own latest version of JDK which can be a 32/64 bit version, you need to use the generic installer.
    The error which you are getting is due to permissions. Make sure you have a dedicated user for installing weblogic and the necessary permissions are granted to the user(linux) to the installation directories. May be the script is trying to install java at a particular location on your machine and failing. Hence the above error is displayed.
    Please have a look at the docs, you will find steps for weblogic installation on linux.
    Thanks,
    Souvik.

  • I can't install the Application Server 8: ERROR - default domain creation

    I am using Windows XP SP2 Spanish Version and I am trying to install Application Server 8. In fact, I installed with no problems first time. But then I had problems to start up the App server. I uninstalled the APP server and installed again and I got the following log with an error:
    INFO - number of merged jar entries: 2675
    INFO - number of merged jar entries: 1426
    INFO - number of merged jar entries: 2459
    INFO - number of merged jar entries: 1169
    INFO - Start core server configuration.
    ERROR - default domain creation returned following exception: abnormal subprocess termination: Detailed Message:La sintaxis del comando no es correcta.
    (in english is something like "syntax error")
    La sintaxis del comando no es correcta.
    INFO - End core server configuration.

    Can you please run the following command and see if that works (assuming you installed application server in default C:\Sun\AppServer directory) --
    C:\Sun\AppServer\bin\asadmin create-domain adminuser admin adminpassword adminadmin --adminport 4848 domain1
    If it does not work, can you please post the error message and its english translation?
    Installer tries to execute the command that I listed above (obviously with the values you specified on the installer screens) and the error message seems to be suggesting that there is a syntax error in C:\Sun\AppServer\bin\asadmin.bat.

Maybe you are looking for