Storage is not configured

Hi, We configured a distributed cache. 2 nodes in the cache will have local storage and the local node without the local storage. Some times it works and some times We are getting the following error:
Exception in thread "main" java.lang.RuntimeException: Storage is not configured
     at com.tangosol.coherence.component.util.daemon.queueProcessor.service.DistributedCache$BinaryMap.onMissingStorage(DistributedCache.CDB:9)
     at com.tangosol.coherence.component.util.daemon.queueProcessor.service.DistributedCache$BinaryMap.put(DistributedCache.CDB:17)
     at com.tangosol.coherence.component.util.daemon.queueProcessor.service.DistributedCache$BinaryMap.put(DistributedCache.CDB:1)
     at com.tangosol.util.ConverterCollections$ConverterMap.put(ConverterCollections.java:1317)
     at com.tangosol.coherence.component.util.daemon.queueProcessor.service.DistributedCache$ViewMap.put(DistributedCache.CDB:1)
     at com.tangosol.coherence.component.util.SafeNamedCache.put(SafeNamedCache.CDB:1)
     at test.Test.runSerializable(Test.java:85)
     at test.Test.main(Test.java:35)
Thanks,
Kris

Hi Kris,
I can't tell from the exchange so far if this is a possibility, but I've seen very similar behavior when launching JVMs from a shell script like:
java com.tangosol.net.DefaultCacheServer &
java com.tangosol.net.DefaultCacheServer &
java -Dtangosol.coherence.distributed.localstorage=false test.Test
The problem is that the background spawn process is fast enough (and the discovery process slow enough) that the storage disabled node can in some cases start up, join its own cluster, query for membership, and exit before the storage-enabled nodes have even joined the cluster.
The simplest solution (for testing) is to place a polling loop at the beginning of the storage-disabled main() which blocks until storage-enabled nodes have been started:
NamedCache cache = ...;
DistributedCacheService service = (DistributedCacheService)cache.getCacheService();
while (service.getStorageEnabledMembers().size() == 0) { Thread.sleep(1000); }Jon Purdy
Tangosol, Inc.

