Include in cache configuration?

I would like to define a "corporate" cache configuration file that later can be included and extended by project cache configuration files. I have seen some hints that this is supported by the Common package in the incubator but I have not seen any examples or documentation about how to do it. I know that I must specify the ExtensibleEnvironment as initialisation handler but what does the XML required look like? Can (should) both the included and the including cache configuration files be complete cache configuration files (verifyable against the XML schema) or should the included file just be a fragment that is legal to include at the point where it is inserted?
Any links or examples are very much appreciated!
Note I am not an XML guru so try to keep the explanation simple and try to provide complete examples not just "snippets" - to get all the new schema XML stuff to just validate without the added complexity of commons name spaces is a challenge to me :-)
/Magnus
Edited by: MagnusE on Jul 13, 2011 6:04 PM

Hi user738616,
I have the same MagnusE problem,
but in my case I have both the coherence-common jar inside my classpath and both the introduce namespace correctly defined inside my configuration file:
Here is my cache config file, named "poc-coherence-cache-config.xml":
<cache-config
     xmlns:introduce="class://com.oracle.coherence.environment.extensible.namespaces.IntroduceNamespaceContentHandler"
     >
     <introduce:config file="coherence-messagingpattern-cache-config.xml"/>
     <caching-scheme-mapping>
     </caching-scheme-mapping>
     <caching-schemes>
     </caching-schemes>
</cache-config>Which I load using defining the system property to load this override file:"poc-tangosol-coherence-override.xml", which is as follows:
<?xml version='1.0'?>
<coherence>
     <configurable-cache-factory-config>
          <class-name>com.oracle.coherence.environment.extensible.ExtensibleEnvironment
          </class-name>
          <init-params>
               <init-param>
                    <param-type>java.lang.String</param-type>
                    <param-value system-property="tangosol.coherence.cacheconfig">
                    poc-coherence-cache-config.xml</param-value>
               </init-param>
          </init-params>
     </configurable-cache-factory-config>
     <cluster-config>
          <member-identity>
               <cluster-name system-property="tangosol.coherence.cluster">
                    Coherence_PoC_Cluster
               </cluster-name>
          </member-identity>
          <multicast-listener>
               <time-to-live system-property="tangosol.coherence.ttl">1</time-to-live>
               <join-timeout-milliseconds>5000</join-timeout-milliseconds>
               <address system-property="tangosol.coherence.clusteraddress">239.1.5.0</address> <!-- 224.13.16.10 -->
               <port system-property="tangosol.coherence.clusterport">3030</port>
          </multicast-listener>
     </cluster-config>
     <logging-config>
          <destination system-property="tangosol.coherence.log">log4j</destination>
          <severity-level system-property="tangosol.coherence.log.level">10</severity-level>
          <character-limit system-property="tangosol.coherence.log.limit">0</character-limit>
     </logging-config>
</coherence>But I still get the same exception:
2011-08-03 11:48:54,416 INFO [Logger@8079107 3.7.0.0] Coherence [Log4j.CDB:3] 2011-08-03 11:48:54.320/2.246 Oracle Coherence 3.7.0.0 <Info> (thread=main, member=n/a): Loaded operational configuration from "jar:file:/C:/Users/.../.m2/repository/com/oracle/oracle-coherence/3.7.0/oracle-coherence-3.7.0.jar!/tangosol-coherence.xml"
2011-08-03 11:48:54,417 INFO [Logger@8079107 3.7.0.0] Coherence [Log4j.CDB:3] 2011-08-03 11:48:54.322/2.248 Oracle Coherence 3.7.0.0 <Info> (thread=main, member=n/a): Loaded operational overrides from "file:/C:/.../coherence-config/target/classes/poc-tangosol-coherence-override.xml"
2011-08-03 11:48:54,498 INFO [Logger@8079107 3.7.0.0] Coherence [Log4j.CDB:3] 2011-08-03 11:48:54.494/2.420 Oracle Coherence GE 3.7.0.0 <Info> (thread=main, member=n/a): Loaded cache configuration from "file:/C:/.../coherence-config/target/classes/poc-coherence-cache-config.xml"
Exception in thread "main" (Wrapped: Failed to load the factory) (Wrapped: Missing or inaccessible constructor "com.oracle.coherence.environment.extensible.ExtensibleEnvironment(String)"
<configurable-cache-factory-config>
  <class-name>com.oracle.coherence.environment.extensible.ExtensibleEnvironment</class-name>
  <init-params>
    <init-param>
      <param-type>java.lang.String</param-type>
      <param-value>poc-coherence-cache-config.xml</param-value>
    </init-param>
  </init-params>
</configurable-cache-factory-config>) java.lang.reflect.InvocationTargetException
     at com.tangosol.util.Base.ensureRuntimeException(Base.java:288)
     at com.tangosol.net.ScopedCacheFactoryBuilder.getDefaultFactory(ScopedCacheFactoryBuilder.java:308)
     at com.tangosol.net.DefaultCacheFactoryBuilder.getSingletonFactory(DefaultCacheFactoryBuilder.java:48)
     at com.tangosol.net.DefaultCacheFactoryBuilder.getFactory(DefaultCacheFactoryBuilder.java:121)
     at com.tangosol.net.ScopedCacheFactoryBuilder.getConfigurableCacheFactory(ScopedCacheFactoryBuilder.java:109)
     at com.tangosol.net.CacheFactory.getConfigurableCacheFactory(CacheFactory.java:126)
     at com.tangosol.net.CacheFactory.getCache(CacheFactory.java:204)
     at com.tangosol.net.CacheFactory.getCache(CacheFactory.java:181)
     at poc.datagrid.coherence.impl.PartitionCoherence.<init>(PartitionCoherence.java:26)
     at poc.datagrid.coherence.impl.GridCoherence.get(GridCoherence.java:14)
     at poc.eventcollector.jmx.TournamentBean.<init>(TournamentBean.java:19)
     at poc.eventcollector.main.EventCollectorMain.main(EventCollectorMain.java:52)
