Another unnamed CacheManager already exists in the same VM




Asked on February 25, 2020
Another unnamed CacheManager already exists in the same VM. Please provide unique names for each CacheManager in the config or do one of following: 25 Feb 2020 05:25:09,609 ERROR stderr:71

Trying to up of my vm machines, where jboss is installed. below is my ehcache file configuation




<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- This file is auto generated : do not edit by hand -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->

<ehcache>

<defaultCache
    eternal="false"
    maxEntriesLocalHeap="30000"
    timeToLiveSeconds="2000"
    overflowToDisk="false">
    <persistence strategy="none"/>
</defaultCache>

<cache
    name="org.hibernate.cache.StandardQueryCache"
    maxEntriesLocalHeap="60000"
    eternal="false"
    timeToLiveSeconds="2400"
    overflowToDisk="false">
    <persistence strategy="none"/>
</cache>


<cache
    name="org.hibernate.cache.UpdateTimestampsCache"
    maxEntriesLocalHeap="25000"
    eternal="true"
    overflowToDisk="false">
    <persistence strategy="none"/>
 </cache>
 


<cache name="Asset" eternal="true" overflowToDisk="false" maxEntriesLocalHeap="300000">
<persistence strategy="none"/>
</cache>
<cache name="Bootstrap" eternal="true" overflowToDisk="false" maxEntriesLocalHeap="200000">
<persistence strategy="none"/>
</cache>
<cache name="DomainObject" timeToIdleSeconds="1200" timeToLiveSeconds="1200" eternal="false" overflowToDisk="false" maxEntriesLocalHeap="500000">
<persistence strategy="none"/>
</cache>
<cache name="JobBidResponseObject" timeToIdleSeconds="1200" timeToLiveSeconds="1200" eternal="false" overflowToDisk="false" maxEntriesLocalHeap="100000">
<persistence strategy="none"/>
</cache>
<cache name="JobBidObject" timeToIdleSeconds="1200" timeToLiveSeconds="1200" eternal="false" overflowToDisk="false" maxEntriesLocalHeap="100000">
<persistence strategy="none"/>
</cache>
<cache name="DocumentObject" timeToIdleSeconds="1200" timeToLiveSeconds="1200" eternal="false" overflowToDisk="false" maxEntriesLocalHeap="100000">
<persistence strategy="none"/>
</cache>
<cache name="com.deploy.atao.model.Location" timeToIdleSeconds="1800" timeToLiveSeconds="1800" eternal="false" overflowToDisk="false" maxEntriesLocalHeap="120000">
<persistence strategy="none"/>
</cache>
<cache name="com.deploy.atao.model.LocaleLocation" timeToIdleSeconds="1800" timeToLiveSeconds="1800" eternal="false" overflowToDisk="false" maxEntriesLocalHeap="240000">
<persistence strategy="none"/>
</cache>
<cache name="com.deploy.atao.model.LocationCustomField" timeToIdleSeconds="1800" timeToLiveSeconds="1800" eternal="false" overflowToDisk="false" maxEntriesLocalHeap="120000">
<persistence strategy="none"/>
</cache>
<cache name="LocationObject" timeToIdleSeconds="1800" timeToLiveSeconds="1800" eternal="false" overflowToDisk="false" maxEntriesLocalHeap="120000">
<persistence strategy="none"/>
</cache>
<cache name="AuthEvent" timeToIdleSeconds="1200" timeToLiveSeconds="1200" eternal="false" overflowToDisk="false" maxEntriesLocalHeap="10000">
<persistence strategy="none"/>
</cache>
<cache name="LocationAccessObject" timeToIdleSeconds="1200" timeToLiveSeconds="1200" eternal="false" overflowToDisk="false" maxEntriesLocalHeap="10000">
<persistence strategy="none"/>
</cache>
<cache name="LogObject" timeToIdleSeconds="1200" timeToLiveSeconds="1200" eternal="false" overflowToDisk="false" maxEntriesLocalHeap="10000">
<persistence strategy="none"/>
</cache>
<cache name="UserObject" timeToIdleSeconds="1200" timeToLiveSeconds="1200" eternal="false" overflowToDisk="false" maxEntriesLocalHeap="50000">
<persistence strategy="none"/>
</cache>
<cache name="BookmarkObject" timeToIdleSeconds="1200" timeToLiveSeconds="1200" eternal="false" overflowToDisk="false" maxEntriesLocalHeap="20000">
<persistence strategy="none"/>
</cache>
<cache name="AssessmentObject" eternal="false" timeToIdleSeconds="1200" timeToLiveSeconds="1200" overflowToDisk="false" maxEntriesLocalHeap="50000">
<persistence strategy="none"/>
</cache>


<!--
     org.jbpm.graph.def.ExceptionHandler
     org.jbpm.graph.def.Node

     org.jbpm.module.def.ModuleDefinition
     org.jbpm.taskmgmt.def.TaskController
     org.jbpm.graph.def.ProcessDefinition

    org.jbpm.instantiation.Delegation
     org.jbpm.graph.def.Action
     org.jbpm.graph.def.Transition

     org.jbpm.taskmgmt.def.Swimlane.tasks
     org.jbpm.taskmgmt.def.TaskController.variableAccesses
     org.jbpm.graph.def.ProcessDefinition.nodes
     org.jbpm.graph.def.ProcessDefinition.definitions
     org.jbpm.graph.def.Node.leavingTransitions
     org.jbpm.graph.node.TaskNode.tasks
     org.jbpm.graph.def.Event.actions
     org.jbpm.graph.def.Transition.exceptionHandlers
     org.jbpm.graph.def.ProcessDefinition.exceptionHandlers
     org.jbpm.graph.def.Transition.events
     org.jbpm.graph.def.Event
     org.jbpm.context.def.VariableAccess
     org.jbpm.taskmgmt.def.Task

     org.jbpm.graph.def.ExceptionHandler.actions
     org.jbpm.graph.def.Node.arrivingTransitions

     org.jbpm.file.def.FileDefinition.processFiles
     org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlanes
     org.jbpm.graph.def.Node.events
     org.jbpm.taskmgmt.def.Task.events
     org.jbpm.graph.def.SuperState.nodes
     org.jbpm.graph.action.Script.variableAccesses
     org.jbpm.graph.def.ProcessDefinition.events
     org.jbpm.graph.node.Decision.decisionConditions
     org.jbpm.graph.def.ProcessDefinition.actions
     org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks
     org.jbpm.taskmgmt.def.Task.exceptionHandlers
     org.jbpm.graph.def.Node.exceptionHandlers
     org.jbpm.graph.node.ProcessState.variableAccesses-->

</ehcache>




Replied on February 25, 2020
Spring framework is not being used.


Write Answer










©2024 concretepage.com | Privacy Policy | Contact Us