Similar Messages

  • "Storage is not configured" during failover - COH-1467 still not fixed?

    I am runing a test program using two cache nodes and one "client JVM", all on the same machine (the first cache node is used as WKA). When I kill one of the cache nodes and the restart it again I get the following exceptions:
    In the surviving cache node:
    2009-01-22 08:01:14.753/112.718 Oracle Coherence GE 3.4.1/407 <Error> (thread=DistributedCache, member=1): An exception (java.lang.ClassCastException) occurred reading Message AggregateFilterRequest Type=31 for Service=DistributedCache{Name=DistributedCache, State=(SERVICE_STARTED), LocalStorage=enabled, PartitionCount=257, BackupCount=1, AssignedPartitions=257, BackupPartitions=0}
    2009-01-22 08:01:14.753/112.718 Oracle Coherence GE 3.4.1/407 <Error> (thread=DistributedCache, member=1): Terminating DistributedCache due to unhandled exception: java.lang.ClassCastException
    2009-01-22 08:01:14.753/112.718 Oracle Coherence GE 3.4.1/407 <Error> (thread=DistributedCache, member=1):
    java.lang.ClassCastException: java.lang.Long
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$AggregateFilterRequest.read(DistributedCache.CDB:8)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onNotify(Grid.CDB:117)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache.onNotify(DistributedCache.CDB:3)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:37)
         at java.lang.Thread.run(Thread.java:619)
    On the restarted cache node:
    2009-01-22 08:01:15.722/2.220 Oracle Coherence GE 3.4.1/407 <Info> (thread=Main Thread, member=n/a): Loaded cache configuration from resource "file:/C:/Javaproj/Query/lib/master-coherence-cache-config.xml"
    2009-01-22 08:01:16.565/3.063 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=n/a): Service Cluster joined the cluster with senior service member n/a
    2009-01-22 08:01:16.628/3.126 Oracle Coherence GE 3.4.1/407 <Info> (thread=Cluster, member=n/a): Failed to satisfy the variance: allowed=16, actual=31
    2009-01-22 08:01:16.628/3.126 Oracle Coherence GE 3.4.1/407 <Info> (thread=Cluster, member=n/a): Increasing allowable variance to 17
    2009-01-22 08:01:17.003/3.501 Oracle Coherence GE 3.4.1/407 <Info> (thread=Cluster, member=n/a): This Member(Id=5, Timestamp=2009-01-22 08:01:16.768, Address=138.106.109.121:54101, MachineId=36217, Location=site:global.scd.scania.com,machine:N27858,process:22728, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1) joined cluster with senior Member(Id=1, Timestamp=2009-01-22 07:59:24.098, Address=138.106.109.121:54100, MachineId=36217, Location=site:global.scd.scania.com,machine:N27858,process:22948, Edition=Grid Edition, Mode=Development, CpuCount=2, SocketCount=1)
    2009-01-22 08:01:17.065/3.563 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=n/a): Member(Id=4, Timestamp=2009-01-22 08:00:35.566, Address=138.106.109.121:8088, MachineId=36217, Location=site:global.scd.scania.com,machine:N27858,process:11544) joined Cluster with senior member 1
    2009-01-22 08:01:17.081/3.579 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=n/a): Member 1 joined Service Management with senior member 1
    2009-01-22 08:01:17.081/3.579 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=n/a): Member 1 joined Service InvocationService with senior member 1
    2009-01-22 08:01:17.081/3.579 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=n/a): Member 1 joined Service DistributedCacheNoBackup with senior member 1
    2009-01-22 08:01:17.097/3.595 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=n/a): Member 4 joined Service InvocationService with senior member 1
    2009-01-22 08:01:17.097/3.595 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=n/a): Member 4 joined Service DistributedCache with senior member 4
    2009-01-22 08:01:17.222/3.720 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=5): TcpRing: connecting to member 4 using TcpSocket{State=STATE_OPEN, Socket=Socket[addr=/138.106.109.121,port=8088,localport=3609]}
    2009-01-22 08:01:17.253/3.751 Oracle Coherence GE 3.4.1/407 <D5> (thread=Invocation:Management, member=5): Service Management joined the cluster with senior service member 1
    2009-01-22 08:01:17.393/3.891 Oracle Coherence GE 3.4.1/407 <D5> (thread=Invocation:InvocationService, member=5): Service InvocationService joined the cluster with senior service member 1
    2009-01-22 08:01:18.643/5.141 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=5): Member 1 joined Service DistributedCache with senior member 4
    2009-01-22 08:01:19.050/5.548 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=5): Member 1 left service DistributedCache with senior member 4
    2009-01-22 08:01:23.659/10.157 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=5): Member 1 joined Service DistributedCache with senior member 4
    2009-01-22 08:01:24.284/10.782 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=5): Member 1 left service DistributedCache with senior member 4
    2009-01-22 08:01:28.674/15.172 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=5): Member 1 joined Service DistributedCache with senior member 4
    2009-01-22 08:01:29.503/16.001 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=5): Member 1 left service DistributedCache with senior member 4
    2009-01-22 08:01:33.674/20.172 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=5): Member 1 joined Service DistributedCache with senior member 4
    2009-01-22 08:01:33.721/20.219 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=5): Member 1 left service DistributedCache with senior member 4
    2009-01-22 08:01:38.674/25.172 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=5): Member 1 joined Service DistributedCache with senior member 4
    2009-01-22 08:01:38.956/25.454 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=5): Member 1 left service DistributedCache with senior member 4
    2009-01-22 08:01:43.690/30.188 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=5): Member 1 joined Service DistributedCache with senior member 4
    2009-01-22 08:01:44.174/30.672 Oracle Coherence GE 3.4.1/407 <D5> (thread=Cluster, member=5): Member 1 left service DistributedCache with senior member 4
    2009-01-22 08:01:47.659/34.157 Oracle Coherence GE 3.4.1/407 <Error> (thread=Main Thread, member=5): Error while starting service "InvocationService": com.tangosol.net.RequestTimeoutException: Timeout during service start: ServiceInfo(Id=2, Name=InvocationService, Type=Invocation
    MemberSet=ServiceMemberSet(
    OldestMember=Member(Id=1, Timestamp=2009-01-22 07:59:24.098, Address=138.106.109.121:54100, MachineId=36217, Location=site:global.scd.scania.com,machine:N27858,process:22948)
    ActualMemberSet=MemberSet(Size=3, BitSetCount=2
    Member(Id=1, Timestamp=2009-01-22 07:59:24.098, Address=138.106.109.121:54100, MachineId=36217, Location=site:global.scd.scania.com,machine:N27858,process:22948)
    Member(Id=4, Timestamp=2009-01-22 08:00:35.566, Address=138.106.109.121:8088, MachineId=36217, Location=site:global.scd.scania.com,machine:N27858,process:11544)
    Member(Id=5, Timestamp=2009-01-22 08:01:16.768, Address=138.106.109.121:54101, MachineId=36217, Location=site:global.scd.scania.com,machine:N27858,process:22728)
    MemberId/ServiceVersion/ServiceJoined/ServiceLeaving
    1/3.1/Thu Jan 22 07:59:27 CET 2009/false,
    4/3.1/Thu Jan 22 08:00:36 CET 2009/false,
    5/3.1/Thu Jan 22 08:01:17 CET 2009/false
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onStartupTimeout(Grid.CDB:6)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.start(Service.CDB:27)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.start(Grid.CDB:38)
         at com.tangosol.coherence.component.util.SafeService.startService(SafeService.CDB:28)
         at com.tangosol.coherence.component.util.SafeService.ensureRunningService(SafeService.CDB:27)
         at com.tangosol.coherence.component.util.SafeService.start(SafeService.CDB:14)
         at com.tangosol.net.DefaultConfigurableCacheFactory.ensureService(DefaultConfigurableCacheFactory.java:841)
         at com.tangosol.net.DefaultCacheServer.start(DefaultCacheServer.java:140)
         at com.tangosol.net.DefaultCacheServer.main(DefaultCacheServer.java:61)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.intellij.rt.execution.application.AppMain.main(AppMain.java:90)
    Exception in thread "Main Thread" com.tangosol.net.RequestTimeoutException: Timeout during service start: ServiceInfo(Id=2, Name=InvocationService, Type=Invocation
    MemberSet=ServiceMemberSet(
    OldestMember=Member(Id=1, Timestamp=2009-01-22 07:59:24.098, Address=138.106.109.121:54100, MachineId=36217, Location=site:global.scd.scania.com,machine:N27858,process:22948)
    ActualMemberSet=MemberSet(Size=3, BitSetCount=2
    Member(Id=1, Timestamp=2009-01-22 07:59:24.098, Address=138.106.109.121:54100, MachineId=36217, Location=site:global.scd.scania.com,machine:N27858,process:22948)
    Member(Id=4, Timestamp=2009-01-22 08:00:35.566, Address=138.106.109.121:8088, MachineId=36217, Location=site:global.scd.scania.com,machine:N27858,process:11544)
    Member(Id=5, Timestamp=2009-01-22 08:01:16.768, Address=138.106.109.121:54101, MachineId=36217, Location=site:global.scd.scania.com,machine:N27858,process:22728)
    MemberId/ServiceVersion/ServiceJoined/ServiceLeaving
    1/3.1/Thu Jan 22 07:59:27 CET 2009/false,
    4/3.1/Thu Jan 22 08:00:36 CET 2009/false,
    5/3.1/Thu Jan 22 08:01:17 CET 2009/false
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onStartupTimeout(Grid.CDB:6)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.start(Service.CDB:27)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.start(Grid.CDB:38)
         at com.tangosol.coherence.component.util.SafeService.startService(SafeService.CDB:28)
         at com.tangosol.coherence.component.util.SafeService.ensureRunningService(SafeService.CDB:27)
         at com.tangosol.coherence.component.util.SafeService.start(SafeService.CDB:14)
         at com.tangosol.net.DefaultConfigurableCacheFactory.ensureService(DefaultConfigurableCacheFactory.java:841)
         at com.tangosol.net.DefaultCacheServer.start(DefaultCacheServer.java:140)
         at com.tangosol.net.DefaultCacheServer.main(DefaultCacheServer.java:61)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.intellij.rt.execution.application.AppMain.main(AppMain.java:90)
    2009-01-22 08:01:47.659/34.157 Oracle Coherence GE 3.4.1/407 <Error> (thread=Invocation:InvocationService, member=5): validatePolls: This service timed-out due to unanswered handshake request. Manual intervention is required to stop the members that have not responded to this Poll
    PollId=1, active
    InitTimeMillis=1232607677393
    Service=InvocationService (2)
    RespondedMemberSet=[1]
    LeftMemberSet=[]
    RemainingMemberSet=[4]
    2009-01-22 08:01:47.659/34.157 Oracle Coherence GE 3.4.1/407 <D5> (thread=Invocation:InvocationService, member=5): Service InvocationService left the cluster
    2009-01-22 08:01:47.659/34.157 Oracle Coherence GE 3.4.1/407 <D4> (thread=ShutdownHook, member=5): ShutdownHook: stopping cluster node
    Process finished with exit code 1
    On the client JVM:
    2009-01-22 08:01:14.815/41.265 Oracle Coherence GE 3.4.1/407 <D5> (thread=Invocation:InvocationService, member=4): Repeating AggregateFilterRequest due to the re-distribution of PartitionSet[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127]
    java.lang.RuntimeException: Storage is not configured
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.onMissingStorage(DistributedCache.CDB:9)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.ensureRequestTarget(DistributedCache.CDB:33)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.sendPartitionedRequest(DistributedCache.CDB:31)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.aggregate(DistributedCache.CDB:11)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$ViewMap.aggregate(DistributedCache.CDB:52)
         at com.tangosol.coherence.component.util.SafeNamedCache.aggregate(SafeNamedCache.CDB:1)
         at com.tangosol.net.cache.NearCache.aggregate(NearCache.java:453)
         at com.scania.oas.coherence.invocables.ValueQueryInvocable.typeSearch(ValueQueryInvocable.java:260)
         at com.scania.oas.coherence.invocables.ValueQueryInvocable.queryStringFirstSearch(ValueQueryInvocable.java:300)
         at com.scania.oas.coherence.invocables.ValueQueryInvocable.run(ValueQueryInvocable.java:135)
         at com.scania.oas.coherence.invocables.InvocableWrapper.run(InvocableWrapper.java:54)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.InvocationService.onInvocationRequest(InvocationService.CDB:10)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.InvocationService$InvocationRequest.onReceived(InvocationService.CDB:40)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onMessage(Grid.CDB:9)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onNotify(Grid.CDB:130)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:37)
         at java.lang.Thread.run(Thread.java:619)
    java.lang.RuntimeException: Storage is not configured
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.onMissingStorage(DistributedCache.CDB:9)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.ensureRequestTarget(DistributedCache.CDB:33)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.sendPartitionedRequest(DistributedCache.CDB:31)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.aggregate(DistributedCache.CDB:11)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$ViewMap.aggregate(DistributedCache.CDB:52)
         at com.tangosol.coherence.component.util.SafeNamedCache.aggregate(SafeNamedCache.CDB:1)
         at com.tangosol.net.cache.NearCache.aggregate(NearCache.java:453)
         at com.scania.oas.coherence.invocables.ValueQueryInvocable.queryStringSearch(ValueQueryInvocable.java:268)
         at com.scania.oas.coherence.invocables.ValueQueryInvocable.queryStringFirstSearch(ValueQueryInvocable.java:297)
         at com.scania.oas.coherence.invocables.ValueQueryInvocable.run(ValueQueryInvocable.java:135)
         at com.scania.oas.coherence.invocables.InvocableWrapper.run(InvocableWrapper.java:54)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.InvocationService.onInvocationRequest(InvocationService.CDB:10)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.InvocationService$InvocationRequest.onReceived(InvocationService.CDB:40)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onMessage(Grid.CDB:9)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onNotify(Grid.CDB:130)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:37)
         at java.lang.Thread.run(Thread.java:619)
    I even tried to re-write the "run method" in tthe invocable in a way that caused it to, in a loop, perform a delay and then re-try its calculations when it received a runtime exception with the text "Storage is not configured" causing the retreival a new named cache each time but this did not help - it never seemed to recover...
    Since I dont see any of my application classes in the "class cast" trace-back I assume it is an Coherence internal problem or can you thiink about some user programming error that could cause it? I am by the way not using any long or "Long in my application...
    Best Regards
    Magnus

    Hi Magnus,
    The log you provided seems to indicate that the problem was caused by the de-serialization of the “AggregateFilterRequest” message. The only explanation we have is that you are using a custom Filter that has asymmetrical serialization/deserialization routines, causing this failure. Could you please send us the corresponding client code?
    Meanwhile, we will open a JIRA issue, to make sure that Coherence handles this kind of error more gracefully.
    -David

  • Intermittent java.lang.RuntimeException: Storage is not configured

    My (storage disabled) application runs zero or more times successfully and then starts getting "java.lang.RuntimeException: Storage is not configured" at startup. My console output from the cache-server and my app are below. I'm running the coherence-server.cmd and the trading apps on the same dual core machine. I assume my coherence server is screwing up because all simultaneously running apps start getting this error at the same time. After a short time the system seems to recover and the apps are again talking to the coherence cache. Sorry for pasting so much text - not sure what's relevant.
    Thanks!
    Andrew
    2009-02-23 23:05:01.134/1353.518 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clus
    ter, member=1): Member 3 joined Service DistributedCache with senior member 1
    2009-02-23 23:05:01.158/1353.542 Oracle Coherence GE 3.4.2/411 <D5> (thread=Dist
    ributedCache, member=1): Service DistributedCache: sending ServiceConfigSync con
    taining 259 entries to Member 3
    2009-02-23 23:05:01.850/1354.234 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clus
    ter, member=1): TcpRing: disconnected from member 2 due to a kill request
    2009-02-23 23:05:01.850/1354.234 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clus
    ter, member=1): Member 2 left service DistributedCache with senior member 1
    2009-02-23 23:05:01.850/1354.234 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clus
    ter, member=1): Member(Id=2, Timestamp=2009-02-23 23:05:01.85, Address=192.168.1
    .102:8089, MachineId=26982, Location=process:2496, Role=Trading_appOrderGenerato
    r) left Cluster with senior member 1
    2009-02-23 23:05:02.993/1355.377 Oracle Coherence GE 3.4.2/411 <D5> (thread=TcpR
    ingListener, member=1): TcpRing: connecting to member 3 using TcpSocket{State=ST
    ATE_OPEN, Socket=Socket[addr=/192.168.1.102,port=55841,localport=8088]}
    2009-02-23 23:05:06.850/1359.234 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clus
    ter, member=1): TcpRing: disconnected from member 3 due to a kill request
    2009-02-23 23:05:06.850/1359.234 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clus
    ter, member=1): Member 3 left service DistributedCache with senior member 1
    2009-02-23 23:05:06.851/1359.235 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clus
    ter, member=1): Member(Id=3, Timestamp=2009-02-23 23:05:06.85, Address=192.168.1
    .102:8091, MachineId=26982, Location=process:4824, Role=Trading_appOrderGenerato
    r) left Cluster with senior member 1
    c:\oc_test\trading_app&gt;java.exe -Dtangosol.coherence.distributed.localstorage=fa
    lse -client -classpath C:\oc_test\trading_app\classes;C:\java\javaclasses\apache
    -log4j-1.2.15\log4j-1.2.15.jar;C:\coherence\lib\coherence.jar trading_app.OrderG
    enerator
    2009-02-23 22:08:40.219/0.221 Oracle Coherence 3.4.2/411 &lt;Info&gt; (thread=main, me
    mber=n/a): Loaded operational configuration from resource "jar:file:/C:/coherenc
    e/lib/coherence.jar!/tangosol-coherence.xml"
    2009-02-23 22:08:40.224/0.226 Oracle Coherence 3.4.2/411 &lt;Info&gt; (thread=main, me
    mber=n/a): Loaded operational overrides from resource "jar:file:/C:/coherence/li
    b/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-02-23 22:08:40.225/0.227 Oracle Coherence 3.4.2/411 &lt;D5&gt; (thread=main, memb
    er=n/a): Optional configuration override "/tangosol-coherence-override.xml" is n
    ot specified
    2009-02-23 22:08:40.228/0.230 Oracle Coherence 3.4.2/411 &lt;D5&gt; (thread=main, memb
    er=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-02-23 22:08:40.394/0.396 Oracle Coherence GE 3.4.2/411 &lt;Info&gt; (thread=main,
    member=n/a): Loaded cache configuration from resource "jar:file:/C:/coherence/l
    ib/coherence.jar!/coherence-cache-config.xml"
    2009-02-23 22:08:40.857/0.859 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Service Cluster joined the cluster with senior service member n/a
    2009-02-23 22:08:41.068/1.070 Oracle Coherence GE 3.4.2/411 &lt;Info&gt; (thread=Clust
    er, member=n/a): This Member(Id=44, Timestamp=2009-02-23 22:08:40.865, Address=1
    0.1.1.1:8091, MachineId=2561, Location=machine:andrew-PC,process:4900, Role=Trad
    ing_appOrderGenerator, Edition=Grid Edition, Mode=Development, CpuCount=2, Socke
    tCount=1) joined cluster "cluster:0x2FFB" with senior Member(Id=2, Timestamp=200
    9-02-23 20:00:41.971, Address=10.1.1.1:8089, MachineId=2561, Location=machine:an
    drew-PC,process:1212, Role=Exchange_simExchange, Edition=Grid Edition, Mode=Deve
    lopment, CpuCount=2, SocketCount=1)
    2009-02-23 22:08:41.076/1.078 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member(Id=3, Timestamp=2009-02-23 20:15:55.39, Address=10.1.1.1:8
    088, MachineId=2561, Location=machine:andrew-PC,process:440, Role=Exchange_simEx
    change) joined Cluster with senior member 2
    2009-02-23 22:08:41.076/1.078 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member(Id=4, Timestamp=2009-02-23 22:04:23.567, Address=10.1.1.1:
    8090, MachineId=2561, Location=machine:andrew-PC,process:4196, Role=CoherenceSer
    ver) joined Cluster with senior member 2
    2009-02-23 22:08:41.080/1.082 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member 2 joined Service DistributedCache with senior member 2
    2009-02-23 22:08:41.080/1.082 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member 4 joined Service DistributedCache with senior member 2
    2009-02-23 22:08:41.080/1.082 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member 4 joined Service ReplicatedCache with senior member 4
    2009-02-23 22:08:41.080/1.082 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member 4 joined Service OptimisticCache with senior member 4
    2009-02-23 22:08:41.080/1.083 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member 4 joined Service InvocationService with senior member 4
    2009-02-23 22:08:41.081/1.083 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Member 3 joined Service DistributedCache with senior member 2
    2009-02-23 22:08:41.266/1.268 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=44): TcpRing: connecting to member 4 using TcpSocket{State=STATE_OPEN,
    Socket=Socket[http://addr=/10.1.1.1,port=8090,localport=55342]}
    2009-02-23 22:08:41.292/1.294 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Distrib
    utedCache, member=44): Service DistributedCache joined the cluster with senior s
    ervice member 2
    2009-02-23 22:08:41.299/1.301 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Distrib
    utedCache, member=44): Service DistributedCache: received ServiceConfigSync cont
    aining 259 entries
    c:\oc_test\trading_app&gt;call run.bat
    c:\oc_test\trading_app&gt;java.exe -Dtangosol.coherence.distributed.localstorage=fa
    lse -client -classpath C:\oc_test\trading_app\classes;C:\java\javaclasses\apache
    -log4j-1.2.15\log4j-1.2.15.jar;C:\coherence\lib\coherence.jar trading_app.OrderG
    enerator
    2009-02-23 22:08:42.149/0.230 Oracle Coherence 3.4.2/411 &lt;Info&gt; (thread=main, me
    mber=n/a): Loaded operational configuration from resource "jar:file:/C:/coherenc
    e/lib/coherence.jar!/tangosol-coherence.xml"
    2009-02-23 22:08:42.153/0.234 Oracle Coherence 3.4.2/411 &lt;Info&gt; (thread=main, me
    mber=n/a): Loaded operational overrides from resource "jar:file:/C:/coherence/li
    b/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-02-23 22:08:42.154/0.235 Oracle Coherence 3.4.2/411 &lt;D5&gt; (thread=main, memb
    er=n/a): Optional configuration override "/tangosol-coherence-override.xml" is n
    ot specified
    2009-02-23 22:08:42.157/0.238 Oracle Coherence 3.4.2/411 &lt;D5&gt; (thread=main, memb
    er=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-02-23 22:08:42.318/0.399 Oracle Coherence GE 3.4.2/411 &lt;Info&gt; (thread=main,
    member=n/a): Loaded cache configuration from resource "jar:file:/C:/coherence/l
    ib/coherence.jar!/coherence-cache-config.xml"
    2009-02-23 22:08:42.781/0.862 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Service Cluster joined the cluster with senior service member n/a
    2009-02-23 22:08:45.981/4.062 Oracle Coherence GE 3.4.2/411 &lt;Info&gt; (thread=Clust
    er, member=n/a): Created a new cluster "cluster:0x2FFB" with Member(Id=1, Timest
    amp=2009-02-23 22:08:42.625, Address=192.168.1.102:8088, MachineId=26982, Locati
    on=process:644, Role=Trading_appOrderGenerator, Edition=Grid Edition, Mode=Devel
    opment, CpuCount=2, SocketCount=1) UID=0xC0A801660000011FA678678169661F98
    2009-02-23 22:08:46.258/4.339 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Distrib
    utedCache, member=1): Service DistributedCache joined the cluster with senior se
    rvice member 1
    Exception in thread "main" java.lang.RuntimeException: Storage is not configured
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.DistributedCache$BinaryMap.onMissingStorage(DistributedCache.CDB:9)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.DistributedCache$BinaryMap.ensureRequestTarget(DistributedCache.CDB:34)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.DistributedCache$BinaryMap.addMapListener(DistributedCache.CDB:49)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.DistributedCache$ViewMap.addMapListener(DistributedCache.CDB:1)
    at com.tangosol.coherence.component.util.SafeNamedCache.addMapListener(S
    afeNamedCache.CDB:12)
    at com.tangosol.coherence.component.util.SafeNamedCache.addMapListener(S
    afeNamedCache.CDB:47)
    at trading_app.OrderGenerator.&lt;init&gt;(OrderGenerator.java:33)
    at trading_app.OrderGenerator.main(OrderGenerator.java:50)
    c:\coherence\bin&gt;cache-server.cmd
    java version "1.6.0_12"
    Java(TM) SE Runtime Environment (build 1.6.0_12-b04)
    Java HotSpot(TM) Server VM (build 11.2-b01, mixed mode)
    2009-02-23 22:42:27.878/0.262 Oracle Coherence 3.4.2/411 &lt;Info&gt; (thread=main, me
    mber=n/a): Loaded operational configuration from resource "jar:file:/C:/coherenc
    e/lib/coherence.jar!/tangosol-coherence.xml"
    2009-02-23 22:42:27.883/0.267 Oracle Coherence 3.4.2/411 &lt;Info&gt; (thread=main, me
    mber=n/a): Loaded operational overrides from resource "jar:file:/C:/coherence/li
    b/coherence.jar!/tangosol-coherence-override-dev.xml"
    2009-02-23 22:42:27.883/0.267 Oracle Coherence 3.4.2/411 &lt;D5&gt; (thread=main, memb
    er=n/a): Optional configuration override "/tangosol-coherence-override.xml" is n
    ot specified
    2009-02-23 22:42:27.888/0.272 Oracle Coherence 3.4.2/411 &lt;D5&gt; (thread=main, memb
    er=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 3.4.2/411
    Grid Edition: Development mode
    Copyright (c) 2000-2009 Oracle. All rights reserved.
    2009-02-23 22:42:28.128/0.512 Oracle Coherence GE 3.4.2/411 &lt;Info&gt; (thread=main,
    member=n/a): Loaded cache configuration from resource "jar:file:/C:/coherence/l
    ib/coherence.jar!/coherence-cache-config.xml"
    2009-02-23 22:42:28.618/1.002 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Cluster
    , member=n/a): Service Cluster joined the cluster with senior service member n/a
    2009-02-23 22:42:31.819/4.203 Oracle Coherence GE 3.4.2/411 &lt;Info&gt; (thread=Clust
    er, member=n/a): Created a new cluster "cluster:0x2FFB" with Member(Id=1, Timest
    amp=2009-02-23 22:42:28.461, Address=192.168.1.102:8088, MachineId=26982, Locati
    on=process:2152, Role=CoherenceServer, Edition=Grid Edition, Mode=Development, C
    puCount=2, SocketCount=1) UID=0xC0A801660000011FA69750ED69661F98
    2009-02-23 22:42:32.072/4.456 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Distrib
    utedCache, member=1): Service DistributedCache joined the cluster with senior se
    rvice member 1
    2009-02-23 22:42:32.147/4.531 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Replica
    tedCache, member=1): Service ReplicatedCache joined the cluster with senior serv
    ice member 1
    2009-02-23 22:42:32.159/4.543 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Optimis
    ticCache, member=1): Service OptimisticCache joined the cluster with senior serv
    ice member 1
    2009-02-23 22:42:32.178/4.562 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (thread=Invocat
    ion:InvocationService, member=1): Service InvocationService joined the cluster w
    ith senior service member 1
    2009-02-23 22:42:32.180/4.564 Oracle Coherence GE 3.4.2/411 &lt;Info&gt; (thread=main,
    member=1): Started DefaultCacheServer...
    SafeCluster: Name=cluster:0x2FFB
    Group{Address=224.3.4.2, Port=34411, TTL=4}
    MasterMemberSet
    ThisMember=Member(Id=1, Timestamp=2009-02-23 22:42:28.461, Address=192.168.1.1
    02:8088, MachineId=26982, Location=process:2152, Role=CoherenceServer)
    OldestMember=Member(Id=1, Timestamp=2009-02-23 22:42:28.461, Address=192.168.1
    .102:8088, MachineId=26982, Location=process:2152, Role=CoherenceServer)
    ActualMemberSet=MemberSet(Size=1, BitSetCount=2
    Member(Id=1, Timestamp=2009-02-23 22:42:28.461, Address=192.168.1.102:8088,
    MachineId=26982, Location=process:2152, Role=CoherenceServer)
    RecycleMillis=120000
    RecycleSet=MemberSet(Size=0, BitSetCount=0
    Services
    TcpRing{TcpSocketAccepter{State=STATE_OPEN, ServerSocket=192.168.1.102:8088},
    Connections=[]}
    ClusterService{Name=Cluster, State=(SERVICE_STARTED, STATE_JOINED), Id=0, Vers
    ion=3.4, OldestMemberId=1}
    DistributedCache{Name=DistributedCache, State=(SERVICE_STARTED), LocalStorage=
    enabled, PartitionCount=257, BackupCount=1, AssignedPartitions=257, BackupPartit
    ions=0}
    ReplicatedCache{Name=ReplicatedCache, State=(SERVICE_STARTED), Id=2, Version=3
    .0, OldestMemberId=1}
    Optimistic{Name=OptimisticCache, State=(SERVICE_STARTED), Id=3, Version=3.0, O
    ldestMemberId=1}
    InvocationService{Name=InvocationService, State=(SERVICE_STARTED), Id=4, Versi
    on=3.1, OldestMemberId=1}
    2009-02-23 22:08:22.950/240.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 34 due to a kill request
    2009-02-23 22:08:22.950/240.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 34 left service DistributedCache with senior member
    2009-02-23 22:08:22.951/240.290 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=34, Timestamp=2009-02-23 22:08:22.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:4988, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:24.015/241.354 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=35, Timestamp=2009-02-23 22:08:23.816, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:5600, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:24.219/241.558 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 35 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55333,localport=8090]}
    2009-02-23 22:08:24.219/241.558 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 35 joined Service DistributedCache with senior memb
    2009-02-23 22:08:24.950/242.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 35 due to a kill request
    2009-02-23 22:08:24.950/242.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 35 left service DistributedCache with senior member
    2009-02-23 22:08:24.951/242.290 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=35, Timestamp=2009-02-23 22:08:24.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:5600, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:25.920/243.259 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=36, Timestamp=2009-02-23 22:08:25.72, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:5168, Role=Tradi
    rderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:26.121/243.460 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 36 joined Service DistributedCache with senior memb
    2009-02-23 22:08:26.126/243.465 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 36 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55334,localport=8090]}
    2009-02-23 22:08:26.950/244.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 36 due to a kill request
    2009-02-23 22:08:26.950/244.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 36 left service DistributedCache with senior member
    2009-02-23 22:08:26.950/244.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=36, Timestamp=2009-02-23 22:08:26.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:5168, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:27.796/245.135 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=37, Timestamp=2009-02-23 22:08:27.604, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:4500, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:28.000/245.339 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 37 joined Service DistributedCache with senior memb
    2009-02-23 22:08:28.001/245.340 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 37 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55335,localport=8090]}
    2009-02-23 22:08:28.950/246.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 37 due to a kill request
    2009-02-23 22:08:28.950/246.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 37 left service DistributedCache with senior member
    2009-02-23 22:08:28.950/246.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=37, Timestamp=2009-02-23 22:08:28.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:4500, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:29.645/246.984 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=38, Timestamp=2009-02-23 22:08:29.453, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:5456, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:29.846/247.185 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 38 joined Service DistributedCache with senior memb
    2009-02-23 22:08:29.850/247.189 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 38 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55336,localport=8090]}
    2009-02-23 22:08:30.950/248.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 38 due to a kill request
    2009-02-23 22:08:30.950/248.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 38 left service DistributedCache with senior member
    2009-02-23 22:08:30.950/248.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=38, Timestamp=2009-02-23 22:08:30.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:5456, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:31.505/248.844 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=39, Timestamp=2009-02-23 22:08:31.313, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:4324, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:31.712/249.051 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 39 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55337,localport=8090]}
    2009-02-23 22:08:31.712/249.051 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 39 joined Service DistributedCache with senior memb
    2009-02-23 22:08:32.950/250.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 39 due to a kill request
    2009-02-23 22:08:32.950/250.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 39 left service DistributedCache with senior member
    2009-02-23 22:08:32.950/250.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=39, Timestamp=2009-02-23 22:08:32.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:4324, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:33.405/250.744 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=40, Timestamp=2009-02-23 22:08:33.214, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:6052, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:33.610/250.949 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 40 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55338,localport=8090]}
    2009-02-23 22:08:33.633/250.972 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 40 joined Service DistributedCache with senior memb
    2009-02-23 22:08:34.950/252.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 40 due to a kill request
    2009-02-23 22:08:34.950/252.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 40 left service DistributedCache with senior member
    2009-02-23 22:08:34.951/252.290 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=40, Timestamp=2009-02-23 22:08:34.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:6052, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:35.304/252.643 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=41, Timestamp=2009-02-23 22:08:35.112, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:4004, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:35.509/252.848 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 41 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55339,localport=8090]}
    2009-02-23 22:08:35.535/252.874 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 41 joined Service DistributedCache with senior memb
    2009-02-23 22:08:36.950/254.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 41 due to a kill request
    2009-02-23 22:08:36.950/254.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 41 left service DistributedCache with senior member
    2009-02-23 22:08:36.950/254.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=41, Timestamp=2009-02-23 22:08:36.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:4004, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:37.217/254.556 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=42, Timestamp=2009-02-23 22:08:37.024, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:5916, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:37.423/254.762 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 42 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55340,localport=8090]}
    2009-02-23 22:08:37.447/254.786 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 42 joined Service DistributedCache with senior memb
    2009-02-23 22:08:37.950/255.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 42 due to a kill request
    2009-02-23 22:08:37.950/255.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 42 left service DistributedCache with senior member
    2009-02-23 22:08:37.951/255.290 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=42, Timestamp=2009-02-23 22:08:37.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:5916, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:39.131/256.470 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=43, Timestamp=2009-02-23 22:08:38.94, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:2464, Role=Tradi
    rderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:39.336/256.675 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 43 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55341,localport=8090]}
    2009-02-23 22:08:39.359/256.698 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 43 joined Service DistributedCache with senior memb
    2009-02-23 22:08:39.950/257.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 43 due to a kill request
    2009-02-23 22:08:39.950/257.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 43 left service DistributedCache with senior member
    2009-02-23 22:08:39.950/257.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=43, Timestamp=2009-02-23 22:08:39.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:2464, Role=Tradi
    rderGenerator) left Cluster with senior member 2
    2009-02-23 22:08:41.064/258.403 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=44, Timestamp=2009-02-23 22:08:40.865, Address=1
    :8091, MachineId=2561, Location=machine:andrew-PC,process:4900, Role=Trad
    OrderGenerator) joined Cluster with senior member 2
    2009-02-23 22:08:41.268/258.607 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    ngListener, member=4): TcpRing: connecting to member 44 using TcpSocket{S
    ATE_OPEN, Socket=Socket[http://addr=/10.1.1.1,port=55342,localport=8090]}
    2009-02-23 22:08:41.287/258.626 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 44 joined Service DistributedCache with senior memb
    2009-02-23 22:08:41.950/259.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): TcpRing: disconnected from member 44 due to a kill request
    2009-02-23 22:08:41.950/259.289 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member 44 left service DistributedCache with senior member
    2009-02-23 22:08:41.951/259.290 Oracle Coherence GE 3.4.2/411 &lt;D5&gt; (threa
    er, member=4): Member(Id=44, Timestamp=2009-02-23 22:08:41.95, Address=10
    8091, MachineId=2561, Location=machine:andrew-PC,process:4900, Role=Tradi
    rderGenerator) left Cluster with senior member 2

    This is what I see on one of my client apps when the problem occurs. Looks like the coherence server disappears, no?
    waiting for events...
    waiting for events...
    waiting for events...
    waiting for events...
    2009-02-23 23:30:13.869/113.548 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clust
    er, member=2): MemberLeft notification for Member 4 received from Member(Id=1, T
    imestamp=2009-02-23 22:42:28.461, Address=192.168.1.102:8088, MachineId=26982, L
    ocation=process:2152, Role=CoherenceServer)
    2009-02-23 23:30:13.869/113.548 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clust
    er, member=2): Member 4 left service DistributedCache with senior member 1
    2009-02-23 23:30:13.874/113.553 Oracle Coherence GE 3.4.2/411 <D5> (thread=Clust
    er, member=2): Member(Id=4, Timestamp=2009-02-23 23:30:13.87, Address=192.168.1.
    102:8090, MachineId=26982, Location=process:4988, Role=Trading_appOrderGenerator
    ) left Cluster with senior member 1
    waiting for events...
    waiting for events...
    waiting for events...

  • Configuring Coherence-java.lang.RuntimeException: Storage is not configured

    Hi,
    I am try to use web coherence to store session data for our application. I am trying to integrate Coherence with Weblogic 10.3.
    I tried configuration steps mentioned at:
    http://download.oracle.com/docs/cd/E14526_01/coh.350/e14536/wslinstall.htm
    I packaged and configured EAR scoped cluster nodes as mentioned in step 2.2.2.2 in the document.
    I have following setup configured:
    1.Apache Web server
    2.2 Weblogic managed servers.
    All the servers are on same machine.
    I started coherence server (coherence 3.5 bundled with Weblogic ), and then i started managed server nodes.
    While server startup i can see in console output that Weblogic is talking to coherence and vice - versa.
    But when i hit application I end up with error.Following is the stack trace associated with it:
    I got same exception when i tried hitting through Apache or individually Weblogic server as well.
    java.lang.RuntimeException: Storage is not configured
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.onMissingStorage(DistributedCache.CDB:9)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.ensureRequestTarget(DistributedCache.CDB:34)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$BinaryMap.containsKey(DistributedCache.CDB:16)
         at com.tangosol.util.ConverterCollections$ConverterMap.containsKey(ConverterCollections.java:1519)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.DistributedCache$ViewMap.containsKey(DistributedCache.CDB:1)
         at com.tangosol.coherence.component.util.SafeNamedCache.containsKey(SafeNamedCache.CDB:1)
         at com.tangosol.net.cache.CachingMap.containsKey(CachingMap.java:401)
         at com.tangosol.coherence.servlet.AbstractHttpSessionCollection.isExistent(AbstractHttpSessionCollection.java:569)
         at weblogic.servlet.internal.session.CoherenceWebSessionContextImpl.getSessionInternal(CoherenceWebSessionContextImpl.java:363)
         at weblogic.servlet.internal.ServletRequestImpl$SessionHelper.getValidSession(ServletRequestImpl.java:2847)
         at weblogic.servlet.internal.ServletRequestImpl$SessionHelper.getSessionInternal(ServletRequestImpl.java:2402)
         at weblogic.servlet.internal.ServletRequestImpl$SessionHelper.getSession(ServletRequestImpl.java:2369)
         at weblogic.servlet.internal.ServletRequestImpl.getSession(ServletRequestImpl.java:1285)
         at weblogic.servlet.security.internal.SecurityModule$SessionRetrievalAction.run(SecurityModule.java:610)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.security.internal.SecurityModule.getUserSession(SecurityModule.java:501)
         at weblogic.servlet.security.internal.ServletSecurityManager.checkAccess(ServletSecurityManager.java:81)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2204)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Feb 11, 2011 12:48:40 PM IST> <Error> <HTTP> <PAWADHIYA-IN> <managed1> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <68c8ed900610f403:74e29dca:12e13930e60:-7fe8-0000000000000019> <1297408720625> <BEA-101020> <[ServletContext@32833247[app:OSLLearningToolApp module:LTWeb path:/LTWeb spec-version:2.5 version:V2.0]] Servlet failed with Exception
    java.lang.IllegalStateException: Failed to retrieve session: Storage is not configured
         at weblogic.servlet.security.internal.SecurityModule.getUserSession(SecurityModule.java:505)
         at weblogic.servlet.security.internal.ServletSecurityManager.checkAccess(ServletSecurityManager.java:81)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2204)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Please help.

    java.lang.RuntimeException: Storage is not configuredThis just means that you are not running any cache servers, and that the WebLogic servers are configured as "storage disabled".
    Normally, with a WebLogic application, the Coherence "storage cluster" is run separately from the WebLogic "application cluster". Basically, you're going to run a number of Coherence "cache servers" with the same Coherence configuration as is used by WebLogic, but specify on the command line that the cache servers are "storage enabled".
    -Dtangosol.coherence.distributed.localstorage=truePeace,
    Cameron Purdy | Oracle Coherence
    http://coherence.oracle.com/

  • Storage is not configured exception

    Hi
    I have 3 boxes running clustered distributed. One of them is supposed to be a dedicated cache server (all the cache data will be stored here). So the other two have the command line option of " -Dtangosol.coherence.distributed.localstorage=false" at the time of startup. But on one of the boxes when I hit my test cache page is giving this exception. THe other box is fine. Can anyone explain the cause of this error.
    Thanks
    Balaji
    Servlet failed with Exception
    java.lang.RuntimeException: Storage is not configured
    I have attached the config file.<br><br> <b> Attachment: </b><br>near-cache-config.xml <br> (*To use this attachment you will need to rename 229.bin to near-cache-config.xml after the download is complete.)

    My initial guess is that the problem is caused by the autostart element not being set to true. The cache server, if it does nothing, has no excuse to start up that cache service, and thus there is no storage enabled. The autostart option makes the cache server initialize that service.
    Please take a look at this document on the Coherence 3.1 Wiki:
    http://wiki.tangosol.com/display/COH31UG/caching-schemes
    Peace.

  • U0093Addn to stocku0094 for putaway strategy u0093 u0093  in storage type not working

    Hi
    It seems that the flag “Addn to stock” for putaway strategy “ “  in the storage type 103 configuration is not working fine as the quantities of the same material with the same batch sent to the same stype 103, and destination bin are not being added. So by running stock report in WM we see several lines with partial quantities instead of only one line with the total quantity in place. Do anybody know how can that be solved? Or what can be the route cause of the issue? Is there any OSS known applicable to fix the problem?
    Thx for your help

    Hi Alba,
    Please check the WM views in MM.
    I've checked:
    (SAP help pushing F1 when the cursor is set on this thick box)
    <i>Indicator: Allow addition to existing stock
    Indicator determining whether a material with particular characteristics may be added to existing stock of the same material with the same characteristics in one storage bin.
    Dependencies
    If the storage type control table does not allow additions to existing stock for this storage type, the indicator set in the material master record is ineffective.</i>
    +
    (SAP help)
    http://help.sap.com/saphelp_46c/helpdata/en/c6/f8449d4afa11d182b90000e829fbfe/frameset.htm
    I think you have to set this indicator!
    BR
    Csbaa

  • WDS "windows setup could not configure Windows on this computer's hardware"

    I use WDS on a 2008 R2 server to deploy Windows 7 Enterprise with SP1 64-bit custom images to a variety of devices within our enterprise. This has worked flawlessly for two years. I have three desktop models and three laptop models (all HP) that share
    a common .wim image. I PXE boot a desktop and choose the image file to deploy. It deploys like magic - until this past week. HP sent us a replacement drive for warranty repair on one computer and on that one PC I started seeing the "Windows setup
    could not configure Windows on this computer's hardware" message after deploying Windows 7. The image deploys just fine, the computer reboots just fine, services are set up, all devices are detected. As soon as "Setup is installing devices" hits
    100% and the "Setup is applying system settings" phase begins, that message appears. After researching the error and pulling the logs that Microsoft's KB 2466753 describes, it seemed that my problem was related to an "Advanced Format"
    disk in that new computer. What I don't get is that they state that this problem was resolved in SP1 (which is what I'm deploying!). So, I started downloading storage drivers to my boot image thinking that maybe a newer driver would fix things. Eventually
    (many drivers later), I got the new hard drive to successfully take my Windows 7 image. Here's where it all went to pieces. No sooner had I corrected the problem on that ONE machine, that none of my other machines would successfully re-image. After
    2 years of flawless operation, now all my computer models exhibit this same error (except the one with the new replacement drive). After recreating my boot image in WDS (being sure to pull it from a Win 7 SP1 DVD) and adding every driver in WDS practically,
    I've gotten all but one particular model to successfully image. No matter what drivers I add (keep in mind, that no drivers have been removed
    from WDS during any of this process), the HP z210 desktops I use will not accept the image. Microsoft suggests flipping BIOS settings but why the heck would I want to do that on every machine when their BIOS settings have never been a problem
    before this? They also say I should only need to download special Intel drivers if my disks are set up with RAID - which they are not. Anyway, as a test, I inserted a standard Windows 7 Enterprise with SP1 64-bit DVD (same one I used to extract my boot.wim)
    and installed Windows on that model with no trouble at all. I only get this error when deploying through WDS. I'm at my wits end and would appreciate any and all help at this point.  Thank you!

    Hi,
    Based on my understanding, the current situation is all other computers deployment is fine but z210 desktops.
    If so, it seems like you have the incorrect driver in WDS for that particular computer z210 desktops you used.
    I suggest install it from WDS without driver for test.
    In addition, you can post this issue in 
    Setup Deployment to check the WDS setting issue.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Windows setup could not configure windows to run on this computer hardware

    As I was trying to reinstall win 7 on my HP Pavilion dv6-7028tx Enterta laptop, upon competition, I was given this message by win7 saying that " windows setup could not configure windows on this computer's hardwear". 
    I did some research on this issue, it appeared to be the lack of SATA drivers on my computer. 
    Could you please advise me which intel SATA driver should I installed to fix the problem?
    If this method doesn’t work, then can you please tell me how to change the BIOS hard disk drive setting to AHCI or IDE?
    Many thanks
    This question was solved.
    View Solution.

    Hi:
    You can't change the drive controller setting in the BIOS on any HP consumer notebook made in the last 5 - 6 years or so.
    See if this works...
    Download the drivers from this link below (first file listed --  64 bit).
    https://downloadcenter.intel.com/Detail_Desc.aspx?​agr=Y&ProdId=2101&DwnldID=23060&keyword=Intel+Rap...
    Extract (copy) the files onto a usb flash drive without any folders.
    With the flash drive and W7 installation media in the machine, boot from the W7 installation media.
    After you select the install now option, select the Drive Options - Advanced menu, then select the Load Driver option.
    You should now see the storage driver files listed.
    If you check the box, it will only include the compatible driver.
    Follow the prompts and hopefully, W7 will install.

  • 10gb dock connector not configuring

    I have a 10gb dock connector ipod and it will not configure to my computer. I have downloaded the latest software to my computer and I know that the USB and firewire points are working correctly.
    Whenever I plug my ipod into the computer it is recognised as a storage device but will not configure when I install itunes or when I try to update it. An error message comes up saying 'can't mount ipod'.
    Also the file symbol with the exclamation mark appears on my ipod itself but I can manage to put it into disk mode. I have tried the apple help with the five R's but I can't restore or reformat my ipod as the computer does not recognise it and it does not appear in itunes.
    Can anyone help please?

    "Can't Mount" issues are typically drive letter conflicts in Windows. Find out what drive letter Windows has assigned to the iPod and, if necessary, change it to a different letter.
    But it sounds like the iPod may need to be restored at some point.

  • Storage unit not disapperar from WM warehouse

    hI Guru's.
    I' ve created and confirmed a TO's correctly.
    These TO's are to change stock between warehouses.
    The problem is that the storage unit not dissapear from source warehouse and the TO is correctly confirmed.
    Anyone can help me??
    thanks a lot.
    Ismael

    If you don't want to see the SUN in receipting warehouse, you have to deacitvate the "SU MANAGEMENT ACTIVE" in the following configuration.
    SPRO>LE>WM>Storage Units>Master Data>Activate storage unit Management Per warehoue Number,
    Choose the receipting warehouse number and de-activate the check box.
    Let me know, how it goes.

  • Enabling CredSSP Authentication Protocol - not configured correctly.

    Hello,
    I am trying to use CredSSP to delegate my user credentials to a server running Windows server 2012 to issue invoke-commands to a Network Storage Location.
    I have tried the following on the client machine:
    Ran these commands on an Administrative PowerShell (Windows 7):
    1) Enable-PSRemoting 
    2) winrm quickconfig
    3) Winrm set winrm/config/client '@{TrustedHosts="*.mydomain.com"}'
    4) Enable-WSManCredSSP -Role Client -Delegate *.mydomain.com
    5) PS C:\Windows\system32> Get-WSManCredSSP
        The machine is not configured to allow delegating fresh credentials.
        This computer is not configured to receive credentials from a remote client computer.
    Since it did not succeed I looked in the settings:
    1) Active Directory User and Computer -> [my computer] -> properties -> delegation tab. Changed "Do not trust this computer for delegation" to "Trust this computer for delegation to any service (Kerberos only).
    2) Local Group Policies Editor -> Computer Configuration -> Administrative Templates -> System -> Credentials Delegation
             - Double-Click the setting "Allow Delegating Fresh Credentials" made sure that it is enabled and click "Show".
    There              was WSMAN/*.mydomain.com in the list. 
             - I also enabled the setting "Allow Delegating Fresh Credentials with NTLM-only Server Authentication" as well but it  
             did not change the outcome. 
    3)  Local Group Policies Editor -> Computer Configuration
    -> Administrative Templates -> Windows Components ->      Windows Remote Management (WinrRM) -> WinRM client
             - Enabled the setting, "Allow CredSSP authentication".
    4)  Computer Configuration -> Windows Settings ->
    User Rights Assignment
             - Double-Click  the setting "Enable computer and user accounts to be trusted for delagation"
             - Added my user and computer to the delegation list.
    I re-ran the commands from above but still got the same output. 
    Is there a setting that I am missing? Is there any suggestion to change any settings? or just any ideas with regards to getting it to configure correctly.
    Thanks!

    Hello,
    I am trying to use CredSSP to delegate my user credentials to a server running Windows server 2012 to issue invoke-commands to a Network Storage Location.
    I have tried the following on the client machine:
    Ran these commands on an Administrative PowerShell (Windows 7):
    1) Enable-PSRemoting 
    2) winrm quickconfig
    3) Winrm set winrm/config/client '@{TrustedHosts="*.mydomain.com"}'
    4) Enable-WSManCredSSP -Role Client -Delegate *.mydomain.com
    5) PS C:\Windows\system32> Get-WSManCredSSP
        The machine is not configured to allow delegating fresh credentials.
        This computer is not configured to receive credentials from a remote client computer.
    Since it did not succeed I looked in the settings:
    1) Active Directory User and Computer -> [my computer] -> properties -> delegation tab. Changed "Do not trust this computer for delegation" to "Trust this computer for delegation to any service (Kerberos only).
    2) Local Group Policies Editor -> Computer Configuration -> Administrative Templates -> System -> Credentials Delegation
             - Double-Click the setting "Allow Delegating Fresh Credentials" made sure that it is enabled and click "Show".
    There              was WSMAN/*.mydomain.com in the list. 
             - I also enabled the setting "Allow Delegating Fresh Credentials with NTLM-only Server Authentication" as well but it  
             did not change the outcome. 
    3)  Local Group Policies Editor -> Computer Configuration
    -> Administrative Templates -> Windows Components ->      Windows Remote Management (WinrRM) -> WinRM client
             - Enabled the setting, "Allow CredSSP authentication".
    4)  Computer Configuration -> Windows Settings ->
    User Rights Assignment
             - Double-Click  the setting "Enable computer and user accounts to be trusted for delagation"
             - Added my user and computer to the delegation list.
    I re-ran the commands from above but still got the same output. 
    Is there a setting that I am missing? Is there any suggestion to change any settings? or just any ideas with regards to getting it to configure correctly.
    Thanks!
    See
    Secrets of Powershell Remoting book by Don Jones
    Sam Boutros, Senior Consultant, Software Logic, KOP, PA http://superwidgets.wordpress.com (Please take a moment to Vote as Helpful and/or Mark as Answer, where applicable) _________________________________________________________________________________
    Powershell: Learn it before it's an emergency http://technet.microsoft.com/en-us/scriptcenter/powershell.aspx http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx

  • ACS 5.3 Occurred At: Tue Sep 10 04:00:00 IST 2013 Cause: Purge Configuration Repository not configured

    hi team,
    I am runing ACS 5.3 version and i am getting error messages like below
    System Alarm [Database Purging]
    Mon Sep 09 04:00:00
    Incremental Backup Not Configured
    System Alarm [Database Purging]
    Sun Sep 08 04:00:00
    Purge Configuration Repository not configured
    Cause:
    Purge Configuration Repository not configured
    Details:
    Configure Remote Repository under Purge Configuration which is used to take a backup of data before purge.
    Cause:
    Incremental Backup Not Configured
    Details:
    Incremental backup is not configured. Configuring incremental  backup is necessary to make the database purge successful. This will  help to avoid disk space issues. View database Size is 1.27GB and size  it occupies on the harddisk is 1.22GB.
    Could any one provide solution to overcome this issue.

    Hi,
    I guess I've seen this before even we've repository and incremental backup configured fine on ACS. One reason could be for the above alarms is the configuration on the GUI might not have taken over completely in the database and alarms will trigger due to that. Please restart the services of the ACS or reload the ACS in off production hours.
    acs stop
    acs start
    OR
    reload
    ~BR
    Jatin Katyal
    **Do rate helpful posts**

  • Web service security not configured

    Hi All,
    We have new PI system 7.1 ehp1, as an initial step installation is done including post installation.I have a task of checking if
    everything is in place as the same have to be confirmed to the team which did the installation.
    When i open RWB , i could see a message with warning "WS security not configured". aprat from this everything seems to be
    fine.
    Can anyone guide me on how to set us WS security and what is the use ,importance of having that configured?

    Hi,
    I dont think you have to configure Message level security configuration manually, i have done instaltion of PI 7.1,i have not seen any step like this.
    by default it will come after completion of postinstaltion succesfully.
    my advice better to move thread to SAP NetWeaver Administartion forums,you may get good replies./
    Regards.,
    Raj

  • Storage location and post.chge storage location not in the same warehouse

    Hi All,
    We have HU managed Storage Location, and in this Storage Location we have SUT managed Warehouse, Now while Goods Receipt we have to create inbound delivery, which is working fine and i can see my stock in Goods receipt area,, later on whicle creating Transfer Order to putaway in a bin i have a error message "Storage location and post.chge storage location not in the same warehouse" please help me with this error message. Thank you for all your inputs.
    Regards
    Samuel

    Hi Nagesh,
    Thank you for the input. I am receiving Stock from vendor and while creating Inbound delivery i created the Handling Unit and also packed it and i could also post it (PG Receipt). Now when i am creating TO i have that error message. The Storage Location where i am receiving is 9001and i have also maintained the partner Storage location,,, its like this Plant(1000)-SLoc(9001)-Partner SLoc(9002).... now the Storage Location 9002 is not HU managed,, the reason i gave this Storage location is, initially i gave 9001, but system said "Storage Location 9001 and 9001 must have different management systems". So now kindly tell me what is the purpose of the partner Storage location and which storage location should i give, as my partner Storage location across "1000-9001-????" thank you again for ur inputs.
    Regards,
    Samuel

  • AirPort Setup Assistant says my Airport Card is "not configured"

    I'm trying to install an AirPort Express Base Station that I got for xmas.
    I'm using a MacBook Pro 17" with OS X 10.5.1, and my goal with the AirPort Express is to plug it into a stereo to play iTunes wirelessly.
    By the way I use AirPort on my MacBook every day, all the time, for internet access through another base station which is plugged into the internet.
    Okay, so when I launch the AirPort Setup Assistant and hit the continue button it immediately tells me "AirPort card not configured. In order to use the AirPort Setup Assitant your AirPort card must be enabled and AirPort needs to be turned on and set to use DHCP. Click OK if you would like to change these settings, or Skip if you would like to configure AirPort Base Stations using ethernet."
    After I click OK it tells me:
    "AirPort card error. There was an error communicating with your AirPort card. Please make sure it is installed properly and try the AirPort Setup Assistant again."
    Obviously my AirPort card is working fine, or I wouldn't be able to post on this forum!
    When I open Network Preferences I see AirPort is connected to my home network. In the Advanced Settings, on the TCP/IP tab I see that "Configure IPv4" is set to "Using DHCP". And "Configure IPv6" is set to "Automatically" (Not that I have any idea what these two things mean!)
    Maybe someone on this forum is much smarter than me with this stuff? Ack!

    That solved it! Thank you very much.
    Apple, if you're listening, it would be nice if something in the install flow had checked with my OS or something to see if I still needed to install what was on the CD. All I did was open the package (which was purchased in December) and follow directions, and wound up with a problem not covered in the documentation.
    Thanks to Tesserax I'm still a happy customer.
    Send Tesserax a giftcard!

Maybe you are looking for

  • How to use NAS as a library.

    I have all my media on a NAS drive and want to access it from 2 PCs running windows 8. Up until now if I've been using one PC as my "MAIN" system. using it to add ne media. I'd then copy the library files across to my other PC and ergo a carbon copy

  • Exchange Server 2010 SP2-Upgrade

    I am currently preparing my SBS 2011 for a migration to Server 2012 R2 with Exchange 2013 installed. On my SBS 2011 I ran the Best Practices Analyzer 1.3 and was informed to upgrade my Exchange 2010 to SP2. When I run the update, it checks if all req

  • Incomplete items in Catalog. Only completed items were transferred.

    Hi all, i have a problem related to Shopping Cart. When I select an item from  my catalog in order to add it to my Shopping Cart, I have that error message:"Incomplete items in Catalog. Only completed items were transferred." I checked UOM but there

  • Weblogic.refresh meet exception(Jsp refresh)

              Hi all,           I intend to make my new JSP files in effect immediately,so I used "weblogic.refresh"           utility to implement it. The command line is showed below. I think the call to           weblogic.refresh successful. But from

  • Which PowerSuply is better and more compatible : Enermax or Targan ?

    Hi ! I am going to buy a PowerSuply , I have AMD64 3000+ , K8N Neo Platinum , 512 MB DDR Kingston HyperX CL2 ... So which PowerSuply is more compatible than the other : The Targan or Enermax ? Thanks for any suggestion !