Caused by: (Wrapped: Missing or inaccessible constructor "com.oracle.coherence.environment.extensible.ExtensibleEnvironment(String)"
<configurable-cache-factory-config>
  <class-name>com.oracle.coherence.environment.extensible.ExtensibleEnvironment</class-name>
  <init-params>
    <init-param>
      <param-type>java.lang.String</param-type>
      <param-value>poc-coherence-cache-config.xml</param-value>
    </init-param>
  </init-params>
</configurable-cache-factory-config>) java.lang.reflect.InvocationTargetException
     at com.tangosol.util.Base.ensureRuntimeException(Base.java:288)
     at com.tangosol.run.xml.XmlHelper.createInstance(XmlHelper.java:2608)
     at com.tangosol.run.xml.XmlHelper.createInstance(XmlHelper.java:2492)
     at com.tangosol.net.ScopedCacheFactoryBuilder.getDefaultFactory(ScopedCacheFactoryBuilder.java:270)
     ... 10 more
Caused by: java.lang.reflect.InvocationTargetException
     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.tangosol.util.ClassHelper.newInstance(ClassHelper.java:694)
     at com.tangosol.run.xml.XmlHelper.createInstance(XmlHelper.java:2567)
     ... 12 more
Caused by: java.lang.RuntimeException: Can't instantiate the NamespaceContentHandler [com.oracle.coherence.environment.extensible.namespaces.IntroduceNamespaceContentHandler] as the class is not found
     at com.oracle.coherence.environment.extensible.DefaultConfigurationContext$Scope.establishNamespaceContentHandlerFor(DefaultConfigurationContext.java:1145)
     at com.oracle.coherence.environment.extensible.DefaultConfigurationContext.ensureNamespaceContentHandler(DefaultConfigurationContext.java:119)
     at com.oracle.coherence.environment.extensible.DefaultConfigurationContext.processElement(DefaultConfigurationContext.java:282)
     at com.oracle.coherence.environment.extensible.DefaultConfigurationContext.processDocument(DefaultConfigurationContext.java:230)
     at com.oracle.coherence.environment.extensible.ExtensibleEnvironment.setConfig(ExtensibleEnvironment.java:469)
     at com.tangosol.net.DefaultConfigurableCacheFactory.<init>(DefaultConfigurableCacheFactory.java:190)
     at com.tangosol.net.DefaultConfigurableCacheFactory.<init>(DefaultConfigurableCacheFactory.java:176)
     at com.tangosol.net.DefaultConfigurableCacheFactory.<init>(DefaultConfigurableCacheFactory.java:152)
     at com.oracle.coherence.environment.extensible.ExtensibleEnvironment.<init>(ExtensibleEnvironment.java:155)
     ... 18 more
Caused by: java.lang.ClassNotFoundException: com.oracle.coherence.environment.extensible.namespaces.IntroduceNamespaceContentHandler
     at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
     at java.security.AccessController.doPrivileged(Native Method)
     at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
     at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
     at java.lang.Class.forName0(Native Method)
     at java.lang.Class.forName(Class.java:169)
     at com.tangosol.util.ExternalizableHelper.loadClass(ExternalizableHelper.java:3056)
     at com.oracle.coherence.environment.extensible.DefaultConfigurationContext$Scope.establishNamespaceContentHandlerFor(DefaultConfigurationContext.java:1109)
     ... 26 moreDo you have any ideas ?

Similar Messages

  • Error installing EM10gR2 Configuration assistant "Web Cache Configuration A

    I am getting an error when the web cache configuration assistant is running. Here is the output of the message:
    Output generated from configuration assistant "Web Cache Configuration Assistant" (attempt 2):
    Command = /oracle/oms10g/jdk/bin/java -DORACLE_HOME=/oracle/oms10g -Djava.net.preferIPv4Stack=true -classpath /oracle/oms10g/sysman/webapps/emd/WEB-INF/lib/webcachecfg.jar:/oracle/oms10g/sysman/webapps/emd/WEB-INF/lib/emd.jar:/oracle/oms10g/lib/emSDK.jar:/oracle/oms10g/dcm/lib/dcm.jar:/oracle/oms10g/jlib/repository.jar:/oracle/oms10g/lib/xmlparserv2.jar:/oracle/oms10g/jlib/emConfigInstall.jar:/oracle/oms10g/jdbc/lib/classes12.zip:/oracle/oms10g/jdbc/lib/nls_charset12.jar:/oracle/oms10g/jlib/jndi.jar:/oracle/oms10g/jlib/rt.jar:/oracle/oms10g/jdk/lib/i18n.jar:/oracle/oms10g/jlib/ldapjclnt10.jar:/oracle/oms10g/jlib/ojmisc.jar:/oracle/oms10g/j2ee/home/jazn.jar:/oracle/oms10g/j2ee/home/jaas.jar oracle.ias.webcache.config.WebcacheConfig -oh /oracle/oms10g
    Failed in smi manipulation().
    A problem has occurred reading the initial configuration and storing it into repository
    Resolution:
    Please refer to the base exception for resolution, or call Oracle support.
    Base Exception:
    /oracle/oms10g/Apache/Apache/bin/httpd: error while loading shared libraries: libdb.so.2: cannot open shared object file: No such file or directory
    Resolution:
    Please make sure the values entered in OHS configuration files are correct.
    oracle.ias.sysmgmt.exception.InvalidConfigurationException: Base Exception:
    /oracle/oms10g/Apache/Apache/bin/httpd: error while loading shared libraries: libdb.so.2: cannot open shared object file: No such file or directory
    Resolution:
    Please make sure the values entered in OHS configuration files are correct.
         at oracle.ias.sysmgmt.repository.plugin.advanced.apache.StateTranslator.checkConfigFileValidity(Unknown Source)
         at oracle.ias.sysmgmt.repository.plugin.advanced.apache.StateTranslator.validateConfigDuringEvaluate(Unknown Source)
         at oracle.ias.sysmgmt.repository.plugin.advanced.apache.PlugInImpl.localConfigValidation(Unknown Source)
         at oracle.ias.sysmgmt.repository.DcmPlugin.localConfigValidation(Unknown Source)
         at oracle.ias.sysmgmt.repository.RepositoryImpl.performLocalValidation(Unknown Source)
         at oracle.ias.sysmgmt.repository.SyncUpHandler._updatePluginConfigData(Unknown Source)
         at oracle.ias.sysmgmt.repository.SyncUpHandler.syncUpFromLocalFiles(Unknown Source)
         at oracle.ias.sysmgmt.repository.RepositoryImpl.syncUpFromLocalFiles(Unknown Source)
         at oracle.ias.sysmgmt.utility.editpropagator.PropagateLocalEdit.repositoryInit(Unknown Source)
         at oracle.ias.sysmgmt.persistence.utility.PMUtility.initConfiguration(Unknown Source)
         at oracle.ias.sysmgmt.task.TaskMaster.initConfiguration(Unknown Source)
         at oracle.ias.sysmgmt.task.TaskMaster.sysInit(Unknown Source)
         at oracle.ias.sysmgmt.task.TaskMaster.sysInit(Unknown Source)
         at oracle.ias.sysmgmt.task.InstanceManager.sysInit(Unknown Source)
         at oracle.ias.sysmgmt.task.InstanceManager.init(Unknown Source)
         at oracle.ias.sysmgmt.EntryPoint.init(Unknown Source)
         at oracle.ias.webcache.config.WebcacheConfig.smiSetup(WebcacheConfig.java:483)
         at oracle.ias.webcache.config.WebcacheConfig.smiEnableWebcache(WebcacheConfig.java:454)
         at oracle.ias.webcache.config.WebcacheConfig.enableConfiguration(WebcacheConfig.java:299)
         at oracle.ias.webcache.config.WebcacheConfig.main(WebcacheConfig.java:87)
    Configuration assistant "Web Cache Configuration Assistant" failed
    The "/oracle/agent10g/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.-----------------------------------------------------------------------------
    My etc/hosts file looks like:
    cat /etc/hosts
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    127.0.0.1 localhost.localdomain localhost
    172.24.254.25 k25
    Ugh!

    sorry, a little bit late but i had the same problem.
    /oracle/oms10g/Apache/Apache/bin/httpd: error while loading shared libraries: libdb.so.2: cannot open shared object file: No such file or directory
    simple make the link "ln -s libdb.so.3 libdb.so.2" in the /usr/lib directory.
    regard´s
    roland

  • Node display off , Central data cache configured but not active

    Hi
    We get an error "Node display off , Central data cache configured but not active" in Central system while trying to display the monitored the abap instance of system.We just completed the CCMS configuration.
    we are getting this error in RZ20 (central system)
    Agent regristration is complete in monitored system and it is running fine.connection from central to monitored (abap instance) system is also ok.Please help asap.
    Operating System --AIX
    Sap version--ECC 6
    Database-db2
    Regards
    Shashi

    Hi,
    central data cache to improve the performance of the Alert Monitor when creating the alert monitoring trees.
    Check [This link|http://help.sap.com/saphelp_sm32/helpdata/en/de/13622d770b5e4f8398fc536b690e93/content.htm]
    And [This link|http://help.sap.com/saphelp_sm32/helpdata/en/10/75ea3b6d73e807e10000000a11402f/content.htm]
    Hope this solves your problem.
    Feel free to revert back.
    --Ragu

  • Node display off ,  Central data cache configured but not active while tryi

    Hi
    We get an error "Node display off ,  Central data cache configured but not active" in Central system while trying to display the monitored the abap instance of system.We just completed the CCMS configuration.
    Agent regristration is complete in monitored system and it is running fine.connection from central to monitored (abap instance) system is also ok.Please help asap.
    Operating System --AIX
    Sap version--ECC 6
    Database-db2
    Regards
    Chamba Shashi
    Edited by: SHASHI SAMAL on Apr 28, 2009 6:25 AM

    Hi,
    central data cache to improve the performance of the Alert Monitor when creating the alert monitoring trees.
    Check [This link|http://help.sap.com/saphelp_sm32/helpdata/en/de/13622d770b5e4f8398fc536b690e93/content.htm]
    And [This link|http://help.sap.com/saphelp_sm32/helpdata/en/10/75ea3b6d73e807e10000000a11402f/content.htm]
    Hope this solves your problem.
    Feel free to revert back.
    --Ragu

  • "Web Cache Configuration Assistant" failed during installation

    Hi,
    I'm trying to install Grid Control on Fedora Core 4 but it failes during the installation at the "Web Cache Configuration Assistant".
    I already createt a loopback device on localhost.
    Thanks for any surggestions!!
    End output from spawned process.
    Configuration assistant "Web Cache Configuration Assistant" failed
    2
    ORACLE_HOME is /opt/oracle/EM/10.1.0.3
    Failed in smi manipulation().
    TaskMaster initialization failed.
    Root Cause: Subscription request timed out after 120000 millseconds. Possible causes: OPMN may not be running, you may have an OPMN running in an alternate ORACLE_HOME using duplicate port values, or OPMN may be misconfigured.
    oracle.ons.SubscriptionException: Subscription request timed out after 120000 millseconds. Possible causes: OPMN may not be running, you may have an OPMN running in an alternate ORACLE_HOME using duplicate port values, or OPMN may be misconfigured.
    at oracle at oracle.ons.ONS.addSubscriber(ONS.java:333)
    at oracle.ons.Subscriber.realStartup(Subscriber.java:92)
    at oracle.ons.Subscriber.<init>(Subscriber.java:80)
    at oracle.ons.ONS.createNewSubscriber(ONS.java:687)
    at oracle.ias.sysmgmt.task.TaskMaster.sysInit(Unknown Source)
    at oracle.ias.sysmgmt.task.TaskMaster.sysInit(Unknown Source)
    at oracle.ias.sysmgmt.task.InstanceManager.sysInit(Unknown Source)
    at oracle.ias.sysmgmt.task.InstanceManager.init(Unknown Source)
    at oracle.ias.sysmgmt.EntryPoint.init(Unknown Source)
    at oracle.ias.webcache.config.WebcacheConfig.smiSetup(WebcacheConfig.java:243)
    at oracle.ias.webcache.config.WebcacheConfig.smiEnableWebcache(WebcacheConfig.java:215)
    at oracle.ias.webcache.config.WebcacheConfig.enableConfiguration(WebcacheConfig.java:191)
    at oracle.ias.webcache.config.WebcacheConfig.main(WebcacheConfig.java:66)
    .ons.SubscriptionNotification.waitForReply(SubscriptionNotification.java:82)
    cat /etc/hosts:
    127.0.0.1 loopback localhost
    127.0.0.1 fedora01 fedora01.barmenia.de localhost.localdomain localhost
    172.xxx.xxx.xxx fedora01.barmenia.de fedora01 oracleinstall

    hi,
    i tried to reinstall but it is still the same problem.
    before i started the installer there was no oracle process left
    fedora01.oracle[emrep]>ps -x
    Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.5/FAQ
    PID TTY STAT TIME COMMAND
    2976 pts/2 S 0:00 -ksh
    17573 pts/2 R+ 0:00 ps -x
    fedora01.oracle[emrep]>.1.0.3/Disk1/runInstaller PRE_REQUISITE=TRUE <
    Starting Oracle Universal Installer...
    before the assistant fails it looked like:
    Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.5/FAQ
    PID TTY STAT TIME COMMAND
    2976 pts/2 S+ 0:00 -ksh
    17588 pts/2 S 2:32 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    17589 pts/2 S 0:00 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    17590 pts/2 S 0:26 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    17591 pts/2 S 0:00 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    17592 pts/2 S 0:00 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    17593 pts/2 S 0:00 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    17594 pts/2 S 0:00 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    17595 pts/2 S 0:02 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    17596 pts/2 S 0:00 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    17597 pts/2 S 0:00 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    17598 pts/2 S 0:02 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    17600 pts/2 S 0:00 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    17601 pts/2 S 0:07 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    17607 pts/2 S 0:02 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    17677 pts/2 S 0:00 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    26185 ? Ss 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26301 pts/2 S 0:00 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    26381 pts/2 S 0:00 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    26409 pts/2 S 0:00 /opt/oracle/EM/10.1.0.3/bin/tnslsnr LISTENER -inherit
    26669 pts/4 S 0:00 -ksh
    26717 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26718 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26719 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26720 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26721 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26722 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26723 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26724 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26725 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26726 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26727 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26728 26729 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26730 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26731 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26732 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    26770 pts/2 S 0:00 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    26771 pts/2 S 0:00 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    26772 pts/2 S 0:01 /opt/oracle/EM/10.1.0.3/jdk/bin/java -DORACLE_HOME=/opt/oracle/EM/10.1.0.3 -class
    26773 pts/2 S 0:00 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    26774 pts/2 S 0:00 /tmp/OraInstall2005-09-27_02-31-00PM/jre/1.4.2/bin/java -Doracle.installer.librar
    26775 pts/2 S 0:00 /opt/oracle/EM/10.1.0.3/jdk/bin/java -DORACLE_HOME=/opt/oracle/EM/10.1.0.3 -class
    26776 pts/2 S 0:00 /opt/oracle/EM/10.1.0.3/jdk/bin/java -DORACLE_HOME=/opt/oracle/EM/10.1.0.3 -class
    26777 pts/2 S 0:00 /opt/oracle/EM/10.1.0.3/jdk/bin/java -DORACLE_HOME=/opt/oracle/EM/10.1.0.3 -class
    26778 pts/2 S 0:00 /opt/oracle/EM/10.1.0.3/jdk/bin/java -DORACLE_HOME=/opt/oracle/EM/10.1.0.3 -class
    26779 pts/2 S 0:00 /opt/oracle/EM/10.1.0.3/jdk/bin/java -DORACLE_HOME=/opt/oracle/EM/10.1.0.3 -class
    26780 pts/2 S 0:00 /opt/oracle/EM/10.1.0.3/jdk/bin/java -DORACLE_HOME=/opt/oracle/EM/10.1.0.3 -class
    26781 pts/2 S 0:00 /opt/oracle/EM/10.1.0.3/jdk/bin/java -DORACLE_HOME=/opt/oracle/EM/10.1.0.3 -class
    26782 pts/2 S 0:00 /opt/oracle/EM/10.1.0.3/jdk/bin/java -DORACLE_HOME=/opt/oracle/EM/10.1.0.3 -class
    26783 pts/2 S 0:00 /opt/oracle/EM/10.1.0.3/jdk/bin/java -DORACLE_HOME=/opt/oracle/EM/10.1.0.3 -class
    26791 pts/2 S 0:00 /opt/oracle/EM/10.1.0.3/jdk/bin/java -DORACLE_HOME=/opt/oracle/EM/10.1.0.3 -class
    26792 pts/2 S 0:00 /opt/oracle/EM/10.1.0.3/jdk/bin/java -DORACLE_HOME=/opt/oracle/EM/10.1.0.3 -class
    26834 pts/2 S 0:00 /opt/oracle/EM/10.1.0.3/jdk/bin/java -DORACLE_HOME=/opt/oracle/EM/10.1.0.3 -class
    26835 pts/2 S 0:00 /bin/sh /opt/oracle/EM/10.1.0.3/opmn/bin/opmnctl stopall
    26843 pts/2 S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -a -q shutdown
    26844 ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    ? S 0:00 /opt/oracle/EM/10.1.0.3/opmn/bin/opmn -d
    I'm running out of ideas!!
    thanks for your help!!!
    daniel

  • Central data cache configured but not active

    Hi,
    I am currently at a customer site and am configuring the solution manager system as a CEN.
    The sapccm4x en ccmsr agents have been registered and memory has been allocated in the CEN system for the central data cache, but whenever I open a monitor the following message is listed at the top of the screen:
    Central data cache configured but not active
    Suggestions on how to configure this cache and the impact of not doing so will be rewarded.
    Regards,
    Sander

    Hi,
    central data cache to improve the performance of the Alert Monitor when creating the alert monitoring trees.
    Check [This link|http://help.sap.com/saphelp_sm32/helpdata/en/de/13622d770b5e4f8398fc536b690e93/content.htm]
    And [This link|http://help.sap.com/saphelp_sm32/helpdata/en/10/75ea3b6d73e807e10000000a11402f/content.htm]
    Hope this solves your problem.
    Feel free to revert back.
    --Ragu

  • IFS and Data Cache Configuration

    Hi!!
    i installed 9iAs Enterprice Edition on my machine that already had Oracle db 8.1.7, i'm trying to set up ifs, but when i choose the option "Oracle8i is on THIS machine" in the ifs wizard i've got a protocol adapter error, if i choose the option "oracle8i on another machine" i solved the problem, why is this happening???
    the other problem it's with theb database cache i started the wizard, but in 16% when it's creating the cache it stoped it didn't show any error, i leaved for 2 days but it just reached the 16% and stayed ther.
    could you please help me..

    For iFS configuration on Enterprise Edition you can't select the option, "Oracle8i is on THIS machine". Actually this is a typo. This should be "Oracle8i is on THIS oracle_home". This will be fixed in future releases. iFS can't be configured against database cache(icache) also. So definitly you need a database which is on another oracle_home and you should select the second option, "oracle8i on another machine".
    From the second problem, I assume you are installing 9iAS on a Windows NT platform. On NT, sometimes database cache hangs. I assume it is mainly because of less memory. How much is the memory in your system? Are you running so many processes on the system while cache configuration? If so, reduce it as much as you can and retry for cache configuration. You may need to manually shutdown one SQLPLUS.EXE process in 'Task manager' started from the current cache configuration before retrying the config.

  • Cache configuration  - ERROR 96%

    I'm trying to get 9iAS 1.0.2.0.1 working and the Database Cache configuration doesn't complete. It gets to the last item in the list and fails.
    Here is the error message:
    Erro OCI - ORA-22288: file or LOB operation GETLENGTH failed
    The system cannot find the file specified.
    ORA-06512: at "SYS.DBMS_LOB", line 518
    ORA-06512: at "SYS.WTCSYS", line 24
    ORA-06512: at "SYS.WTCSYS", line 67
    ORA-06512: at line 1
    Please let me know if you find any solution for it.
    Thanks!

    Not correct answer. External procedures do not configured correctly on the origin database.
    For example,
    1) you lunch listener from iAS and extporc is not configured on it's listener
    2) do not use MTS or configure IPC dispatcher
    3) on Win2000 do not lunch a listener from System account, on Linux from root (check SUID)
    4) check names.default_domain in sqlnet.ora. You must use this name in tnsnames.ora for extproc desriptor
    et cetera ...

  • Default cache configuration

    Hi
    I am new to coherence. I am using coherence as the cache for top link. For testing purpose I did not change any default cache configuration settings. I am able to put and get my data from coherence but I want to see it from coherence console window. How can i see it as I dont know the cache name or map name.
    Thanks

    Hello,
    I didn't find a way to get the list of caches from the console, but you could get them from jmx. You can start your Coherence console with jmx enabled, then in jconsole look at the Coherence->Cache section. Under each service, DistributedCache for example, there will be an entry for each cache. Then in the console, you can use that cache name in your cache command, e.g. "cache foo".
    Hope this helps,
    Patrick

  • Please Help - Cache Configuration

    When using the cache configuration assistant, configuration fails at 96% with
    the following message:
    "Updating User List
    Adding Users to cache
    Adding Users to cache failed
    Reason: WTE -03501 Error Updating lists of users
    Export failed on origin database
    OCI error - ORA-03501: file or LOB operation GETLENGTH failed.
    The system can't find the file specified.
    ORA - 06512 at "SYS.DBMS_LOB", line 518
    ORA - 06512 at "SYS.WTCSYS", line 24
    ORA - 06512 at "SYS.WTCSYS" line 67
    ORA - 06512 at line 1
    Processing failed
    It appears to be failing while tring to copy the user list from the origin database, to the cache.
    I have tried to update the user list manually in cache manager (within DBA Studio) but it fails witht the same error.
    Anybody got any ideas????
    Any help will be most appreciated.
    Kind Regards
    Dave Angel

    Hi,
    You have to add followings to your cluster configuration as below
    <shutdown-listener>
    <enabled system-property="tangosol.coherence.shutdownhook">true</enabled>
    </shutdown-listener>
    Hope this can help you.

  • Cache Configuration Assistant goes on and on and on

    Hi all,
    I am installing Oracle 9ias 1022 on a windonw 2000 machine. The origin databas (8i 81701) is on a Linux box.
    The installation seems to have stuck at the Cache Confoguration Assistant Progress Dialog window. Its been at 16% for the past two hours! Is that normal? can I cancel and continue?
    Any pointers will be most welcome.
    Keita.

    I have specifically not installed on Linux database, but the iCache configuration hanging at 16% is reported a couple of times which is mainly due to the pre-configuration required for database.
    If you are not really keen on using database cache you can cancel it and go ahead.
    If you want to use database cache, from the cmd prompt use
    cmd> tnsping extproc_connection_data
    and see if it returns ok.
    If not that means you have not configured your database. Refer to preinstalltion steps in installation guide and then invoke the cache configuration assistant using the cmd
    cmd > wtacca -create -typical
    null

  • Cache Configuration Assistant

    When I am configuring Cache Configuring Assistant I am getting the following error:
    Connecting to Origin DataBase Failed>
    Reason:ORA-12154:TBNS couldnot Resolve Service name.Can anyone help me out.

    Hi ,The info what you have given is not enough.But according to my guess i think it might be Database base cache.The errorreflects when ever you try to connect to the specifed domain,please check your tnsnames.ora weather proper entry is there undr the alias ora_icache_icache

  • Cache Configuration Assistant Fails At 96%

    I am currently experiencing problems with the 9iAS Cache Configuration Assistant.
    The configuration assistant fails at 96% while updating the user list.
    The assistant detail window reads:
    Updating User List
    Adding Users to the cache
    Adding users to the cache failed
    Reason: WTE-03501 Error updating list of users. Export failed on origin database.
    OCI error - ORA-22288: file or LOB operation GETLENGTH failed.
    The system cannot find the file specified
    ORA-06512: at "SYS.DBMS_LOB", line 518
    ORA-06512: at "SYS.WTCSYS", line 24
    ORA-06512: at "SYS.WTCSYS", line 67
    ORA-06512: at line 1
    I have attempted to configure the cache several times having checked through the configuration guide for all pre-insatllation tasks, and each time it fails at 96%.
    I have also attempted to update the user list within cache manager (DBA Studio) with no success and if I attempt to add tables to cache the error displayed reads WTE-03608 - error caching table dcctl.???? on cache webserver-cache. User dcctl does not exist in the cache.
    Please Help!!!!
    Cheers
    Charlie Hampson ([email protected])

    I'm assuming this is for the Database Cache. DB Cache has been discontinued in 9iAS v2. This forum is mainly focused
    on Web Cache topics.
    If you're having trouble configuring DB Cache for 9iAS v1, please contact Oracle Support.
    Thanks.

  • GRID CONTROL FAILS at Web Cache Configuration Assistant

    Hi,
    I am installing Grid Control 10.2.0.1 on Oracle Enterprise Linux 4. I run into this error at Web Cache Configuration Assistant :
    Failed in smi manipulation().
    The most likely causes are:
    1. TaskMaster cannot read configuration files, such as $ORACLE_HOME/opmn/conf/opmn.xml, and $ORACLE_HOME/dcm/dcm.conf, etc.
    2. Cannot connect to the repository.
    Resolution:
    1. Make sure that the system configuration files are present and the permission for those files are set correctly.
    2. If you are using Infrastructure Database, please make sure that the database is up and running, and the listener for the database is running. Also check the connectivity of the machine to the Database Repository. Please refer to the exception thrown by the Repository API for resolution. The Repository API may be misconfigured.
    Base Exception:
    oracle.ons.SubscriptionException
    Subscription request timed out after 120000 millseconds. Possible causes: OPMN may not be running, you may have an OPMN running in an alternate ORACLE_HOME using duplicate port values, or OPMN may be misconfigured.
    oracle.ons.SubscriptionException: Subscription request timed out after 120000 millseconds. Possible causes: OPMN may not be running, you may have an OPMN running in an alternate ORACLE_HOME using duplicate port values, or OPMN may be misconfigured.
         at oracle.ons.SubscriptionNotification.waitForReply(SubscriptionNotification.java:82)
         at oracle.ons.ONS.addSubscriber(ONS.java:336)
         at oracle.ons.Subscriber.realStartup(Subscriber.java:92)
         at oracle.ons.Subscriber.<init>(Subscriber.java:80)
         at oracle.ons.ONS.createNewSubscriber(ONS.java:690)
         at oracle.ias.sysmgmt.task.TaskMaster.sysInit(Unknown Source)
         at oracle.ias.sysmgmt.task.TaskMaster.sysInit(Unknown Source)
         at oracle.ias.sysmgmt.task.InstanceManager.sysInit(Unknown Source)
         at oracle.ias.sysmgmt.task.InstanceManager.init(Unknown Source)
         at oracle.ias.sysmgmt.EntryPoint.init(Unknown Source)
         at oracle.ias.webcache.config.WebcacheConfig.smiSetup(WebcacheConfig.java:483)
         at oracle.ias.webcache.config.WebcacheConfig.smiEnableWebcache(WebcacheConfig.java:454)
         at oracle.ias.webcache.config.WebcacheConfig.enableConfiguration(WebcacheConfig.java:299)
         at oracle.ias.webcache.config.WebcacheConfig.main(WebcacheConfig.java:87)
    Command = /home/oracle/OracleHomes/oms10g/jdk/bin/java has failed
    As per a couple of earlier threads almost related to this .. I have corrected my PATH, TMP, LD_LIBRARY_PATH env variables, but I repeatedly get stuck at this point.
    Any insights on this please ?

    Resolution:
    1. Make sure that the system configuration files are
    present and the permission for those files are set
    correctly.
    2. If you are using Infrastructure Database, please
    make sure that the database is up and running, and
    the listener for the database is running. Also check
    the connectivity of the machine to the Database
    Repository. Please refer to the exception thrown by
    the Repository API for resolution. The Repository
    API may be misconfigured.

  • Oracle Grid web cache configuration assistant error

    Hi,
    I am installing Oracle 10g release 2 Grid on Red Hat Linux...i tried so many time..bt getting below error during Web Cache Configuration Assistant...If anybody know solution ...plz share ur solution.............thanks in advacne....
    "Failed in smi manipulation().
    A problem has occurred reading the initial configuration and storing it into repository
    Resolution:
    Please refer to the base exception for resolution, or call Oracle support.
    Base Exception:
    Ouch! ap_mm_create(1048576, "/Oracle/OraGrd/OraH/oms10g/Apache/Apache/logs/mm.3473") failed
    Error: MM: mm:core: failed to memory map memory file (Invalid argument): OS: No such file or directory
    Resolution:
    Please make sure the values entered in OHS configuration files are correct.
    oracle.ias.sysmgmt.exception.InvalidConfigurationException: Base Exception:
    Ouch! ap_mm_create(1048576, "/Oracle/OraGrd/OraH/oms10g/Apache/Apache/logs/mm.3473") failed
    Error: MM: mm:core: failed to memory map memory file (Invalid argument): OS: No such file or directory
    Resolution:
    Please make sure the values entered in OHS configuration files are correct.
    at oracle.ias.sysmgmt.repository.plugin.advanced.apache.StateTranslator.checkConfigFileValidity(Unknown Source)
    at oracle.ias.sysmgmt.repository.plugin.advanced.apache.StateTranslator.validateConfigDuringEvaluate(Unknown Source) "
    Any body have solution
    Message was edited by:
    Vivek

    What is the version of JDK on the box?

Maybe you are looking for

  • Tree Component Background Color

    Hi, I am using the Tree Component, it has 3 nodes. - Is there a way I could change the background color when   I open each node. - Is there a way to change the font of the text   associated to each node. Any Help would be appreciated. NAC

  • HT201250 Sorry. I couldn't figure out how to delete this entirely.

    After I posted I found my answer. (Thanks, Pondini!) I saw how to "edit" my question but not how to delete it. This is the best I could do. Message was edited by: katetx2001

  • Wacked animated icon colors on MBP and external monitors

    Is anyone else having the problem that animated icons (and even the scrolling script on the Apple home page) are displayed as multicolored pixels. I'd upload an image of this, but we can't here.

  • Switching to new apple id?

    when i got my first ipod way back when it was a gift and my parents set up me and my sister with the same apple id. Now my whole family has apple products and we are all on the same id. I am now in college and when I got my macbook i set up my own ap

  • SQL loader import issue..

    Hi, I am working on 10g database on ibm AIX .. i need to use sql loader and insert some data in to table using a input file. The input file contains follwing format..- data.dat 001 901 200 1611196 "dis ltype gu" Mhamicddu kuasa 12as king all these va