Unable to load the pof configuration

Hi all,
Im trying with pof serialization but unable to load the pof configuration and im getting the following error:
2013-06-12 14:41:49,582 [catalina-exec-1] ERROR com.distcachedemo.KnCacheDemoServlet - doPost(HttpServletRequest, HttpServletResponse)::
(Wrapped) java.io.NotSerializableException: com.distcachedemo.dto.KnMasterListResponse
    at com.tangosol.util.ExternalizableHelper.toBinary(ExternalizableHelper.java:215)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$ConverterValueToBinary.convert(PartitionedCache.CDB:3)
    at com.tangosol.util.ConverterCollections$ConverterMap.put(ConverterCollections.java:1674)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$ViewMap.put(PartitionedCache.CDB:1)
    at com.tangosol.coherence.component.util.SafeNamedCache.put(SafeNamedCache.CDB:1)
    at com.distcachedemo.KnCorpContactInfoControllerDemo.getMasterList(KnCorpContactInfoControllerDemo.java:183)
    at com.distcachedemo.KnCacheDemoServlet.doPost(KnCacheDemoServlet.java:60)
Please let me know what is that i need to correct in the below:
NOTE: I have also tried Proxy Scheme with serializer and it too did not work
          From the coherence logs i havent found the log of POF configuration being loaded.
Configuration used:
============
cache-config.xml::
<?xml version="1.0"?>
<cache-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns="http://xmlns.oracle.com/coherence/coherence-cache-config"
   xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-cache-config coherence-cache-config.xsd">
   <caching-scheme-mapping>
      <cache-mapping>
         <cache-name>nspoc*</cache-name>
         <scheme-name>distributed-ns</scheme-name>
      </cache-mapping>
     <cache-mapping>
         <cache-name>poc*</cache-name>
         <scheme-name>distributed</scheme-name>
      </cache-mapping>
   </caching-scheme-mapping>
<caching-schemes>
      <distributed-scheme>
         <scheme-name>distributed-ns</scheme-name>
         <service-name>DistributedCache-ns</service-name>
         <thread-count>4</thread-count>
         <request-timeout>60s</request-timeout>
         <backing-map-scheme>
                    <external-scheme>
                        <nio-memory-manager>
                            <initial-size>1MB</initial-size>
                            <maximum-size>100MB</maximum-size>
                        </nio-memory-manager>
                        <high-units>100</high-units>
                        <unit-calculator>BINARY</unit-calculator>
                        <unit-factor>1048576</unit-factor>
                    </external-scheme>
         </backing-map-scheme>
         <autostart>true</autostart>
      </distributed-scheme>
      <distributed-scheme>
         <scheme-name>distributed</scheme-name>
         <service-name>DistributedCache</service-name>
         <thread-count>4</thread-count>
         <request-timeout>60s</request-timeout>
         <backing-map-scheme>
            <read-write-backing-map-scheme>
                <internal-cache-scheme>
                    <external-scheme>
                        <nio-memory-manager>
                            <initial-size>1MB</initial-size>
                            <maximum-size>100MB</maximum-size>
                        </nio-memory-manager>
                        <high-units>100</high-units>
                        <unit-calculator>BINARY</unit-calculator>
                        <unit-factor>1048576</unit-factor>
                    </external-scheme>
              </internal-cache-scheme>
              <cachestore-scheme>
                <class-scheme>
                    <class-factory-name>com.distcachedemo.KnPocCacheStoreFactory</class-factory-name>
                    <method-name>loadCacheStore</method-name>
                    <init-params>
                      <init-param>
                        <param-type>java.lang.String</param-type>
                        <param-value>{cache-name}</param-value>
                      </init-param>
                    </init-params>
                </class-scheme>
               </cachestore-scheme>
            </read-write-backing-map-scheme>
         </backing-map-scheme>
         <autostart>true</autostart>
      </distributed-scheme>
      <local-scheme>
         <scheme-name>LocalSizeLimited</scheme-name>
         <eviction-policy>LRU</eviction-policy>
         <high-units>5000</high-units>
         <expiry-delay>1h</expiry-delay>
      </local-scheme>
   </caching-schemes>
</cache-config>
=================
tangosol-coherence-override.xml:
<?xml version='1.0'?>
<coherence xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns="http://xmlns.oracle.com/coherence/coherence-operational-config"
   xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-operational-config coherence-operational-config.xsd">
   <cluster-config>
      <member-identity>
         <cluster-name system-property="tangosol.coherence.cluster">kn_test</cluster-name>
      </member-identity>
      <unicast-listener>
         <well-known-addresses>
            <socket-address id="719">
               <address>192.168.7.19</address>
               <port>8088</port>
            </socket-address>
            <socket-address id="3246">
               <address>192.168.3.246</address>
               <port>8088</port>
            </socket-address>
            <socket-address id="77">
               <address>192.168.7.7</address>
               <port>8088</port>
            </socket-address>
         </well-known-addresses>
         <address system-property="tangosol.coherence.localhost">192.168.7.7</address>
         <port system-property="tangosol.coherence.localport">8088</port>
         <port-auto-adjust system-property="tangosol.coherence.localport.adjust">true</port-auto-adjust> 
      </unicast-listener>
<serializers>
      <serializer id="java">
         <class-name>com.tangosol.io.DefaultSerializer</class-name>
      </serializer>
      <serializer id="pof">
         <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
        <init-params>
            <init-param>
               <param-type>String</param-type>
               <param-value>pof-config.xml</param-value>
            </init-param>
         </init-params>
      </serializer>
   </serializers>
   </cluster-config>
   <configurable-cache-factory-config>
      <init-params>
         <init-param>
            <param-type>java.lang.String</param-type>
            <param-value system-property="tangosol.coherence.cacheconfig">cache-config.xml</param-value>
         </init-param>
      </init-params>
   </configurable-cache-factory-config>
</coherence>
======================
pof-config.xml:
<?xml version='1.0'?>
<pof-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns="http://xmlns.oracle.com/coherence/coherence-pof-config"
   xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-pof-config
   coherence-pof-config.xsd">
   <user-type-list>
      <include>coherence-pof-config.xml</include>
      <user-type>
        <type-id>1001</type-id>
        <class-name>com.distcachedemo.dto.KnMasterListResponse</class-name>
      </user-type>
   </user-type-list>
</pof-config>
============
Java Code:
package com.distcachedemo.dto;
import com.tangosol.io.pof.PofReader;
import com.tangosol.io.pof.PofWriter;
import com.tangosol.io.pof.PortableObject;
import java.io.IOException;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
public class KnMasterListResponse implements PortableObject {
  private static final long serialVersionUID = -9114918011531875153L;
  private KnHierarchyListDTO hierarchyListDTO;
  private Map subsMap;
  public KnHierarchyListDTO getHierarchyListDTO() {
  return hierarchyListDTO;
  public void setHierarchyListDTO(KnHierarchyListDTO hierarchyListDTO) {
  this.hierarchyListDTO = hierarchyListDTO;
  public Map getSubsMap() {
  return subsMap;
  public void setSubsMap(Map subsMap) {
  this.subsMap = subsMap;
  public String toString() {
  StringBuilder strBuffer = new StringBuilder(100);
  if (hierarchyListDTO.getHierachyDTOs() != null) {
  strBuffer.append(" hierarchyListDTO - ").append(hierarchyListDTO.getHierachyDTOs().size());
  if (subsMap != null) {
  strBuffer.append(" subsMap - ").append(subsMap.size());
  return strBuffer.toString();
  @Override
  public void readExternal(PofReader pofReader) throws IOException {
  subsMap = pofReader.readMap(0, new HashMap<>());
  hierarchyListDTO = (KnHierarchyListDTO) pofReader.readObject(1);
  @Override
  public void writeExternal(PofWriter pofWriter) throws IOException {
  pofWriter.writeMap(0, subsMap);
  pofWriter.writeObject(1, hierarchyListDTO);
Thanks,
Ravi Shanker

Hi Ravi,
it is generally recommended that all new classes support POF in this or that way. This or that means either implementing PortableObject or to provide a PofSerializer implementation to be able to optimally serialize their state. Obviously it is not always possible but you should try to achieve that.
If it is not possible, then you can still convert them to byte[] or String by some other means. If that other means is Java serialization, then Coherence provides a different PofContext implementation (SafeConfigurablePofContext) which you can use instead of ConfigurablePofContext and which is able to fall back to Java serialization for Serializable classes (and also for types not registered in POF configuration but which implement PortableObject). However it is recommended that SafeConfigurablePofContext is not used in production, typically because Java serialization is generally inferior to POF serialization when looking at performance and serialized size, and SafeConfigurablePofContext does not force you to do the right thing, and finally because Java serialization is not platform-independent whereas POF is.
Best regards,
Rob

Similar Messages

  • Unable to load Custom POF Configuration

    I successfully downloaded Coherence 3.7 and able to run the from .Net client with default Coherence.POF.Config file. As soon as I'm changing the POF file configuration to custom type, I'm unable to run the Coherence server. And finding the following error. Any Help is appreciated.
    2014-07-25 18:31:07.130/4.930 Oracle Coherence GE 3.7.1.0 <Info> (thread=Cluster
    , member=1): Loaded POF configuration from "jar:file:/C:/OracleCoherence/coheren
    ce/lib/coherence.jar!/pof-config.xml"
    2014-07-25 18:31:07.147/4.947 Oracle Coherence GE 3.7.1.0 <Info> (thread=Cluster
    , member=1): Loaded included POF configuration from "jar:file:/C:/OracleCoherenc
    e/coherence/lib/coherence.jar!/coherence-pof-config.xml"
    2014-07-25 18:31:07.194/4.994 Oracle Coherence GE 3.7.1.0 <D5> (thread=Invocatio
    n:Management, member=1): Service Management joined the cluster with senior servi
    ce member 1
    2014-07-25 18:31:07.401/5.201 Oracle Coherence GE 3.7.1.0 <D5> (thread=Distribut
    edCache, member=1): Service DistributedCache joined the cluster with senior serv
    ice member 1
    Exception in thread "main" (Wrapped: error creating class "com.tangosol.io.pof.C
    onfigurablePofContext") (Wrapped: Failed to load POF configuration: Mypof-config
    .xml) java.io.IOException: The POF configuration is missing: "Mypof-config.xml",
    loader=sun.misc.Launcher$AppClassLoader@1b90b39
            at com.tangosol.io.ConfigurableSerializerFactory.createSerializer(Config
    urableSerializerFactory.java:46)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.i
    nstantiateSerializer(Service.CDB:1)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.e
    nsureSerializer(Service.CDB:32)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.e
    nsureSerializer(Service.CDB:4)
            at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.ProxyService.configure(ProxyService.CDB:101)
            at com.tangosol.coherence.component.util.SafeService.startService(SafeSe
    rvice.CDB:17)
            at com.tangosol.coherence.component.util.SafeService.ensureRunningServic
    e(SafeService.CDB:27)
            at com.tangosol.coherence.component.util.SafeService.start(SafeService.C
    DB:14)
            at com.tangosol.net.DefaultConfigurableCacheFactory.ensureServiceInterna
    l(DefaultConfigurableCacheFactory.java:1105)
            at com.tangosol.net.DefaultConfigurableCacheFactory.ensureService(Defaul
    tConfigurableCacheFactory.java:937)
            at com.tangosol.net.DefaultCacheServer.startServices(DefaultCacheServer.
    java:81)
            at com.tangosol.net.DefaultCacheServer.intialStartServices(DefaultCacheS
    erver.java:250)
            at com.tangosol.net.DefaultCacheServer.startAndMonitor(DefaultCacheServe
    r.java:55)
            at com.tangosol.net.DefaultCacheServer.main(DefaultCacheServer.java:197)
    Caused by: (Wrapped: Failed to load POF configuration: Mypof-config.xml) java.io
    .IOException: The POF configuration is missing: "Mypof-config.xml", loader=sun.m
    isc.Launcher$AppClassLoader@1b90b39
            at com.tangosol.util.Base.ensureRuntimeException(Base.java:288)
            at com.tangosol.run.xml.XmlHelper.loadResourceInternal(XmlHelper.java:34
    1)
            at com.tangosol.run.xml.XmlHelper.loadFileOrResource(XmlHelper.java:283)
            at com.tangosol.io.pof.ConfigurablePofContext.createPofConfig(Configurab
    lePofContext.java:835)
            at com.tangosol.io.pof.ConfigurablePofContext.initialize(ConfigurablePof
    Context.java:797)
            at com.tangosol.io.pof.ConfigurablePofContext.setContextClassLoader(Conf
    igurablePofContext.java:322)
            at com.tangosol.io.ConfigurableSerializerFactory.createSerializer(Config
    urableSerializerFactory.java:42)
            ... 13 more
    Caused by: java.io.IOException: The POF configuration is missing: "Mypof-config.
    xml", loader=sun.misc.Launcher$AppClassLoader@1b90b39
            at com.tangosol.run.xml.XmlHelper.loadResourceInternal(XmlHelper.java:31
    8)
            ... 18 more

    Please find the total log on the Cache-server.cmd
      Service=ClusterService{Name=Cluster, State=(SERVICE_STARTED, STATE_ANNOUNCE),
    Id=0, Version=3.7.1}
      ToMemberSet=null
      NotifySent=false
      LastRecvTimestamp=none
      MemberSet=MemberSet(Size=1, ids=[1])
    Terminate batch job (Y/N)? Y
    C:\OracleCoherence\coherence\bin>cache-server
    java version "1.7.0_60"
    Java(TM) SE Runtime Environment (build 1.7.0_60-b19)
    Java HotSpot(TM) Client VM (build 24.60-b09, mixed mode, sharing)
    2014-08-05 13:25:25.753/0.327 Oracle Coherence 3.7.1.0 <Info> (thread=main, memb
    er=n/a): Loaded operational configuration from "jar:file:/C:/OracleCoherence/coh
    erence/lib/coherence.jar!/tangosol-coherence.xml"
    2014-08-05 13:25:25.816/0.390 Oracle Coherence 3.7.1.0 <Info> (thread=main, memb
    er=n/a): Loaded operational overrides from "jar:file:/C:/OracleCoherence/coheren
    ce/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2014-08-05 13:25:25.816/0.390 Oracle Coherence 3.7.1.0 <D5> (thread=main, member
    =n/a): Optional configuration override "/tangosol-coherence-override.xml" is not
    specified
    2014-08-05 13:25:25.816/0.390 Oracle Coherence 3.7.1.0 <D5> (thread=main, member
    =n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 3.7.1.0 Build 27797
    Grid Edition: Development mode
    Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
    2014-08-05 13:25:25.972/0.546 Oracle Coherence GE 3.7.1.0 <Info> (thread=main, m
    ember=n/a): Loaded cache configuration from "file:/C:/OracleCoherence/coherence/
    lib/cache-config.xml"; this document does not refer to any schema definition and
    has not been validated.
    2014-08-05 13:25:26.440/1.014 Oracle Coherence GE 3.7.1.0 <Warning> (thread=main
    , member=n/a): Local address "127.0.0.1" is a loopback address; this cluster nod
    e will not connect to nodes located on different machines
    2014-08-05 13:25:26.830/1.404 Oracle Coherence GE 3.7.1.0 <D4> (thread=main, mem
    ber=n/a): TCMP bound to /127.0.0.1:8088 using SystemSocketProvider
    2014-08-05 13:25:30.558/5.132 Oracle Coherence GE 3.7.1.0 <Info> (thread=Cluster
    , member=n/a): Created a new cluster "cluster:0xFCC1" with Member(Id=1, Timestam
    p=2014-08-05 13:25:27.251, Address=127.0.0.1:8088, MachineId=45419, Location=sit
    e:,process:18420, Role=CoherenceServer, Edition=Grid Edition, Mode=Development,
    CpuCount=2, SocketCount=2) UID=0x7F00000100000147A52A6E93B16B1F98
    2014-08-05 13:25:30.558/5.132 Oracle Coherence GE 3.7.1.0 <Info> (thread=main, m
    ember=n/a): Started cluster Name=cluster:0xFCC1
    Group{Address=224.3.7.0, Port=37000, TTL=0}
    MasterMemberSet(
      ThisMember=Member(Id=1, Timestamp=2014-08-05 13:25:27.251, Address=127.0.0.1:8
    088, MachineId=45419, Location=site:,process:18420, Role=CoherenceServer)
      OldestMember=Member(Id=1, Timestamp=2014-08-05 13:25:27.251, Address=127.0.0.1
    :8088, MachineId=45419, Location=site:,process:18420, Role=CoherenceServer)
      ActualMemberSet=MemberSet(Size=1
    Member(Id=1, Timestamp=2014-08-05 13:25:27.251, Address=127.0.0.1:8088, Mach
    ineId=45419, Location=site:,process:18420, Role=CoherenceServer)
      MemberId|ServiceVersion|ServiceJoined|MemberState
    1|3.7.1|2014-08-05 13:25:30.558|JOINED
      RecycleMillis=1200000
      RecycleSet=MemberSet(Size=0
    TcpRing{Connections=[]}
    IpMonitor{AddressListSize=0}
    2014-08-05 13:25:30.620/5.194 Oracle Coherence GE 3.7.1.0 <Error> (thread=Cluste
    r, member=1): StopRunning ClusterService{Name=Cluster, State=(SERVICE_STARTED, S
    TATE_JOINED), Id=0, Version=3.7.1, OldestMemberId=1} due to unhandled exception:
    Exception in thread "main" (Wrapped: Failed to start Service "Management" (Servi
    ceState=SERVICE_STOPPED)) java.lang.RuntimeException: Failed to start Service "C
    luster" (ServiceState=SERVICE_STOPPED, STATE_JOINED)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.s
    tart(Service.CDB:38)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.start(Grid.CDB:6)
    at com.tangosol.coherence.component.util.SafeService.startService(SafeSe
    rvice.CDB:39)
    at com.tangosol.coherence.component.util.SafeService.ensureRunningServic
    e(SafeService.CDB:27)
    at com.tangosol.coherence.component.util.SafeService.start(SafeService.C
    DB:14)
    at com.tangosol.coherence.component.net.management.Connector.startServic
    e(Connector.CDB:58)
    at com.tangosol.coherence.component.net.management.gateway.Remote.regist
    erLocalModel(Remote.CDB:10)
    at com.tangosol.coherence.component.net.management.Gateway.register(Gate
    way.CDB:6)
    at com.tangosol.coherence.component.util.SafeCluster.ensureRunningCluste
    r(SafeCluster.CDB:46)
    at com.tangosol.coherence.component.util.SafeCluster.start(SafeCluster.C
    DB:2)
    at com.tangosol.net.CacheFactory.ensureCluster(CacheFactory.java:427)
    at com.tangosol.net.DefaultConfigurableCacheFactory.ensureServiceInterna
    l(DefaultConfigurableCacheFactory.java:968)
    at com.tangosol.net.DefaultConfigurableCacheFactory.ensureService(Defaul
    tConfigurableCacheFactory.java:937)
    at com.tangosol.net.DefaultCacheServer.startServices(DefaultCacheServer.
    java:81)
    at com.tangosol.net.DefaultCacheServer.intialStartServices(DefaultCacheS
    erver.java:250)
    at com.tangosol.net.DefaultCacheServer.startAndMonitor(DefaultCacheServe
    r.java:55)
    at com.tangosol.net.DefaultCacheServer.main(DefaultCacheServer.java:197)
    Caused by: java.lang.RuntimeException: Failed to start Service "Cluster" (Servic
    eState=SERVICE_STOPPED, STATE_JOINED)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.w
    aitAcceptingClients(Service.CDB:12)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.poll(Grid.CDB:9)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.poll(Grid.CDB:11)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.ClusterService.ensureService(ClusterService.CDB:15)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.ClusterService.doServiceJoining(ClusterService.CDB:47)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.onServiceState(Grid.CDB:23)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.s
    etServiceState(Service.CDB:8)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.setServiceState(Grid.CDB:21)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid$NotifyStartup.onReceived(Grid.CDB:3)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.onMessage(Grid.CDB:34)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.onNotify(Grid.CDB:33)
    at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    at java.lang.Thread.run(Unknown Source)
    2014-08-05 13:25:30.620/5.194 Oracle Coherence GE 3.7.1.0 <Error> (thread=Cluste
    r, member=1):
    (Wrapped: Failed to load POF configuration: C:\OracleCoherence\coherence\lib\Myp
    ofconfig.xml) java.io.IOException: The POF configuration is missing: "C:\OracleC
    oherence\coherence\lib\Mypofconfig.xml", loader=sun.misc.Launcher$AppClassLoader
    @1b90b39
    at com.tangosol.util.Base.ensureRuntimeException(Base.java:288)
    at com.tangosol.run.xml.XmlHelper.loadResourceInternal(XmlHelper.java:34
    1)
    at com.tangosol.run.xml.XmlHelper.loadFileOrResource(XmlHelper.java:283)
    at com.tangosol.io.pof.ConfigurablePofContext.createPofConfig(Configurab
    lePofContext.java:835)
    at com.tangosol.io.pof.ConfigurablePofContext.initialize(ConfigurablePof
    Context.java:797)
    at com.tangosol.io.pof.ConfigurablePofContext.setContextClassLoader(Conf
    igurablePofContext.java:322)
    at com.tangosol.util.ExternalizableHelper.ensureSerializer(Externalizabl
    eHelper.java:291)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.e
    nsureSerializer(Service.CDB:28)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.e
    nsureSerializer(Service.CDB:4)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.w
    riteObject(Service.CDB:1)
    at com.tangosol.coherence.component.net.Message.writeObject(Message.CDB:
    1)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.ClusterService$ServiceJoining.write(ClusterService.CDB:8)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.serializeMessage(Grid.CDB:14)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.packetPro
    cessor.PacketPublisher.packetizeMessage(PacketPublisher.CDB:17)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.packetPro
    cessor.PacketPublisher$InQueue.add(PacketPublisher.CDB:11)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.dispatchMessage(Grid.CDB:62)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.post(Grid.CDB:31)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.send(Grid.CDB:1)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.ClusterService$ServiceJoinRequest.proceed(ClusterService.CDB:35)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.ClusterService.validateNewService(ClusterService.CDB:88)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.ClusterService$ServiceJoinRequest.onReceived(ClusterService.CDB:66)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.onMessage(Grid.CDB:34)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.onNotify(Grid.CDB:33)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.ClusterService.onNotify(ClusterService.CDB:3)
    at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: The POF configuration is missing: "C:\OracleCohe
    rence\coherence\lib\Mypofconfig.xml", loader=sun.misc.Launcher$AppClassLoader@1b
    90b39
    at com.tangosol.run.xml.XmlHelper.loadResourceInternal(XmlHelper.java:31
    8)
    ... 24 more
    2014-08-05 13:25:30.620/5.194 Oracle Coherence GE 3.7.1.0 <D5> (thread=Cluster,
    member=n/a): Service Cluster left the cluster
    2014-08-05 13:25:30.620/5.194 Oracle Coherence GE 3.7.1.0 <Error> (thread=Invoca
    tion:Management, member=n/a): Terminating InvocationService due to unhandled exc
    eption: java.lang.RuntimeException
    2014-08-05 13:25:30.620/5.194 Oracle Coherence GE 3.7.1.0 <Error> (thread=Invoca
    tion:Management, member=n/a):
    java.lang.RuntimeException: Failed to start Service "Cluster" (ServiceState=SERV
    ICE_STOPPED, STATE_JOINED)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.w
    aitAcceptingClients(Service.CDB:12)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.poll(Grid.CDB:9)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.poll(Grid.CDB:11)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.ClusterService.ensureService(ClusterService.CDB:15)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.ClusterService.doServiceJoining(ClusterService.CDB:47)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.onServiceState(Grid.CDB:23)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.s
    etServiceState(Service.CDB:8)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.setServiceState(Grid.CDB:21)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid$NotifyStartup.onReceived(Grid.CDB:3)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.onMessage(Grid.CDB:34)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.onNotify(Grid.CDB:33)
    at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    at java.lang.Thread.run(Unknown Source)
    2014-08-05 13:25:30.620/5.194 Oracle Coherence GE 3.7.1.0 <D5> (thread=Invocatio
    n:Management, member=n/a): Service Management left the cluster
    2014-08-05 13:25:30.636/5.210 Oracle Coherence GE 3.7.1.0 <Error> (thread=main,
    member=n/a): Error while starting service "Management": (Wrapped: Failed to star
    t Service "Management" (ServiceState=SERVICE_STOPPED)) java.lang.RuntimeExceptio
    n: Failed to start Service "Cluster" (ServiceState=SERVICE_STOPPED, STATE_JOINED
    at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.s
    tart(Service.CDB:38)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.start(Grid.CDB:6)
    at com.tangosol.coherence.component.util.SafeService.startService(SafeSe
    rvice.CDB:39)
    at com.tangosol.coherence.component.util.SafeService.ensureRunningServic
    e(SafeService.CDB:27)
    at com.tangosol.coherence.component.util.SafeService.start(SafeService.C
    DB:14)
    at com.tangosol.coherence.component.net.management.Connector.startServic
    e(Connector.CDB:58)
    at com.tangosol.coherence.component.net.management.gateway.Remote.regist
    erLocalModel(Remote.CDB:10)
    at com.tangosol.coherence.component.net.management.Gateway.register(Gate
    way.CDB:6)
    at com.tangosol.coherence.component.util.SafeCluster.ensureRunningCluste
    r(SafeCluster.CDB:46)
    at com.tangosol.coherence.component.util.SafeCluster.start(SafeCluster.C
    DB:2)
    at com.tangosol.net.CacheFactory.ensureCluster(CacheFactory.java:427)
    at com.tangosol.net.DefaultConfigurableCacheFactory.ensureServiceInterna
    l(DefaultConfigurableCacheFactory.java:968)
    at com.tangosol.net.DefaultConfigurableCacheFactory.ensureService(Defaul
    tConfigurableCacheFactory.java:937)
    at com.tangosol.net.DefaultCacheServer.startServices(DefaultCacheServer.
    java:81)
    at com.tangosol.net.DefaultCacheServer.intialStartServices(DefaultCacheS
    erver.java:250)
    at com.tangosol.net.DefaultCacheServer.startAndMonitor(DefaultCacheServe
    r.java:55)
    at com.tangosol.net.DefaultCacheServer.main(DefaultCacheServer.java:197)
    Caused by: java.lang.RuntimeException: Failed to start Service "Cluster" (Servic
    eState=SERVICE_STOPPED, STATE_JOINED)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.w
    aitAcceptingClients(Service.CDB:12)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.poll(Grid.CDB:9)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.poll(Grid.CDB:11)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.ClusterService.ensureService(ClusterService.CDB:15)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.g
    rid.ClusterService.doServiceJoining(ClusterService.CDB:47)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.onServiceState(Grid.CDB:23)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.Service.s
    etServiceState(Service.CDB:8)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.setServiceState(Grid.CDB:21)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid$NotifyStartup.onReceived(Grid.CDB:3)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.onMessage(Grid.CDB:34)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.G
    rid.onNotify(Grid.CDB:33)
    at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    at java.lang.Thread.run(Unknown Source)
    C:\OracleCoherence\coherence\bin>
    And the Cache-Server content is
    @echo off
    @rem This will start a cache server
    setlocal
    :config
    @rem specify the Coherence installation directory
    set coherence_home=%~dp0\..
    @rem specify the JVM heap size
    set memory=512m
    set java_home=
    :start
    if not exist "%coherence_home%\lib\coherence.jar" goto instructions
    :launch
    if "%1"=="-jmx" (
        set jmxproperties=-Dcom.sun.management.jmxremote -Dtangosol.coherence.management=all -Dtangosol.coherence.management.remote=true
        shift 
    set java_opts=-Xms%memory% -Xmx%memory% %jmxproperties%
    java -server -showversion -Dtangosol.coherence.ttl=0 -Dtangosol.coherence.localhost=127.0.0.1 -Dtangosol.pof.enabled=true -
    Dtangosol.coherence.cacheconfig=C:\OracleCoherence\coherence\lib\cache-config.xml -Dtangosol.pof.config=C:\OracleCoherence\coherence\lib\Mypofconfig.xml
    %java_opts%  -cp "%coherence_home%\lib\coherence.jar" com.tangosol.net.DefaultCacheServer %1
    goto exit
    :instructions
    echo Usage:
    echo   ^<coherence_home^>\bin\cache-server.cmd
    goto exit
    :exit
    endlocal
    @echo on

  • Unable to load the kernel module 'nvidia.ko' [SOLVED]

    After my most recent kernel upgrade, I can't get my GUI to run. I've tried reinstalling the nvidia driver to no avail.
    Any insight would be greatly appreciated. I'm using a GeForce 8400 GS
    cat /var/log/nvidia-installer.log
    ERROR: Unable to load the kernel module 'nvidia.ko'. This happens most
    frequently when this kernel module was built against the wrong or
    improperly configured kernel sources, with a version of gcc that differs
    from the one used to build the target kernel, or if a driver such as
    rivafb/nvidiafb is present and prevents the NVIDIA kernel module from
    obtaining ownership of the NVIDIA graphics device(s), or NVIDIA GPU
    installed in this system is not supported by this NVIDIA Linux graphics
    driver release.
    Please see the log entries 'Kernel module load error' and 'Kernel
    messages' at the end of the file '/var/log/nvidia-installer.log' for
    more information.
    -> Kernel module load error: insmod: error inserting './usr/src/nv/nvidia.ko':
    -1 No such device
    -> Kernel messages:
    NVRM: This can occur when a driver such as nouveau, rivafb,
    NVRM: nvidiafb, or rivatv was loaded and obtained ownership of
    NVRM: the NVIDIA device(s).
    NVRM: Try unloading the conflicting kernel module (and/or
    NVRM: reconfigure your kernel without the conflicting
    NVRM: driver(s)), then try loading the NVIDIA kernel module
    NVRM: again.
    NVRM: No NVIDIA graphics adapter probed!
    NVRM: The NVIDIA probe routine was not called for 1 device(s).
    NVRM: This can occur when a driver such as nouveau, rivafb,
    NVRM: nvidiafb, or rivatv was loaded and obtained ownership of
    NVRM: the NVIDIA device(s).
    NVRM: Try unloading the conflicting kernel module (and/or
    NVRM: reconfigure your kernel without the conflicting
    NVRM: driver(s)), then try loading the NVIDIA kernel module
    NVRM: again.
    NVRM: No NVIDIA graphics adapter probed!
    NVRM: The NVIDIA probe routine was not called for 1 device(s).
    NVRM: This can occur when a driver such as rivafb, nvidiafb or
    NVRM: rivatv was loaded and obtained ownership of the NVIDIA
    NVRM: device(s).
    NVRM: Try unloading the rivafb, nvidiafb or rivatv kernel module
    NVRM: (and/or reconfigure your kernel without rivafb/nvidiafb
    NVRM: support), then try loading the NVIDIA kernel module again.
    NVRM: No NVIDIA graphics adapter probed!
    ERROR: Installation has failed. Please see the file
    '/var/log/nvidia-installer.log' for details. You may find suggestions
    on fixing installation problems in the README available on the Linux
    driver download page at www.nvidia.com.
    Last edited by wsims (2010-06-22 15:06:04)

    if you used the packages from repos, the blacklist is done automatically in nvidia,
    $ pacman -Qo /etc/modprobe.d/nouveau_blacklist.conf
    /etc/modprobe.d/nouveau_blacklist.conf is owned by nvidia 195.36.31-1
    $ cat /etc/modprobe.d/nouveau_blacklist.conf
    blacklist nouveau
    but i guess you just want to mess your system by using unsupported and very bad ways and you are way smarter than the devs if you used that installer
    Last edited by wonder (2010-06-22 14:10:01)

  • The server was unable to load the SSL provider library needed to log in

    Hello All,
    When I am trying to login to my default SQL 2008R2 SP2 instance in windows 2003 server via ssms, I am getting the below error
    A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) (.Net SqlClient Data Provider)
    When I looked into the error log and i could see lot of these messages.
    The server was unable to load the SSL provider library needed to log in; the connection has been closed. SSL is used to encrypt either the login sequence or all communications, depending on how the administrator has configured the server. See Books
    Online for information on this error message: 14 Not enough storage is available to complete this operation.
    Force protocol encryption is set to off.
    I am not sure what is the underlying problem. server's total RAM is 4 Gb and max_server_memory is set to 2 GB. CPU utilization is very normal at the time of issue.
    I restarted the SQL service and i am able to connect to the instance, but the issue is repeating and i need to find a permanent fix.
    Thanks

    I could also see the below in error log some time before i get the above alert 
    Error: 701, Severity: 17, State: 123.
    There is insufficient system memory in resource pool 'internal' to run this query
    then after sometime flurry of alerts 
    The server was unable to load the SSL provider library
    needed to log in; the connection has been closed. SSL is used to encrypt either the login sequence or all communications, depending on how the administrator has configured the server. See Books Online for information on this error message: 14 Not enough storage
    is available to complete this operation.
    Thanks

  • Unable to open Power BI Sites - Error: We were unable to load the Site. Refresh the page to try again

    Power BI Sites Error
    We were unable to load the Site. Refresh the page to try again
    When opening Power BI Sites with internet explorer, in certain security configurations you may run into the above error. While we are looking into resolving this, please see the following workaround:
    From the Tools menu, select internet options.
    On the security tab uncheck the "Enable Protected Mode" checkbox form the relevant Zone (Intranet/Internet)
    Remove all entries to *.powerbi.com from trusted sites or/and local intranet sites
    On the advanced tab, uncheck the "Enable enhanced protected mode" (if you made a change here it will require a restart of the machine)
    Restart and try again (if not changes done in the last step, just restart the browser)

    Hi
    Any further debugging tips? I upgraded from IE9 to IE11 on my Win7 machine to try get Q&A working, it broke the entire PowerBI site for me

  • Unable to load the necessary SQL connectivity library

    I am installing an older (non-Microsoft) program (32bit) that manages mail online and it requires an access to SQL Server to create database to complete installation. I am installing it on Windows Server 2003 standard. This program
    I am installing recommends SQL Server 2000. We are now running SQL Server 2005 on a separate server. For connectivity, I installed SQL server 2005 tools (full install) on the same 2003 server as the program so that this program could manage to locate
    SQL server 2005 and connect to it in order to create necessary tables and complete the installation. I already manually created the database for this program on SQL Server 2005. I created ODBC SQL Server connection string (User DSN). However, during
    installation, I am getting the following error message:
    ERROR: Setup is unable to load the necessary SQL connectivity library. This indicates that the proper client-side SQL utilities are not installed on your system. Setup cannot continue.
    Could this error be SQL Server version specific and the program only likes SQL 2000 client tools and not 2005? Are there major differences between libraries versions? Should there be something else configured? What am I missing? Thanks in advance.

    ERROR: Setup is unable to load the necessary SQL connectivity library. This indicates that the proper client-side SQL utilities are not installed on your system. Setup cannot continue.
    Could this error be SQL Server version specific and the program only likes SQL 2000
    client tools and not 2005?
    Tools are tools, not a connectivity library and by the error message the right connectivity library is missing. Ask the software vendor which one is required or look it up on the other machine, where the application works.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • [Solved] Problem with Xorg, unable to load the right keymap

    Hi, people,
    I recently installed arch on a desktop, but there is a problem installing X: for whatever reason, Xorg seems unable to load the correct keymap (fr-latin9) and instead, loads the default one.
    I can see what seems to be the problem in the Xorg logs, but I actually absolutely don't know how to solve it. Here my /var/log/Xorg.0.log
    root@kgentoo keikoz # cat /mnt/tmp/var/log/Xorg.0.log
    [ 9.900]
    X.Org X Server 1.12.4
    Release Date: 2012-08-27
    [ 9.900] X Protocol Version 11, Revision 0
    [ 9.900] Build Operating System: Linux 3.4.8-1-ARCH x86_64
    [ 9.900] Current Operating System: Linux kdesktop 3.4.9-1-ARCH #1 SMP PREEMPT Wed Aug 15 18:59:31 CEST 2012 x86_64
    [ 9.901] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=7d2d3ed4-6903-4845-b70d-9462f52f4329 ro quiet
    [ 9.901] Build Date: 27 August 2012 08:04:39AM
    [ 9.901]
    [ 9.901] Current version of pixman: 0.26.2
    [ 9.901] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 9.901] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 9.901] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Sep 26 16:32:35 2012
    [ 9.950] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 9.967] (==) No Layout section. Using the first Screen section.
    [ 9.967] (==) No screen section available. Using defaults.
    [ 9.967] (**) |-->Screen "Default Screen Section" (0)
    [ 9.967] (**) | |-->Monitor "<default monitor>"
    [ 9.969] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 9.969] (==) Automatically adding devices
    [ 9.969] (==) Automatically enabling devices
    [ 10.002] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 10.002] Entry deleted from font path.
    [ 10.006] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 10.007] Entry deleted from font path.
    [ 10.007] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 10.007] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 10.007] Entry deleted from font path.
    [ 10.007] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 10.007] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 10.007] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 10.007] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 10.007] (II) Loader magic: 0x7c8b00
    [ 10.007] (II) Module ABI versions:
    [ 10.007] X.Org ANSI C Emulation: 0.4
    [ 10.007] X.Org Video Driver: 12.1
    [ 10.007] X.Org XInput driver : 16.0
    [ 10.007] X.Org Server Extension : 6.0
    [ 10.008] (--) PCI:*(0:3:0:0) 10de:0141:107d:200d rev 162, Mem @ 0xcc000000/67108864, 0xd0000000/268435456, 0xcb000000/16777216, BIOS @ 0x????????/131072
    [ 10.008] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 10.008] (II) LoadModule: "extmod"
    [ 10.018] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 10.033] (II) Module extmod: vendor="X.Org Foundation"
    [ 10.033] compiled for 1.12.4, module version = 1.0.0
    [ 10.033] Module class: X.Org Server Extension
    [ 10.033] ABI class: X.Org Server Extension, version 6.0
    [ 10.033] (II) Loading extension MIT-SCREEN-SAVER
    [ 10.033] (II) Loading extension XFree86-VidModeExtension
    [ 10.033] (II) Loading extension XFree86-DGA
    [ 10.033] (II) Loading extension DPMS
    [ 10.033] (II) Loading extension XVideo
    [ 10.033] (II) Loading extension XVideo-MotionCompensation
    [ 10.033] (II) Loading extension X-Resource
    [ 10.033] (II) LoadModule: "dbe"
    [ 10.033] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 10.034] (II) Module dbe: vendor="X.Org Foundation"
    [ 10.034] compiled for 1.12.4, module version = 1.0.0
    [ 10.034] Module class: X.Org Server Extension
    [ 10.034] ABI class: X.Org Server Extension, version 6.0
    [ 10.034] (II) Loading extension DOUBLE-BUFFER
    [ 10.034] (II) LoadModule: "glx"
    [ 10.034] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 11.016] (II) Module glx: vendor="NVIDIA Corporation"
    [ 11.016] compiled for 4.0.2, module version = 1.0.0
    [ 11.016] Module class: X.Org Server Extension
    [ 11.016] (II) NVIDIA GLX Module 304.37 Wed Aug 8 20:16:03 PDT 2012
    [ 11.016] (II) Loading extension GLX
    [ 11.016] (II) LoadModule: "record"
    [ 11.016] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 11.026] (II) Module record: vendor="X.Org Foundation"
    [ 11.026] compiled for 1.12.4, module version = 1.13.0
    [ 11.026] Module class: X.Org Server Extension
    [ 11.026] ABI class: X.Org Server Extension, version 6.0
    [ 11.026] (II) Loading extension RECORD
    [ 11.026] (II) LoadModule: "dri"
    [ 11.026] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 11.049] (II) Module dri: vendor="X.Org Foundation"
    [ 11.049] compiled for 1.12.4, module version = 1.0.0
    [ 11.049] ABI class: X.Org Server Extension, version 6.0
    [ 11.049] (II) Loading extension XFree86-DRI
    [ 11.049] (II) LoadModule: "dri2"
    [ 11.050] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 11.050] (II) Module dri2: vendor="X.Org Foundation"
    [ 11.050] compiled for 1.12.4, module version = 1.2.0
    [ 11.050] ABI class: X.Org Server Extension, version 6.0
    [ 11.050] (II) Loading extension DRI2
    [ 11.051] (==) Matched nouveau as autoconfigured driver 0
    [ 11.051] (==) Matched nvidia as autoconfigured driver 1
    [ 11.051] (==) Matched nv as autoconfigured driver 2
    [ 11.051] (==) Matched vesa as autoconfigured driver 3
    [ 11.051] (==) Matched fbdev as autoconfigured driver 4
    [ 11.051] (==) Assigned the driver to the xf86ConfigLayout
    [ 11.051] (II) LoadModule: "nouveau"
    [ 11.059] (WW) Warning, couldn't open module nouveau
    [ 11.059] (II) UnloadModule: "nouveau"
    [ 11.059] (II) Unloading nouveau
    [ 11.059] (EE) Failed to load module "nouveau" (module does not exist, 0)
    [ 11.059] (II) LoadModule: "nvidia"
    [ 11.060] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 11.274] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 11.274] compiled for 4.0.2, module version = 1.0.0
    [ 11.274] Module class: X.Org Video Driver
    [ 11.300] (II) LoadModule: "nv"
    [ 11.301] (WW) Warning, couldn't open module nv
    [ 11.301] (II) UnloadModule: "nv"
    [ 11.301] (II) Unloading nv
    [ 11.301] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 11.301] (II) LoadModule: "vesa"
    [ 11.301] (WW) Warning, couldn't open module vesa
    [ 11.301] (II) UnloadModule: "vesa"
    [ 11.301] (II) Unloading vesa
    [ 11.301] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 11.301] (II) LoadModule: "fbdev"
    [ 11.302] (WW) Warning, couldn't open module fbdev
    [ 11.302] (II) UnloadModule: "fbdev"
    [ 11.302] (II) Unloading fbdev
    [ 11.302] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 11.302] (II) NVIDIA dlloader X Driver 304.37 Wed Aug 8 19:54:47 PDT 2012
    [ 11.302] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 11.303] (++) using VT number 7
    [ 11.317] (II) Loading sub module "fb"
    [ 11.317] (II) LoadModule: "fb"
    [ 11.317] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 11.330] (II) Module fb: vendor="X.Org Foundation"
    [ 11.330] compiled for 1.12.4, module version = 1.0.0
    [ 11.330] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 11.330] (II) Loading sub module "wfb"
    [ 11.330] (II) LoadModule: "wfb"
    [ 11.331] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 11.347] (II) Module wfb: vendor="X.Org Foundation"
    [ 11.347] compiled for 1.12.4, module version = 1.0.0
    [ 11.347] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 11.347] (II) Loading sub module "ramdac"
    [ 11.347] (II) LoadModule: "ramdac"
    [ 11.347] (II) Module "ramdac" already built-in
    [ 11.366] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 11.366] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 11.366] (==) NVIDIA(0): RGB weight 888
    [ 11.366] (==) NVIDIA(0): Default visual is TrueColor
    [ 11.366] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 11.367] (**) NVIDIA(0): Enabling 2D acceleration
    [ 13.308] (II) NVIDIA(GPU-0): Display (BenQ FP93GX (DFP-0)) does not support NVIDIA 3D
    [ 13.308] (II) NVIDIA(GPU-0): Vision stereo.
    [ 13.311] (II) NVIDIA(0): NVIDIA GPU GeForce 6600 (NV43) at PCI:3:0:0 (GPU-0)
    [ 13.312] (--) NVIDIA(0): Memory: 262144 kBytes
    [ 13.312] (--) NVIDIA(0): VideoBIOS: 05.43.02.64.68
    [ 13.312] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 13.312] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 13.312] (--) NVIDIA(0): Valid display device(s) on GeForce 6600 at PCI:3:0:0
    [ 13.312] (--) NVIDIA(0): CRT-0
    [ 13.312] (--) NVIDIA(0): CRT-1
    [ 13.312] (--) NVIDIA(0): TV-0
    [ 13.312] (--) NVIDIA(0): BenQ FP93GX (DFP-0) (connected)
    [ 13.312] (--) NVIDIA(0): CRT-0: 400.0 MHz maximum pixel clock
    [ 13.312] (--) NVIDIA(0): CRT-1: 400.0 MHz maximum pixel clock
    [ 13.312] (--) NVIDIA(0): TV-0: 400.0 MHz maximum pixel clock
    [ 13.312] (--) NVIDIA(0): TV encoder: (null)
    [ 13.312] (--) NVIDIA(0): BenQ FP93GX (DFP-0): 155.0 MHz maximum pixel clock
    [ 13.312] (--) NVIDIA(0): BenQ FP93GX (DFP-0): Internal Single Link TMDS
    [ 13.312] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 13.312] (**) NVIDIA(0): device BenQ FP93GX (DFP-0) (Using EDID frequencies has
    [ 13.312] (**) NVIDIA(0): been enabled on all display devices.)
    [ 13.312] (==) NVIDIA(0):
    [ 13.312] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 13.312] (==) NVIDIA(0): will be used as the requested mode.
    [ 13.312] (==) NVIDIA(0):
    [ 13.312] (II) NVIDIA(0): Validated MetaModes:
    [ 13.313] (II) NVIDIA(0): "DFP-0:nvidia-auto-select"
    [ 13.313] (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
    [ 13.314] (WW) NVIDIA(0): Unable to support custom viewPortOut 1280 x 720 +0 +152
    [ 13.328] (--) NVIDIA(0): DPI set to (85, 86); computed from "UseEdidDpi" X config
    [ 13.328] (--) NVIDIA(0): option
    [ 13.328] (--) Depth 24 pixmap format is 32 bpp
    [ 13.338] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 13.338] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 13.338] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 13.338] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 13.338] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 13.338] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 13.338] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 13.338] (II) NVIDIA(0): Config Options in the README.
    [ 13.338] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select"
    [ 13.486] (II) Loading extension NV-GLX
    [ 13.541] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 13.541] (==) NVIDIA(0): Backing store disabled
    [ 13.541] (==) NVIDIA(0): Silken mouse enabled
    [ 13.541] (==) NVIDIA(0): DPMS enabled
    [ 13.542] (II) Loading extension NV-CONTROL
    [ 13.542] (II) Loading extension XINERAMA
    [ 13.542] (II) Loading sub module "dri2"
    [ 13.542] (II) LoadModule: "dri2"
    [ 13.542] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 13.542] (II) Module dri2: vendor="X.Org Foundation"
    [ 13.542] compiled for 1.12.4, module version = 1.2.0
    [ 13.542] ABI class: X.Org Server Extension, version 6.0
    [ 13.542] (II) NVIDIA(0): [DRI2] Setup complete
    [ 13.542] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 13.543] (--) RandR disabled
    [ 13.543] (II) Initializing built-in extension Generic Event Extension
    [ 13.543] (II) Initializing built-in extension SHAPE
    [ 13.543] (II) Initializing built-in extension MIT-SHM
    [ 13.543] (II) Initializing built-in extension XInputExtension
    [ 13.543] (II) Initializing built-in extension XTEST
    [ 13.543] (II) Initializing built-in extension BIG-REQUESTS
    [ 13.543] (II) Initializing built-in extension SYNC
    [ 13.543] (II) Initializing built-in extension XKEYBOARD
    [ 13.543] (II) Initializing built-in extension XC-MISC
    [ 13.543] (II) Initializing built-in extension SECURITY
    [ 13.543] (II) Initializing built-in extension XINERAMA
    [ 13.543] (II) Initializing built-in extension XFIXES
    [ 13.543] (II) Initializing built-in extension RENDER
    [ 13.543] (II) Initializing built-in extension RANDR
    [ 13.543] (II) Initializing built-in extension COMPOSITE
    [ 13.543] (II) Initializing built-in extension DAMAGE
    [ 13.547] (II) Initializing extension GLX
    [ 14.003] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 14.003] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 14.003] (II) LoadModule: "evdev"
    [ 14.004] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 14.022] (II) Module evdev: vendor="X.Org Foundation"
    [ 14.022] compiled for 1.12.3.901, module version = 2.7.3
    [ 14.022] Module class: X.Org XInput Driver
    [ 14.022] ABI class: X.Org XInput driver, version 16.0
    [ 14.023] (II) Using input driver 'evdev' for 'Power Button'
    [ 14.023] (**) Power Button: always reports core events
    [ 14.023] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 14.023] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 14.023] (--) evdev: Power Button: Found keys
    [ 14.023] (II) evdev: Power Button: Configuring as keyboard
    [ 14.023] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 14.023] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 14.023] (**) Option "xkb_rules" "evdev"
    [ 14.023] (**) Option "xkb_model" "evdev"
    [ 14.023] (**) Option "xkb_layout" "fr"
    [ 14.023] (**) Option "xkb_variant" "latin-9"
    [ 14.076] (EE) Error loading keymap /var/lib/xkb/server-0.xkm
    [ 14.076] (EE) XKB: Failed to load keymap. Loading default keymap instead.
    [ 14.121] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 14.121] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 14.121] (II) Using input driver 'evdev' for 'Power Button'
    [ 14.121] (**) Power Button: always reports core events
    [ 14.121] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 14.121] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 14.121] (--) evdev: Power Button: Found keys
    [ 14.121] (II) evdev: Power Button: Configuring as keyboard
    [ 14.121] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 14.121] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 14.121] (**) Option "xkb_rules" "evdev"
    [ 14.121] (**) Option "xkb_model" "evdev"
    [ 14.121] (**) Option "xkb_layout" "fr"
    [ 14.121] (**) Option "xkb_variant" "latin-9"
    [ 14.122] (II) config/udev: Adding input device Genius Multimedia Keyboard (/dev/input/event0)
    [ 14.122] (**) Genius Multimedia Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 14.122] (II) Using input driver 'evdev' for 'Genius Multimedia Keyboard'
    [ 14.122] (**) Genius Multimedia Keyboard: always reports core events
    [ 14.122] (**) evdev: Genius Multimedia Keyboard: Device: "/dev/input/event0"
    [ 14.122] (--) evdev: Genius Multimedia Keyboard: Vendor 0x458 Product 0x708
    [ 14.122] (--) evdev: Genius Multimedia Keyboard: Found keys
    [ 14.122] (II) evdev: Genius Multimedia Keyboard: Configuring as keyboard
    [ 14.122] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input0/event0"
    [ 14.122] (II) XINPUT: Adding extended input device "Genius Multimedia Keyboard" (type: KEYBOARD, id 8)
    [ 14.122] (**) Option "xkb_rules" "evdev"
    [ 14.122] (**) Option "xkb_model" "evdev"
    [ 14.122] (**) Option "xkb_layout" "fr"
    [ 14.122] (**) Option "xkb_variant" "latin-9"
    [ 14.123] (II) config/udev: Adding input device Genius Multimedia Keyboard (/dev/input/event1)
    [ 14.123] (**) Genius Multimedia Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 14.123] (II) Using input driver 'evdev' for 'Genius Multimedia Keyboard'
    [ 14.123] (**) Genius Multimedia Keyboard: always reports core events
    [ 14.123] (**) evdev: Genius Multimedia Keyboard: Device: "/dev/input/event1"
    [ 14.123] (--) evdev: Genius Multimedia Keyboard: Vendor 0x458 Product 0x708
    [ 14.124] (--) evdev: Genius Multimedia Keyboard: Found keys
    [ 14.124] (II) evdev: Genius Multimedia Keyboard: Configuring as keyboard
    [ 14.124] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.1/input/input1/event1"
    [ 14.124] (II) XINPUT: Adding extended input device "Genius Multimedia Keyboard" (type: KEYBOARD, id 9)
    [ 14.124] (**) Option "xkb_rules" "evdev"
    [ 14.124] (**) Option "xkb_model" "evdev"
    [ 14.124] (**) Option "xkb_layout" "fr"
    [ 14.124] (**) Option "xkb_variant" "latin-9"
    [ 14.125] (II) config/udev: Adding input device ImExPS/2 Logitech Explorer Mouse (/dev/input/event5)
    [ 14.125] (**) ImExPS/2 Logitech Explorer Mouse: Applying InputClass "evdev pointer catchall"
    [ 14.125] (II) Using input driver 'evdev' for 'ImExPS/2 Logitech Explorer Mouse'
    [ 14.125] (**) ImExPS/2 Logitech Explorer Mouse: always reports core events
    [ 14.125] (**) evdev: ImExPS/2 Logitech Explorer Mouse: Device: "/dev/input/event5"
    [ 14.125] (--) evdev: ImExPS/2 Logitech Explorer Mouse: Vendor 0x2 Product 0x6
    [ 14.125] (--) evdev: ImExPS/2 Logitech Explorer Mouse: Found 9 mouse buttons
    [ 14.125] (--) evdev: ImExPS/2 Logitech Explorer Mouse: Found scroll wheel(s)
    [ 14.125] (--) evdev: ImExPS/2 Logitech Explorer Mouse: Found relative axes
    [ 14.125] (--) evdev: ImExPS/2 Logitech Explorer Mouse: Found x and y relative axes
    [ 14.125] (II) evdev: ImExPS/2 Logitech Explorer Mouse: Configuring as mouse
    [ 14.125] (II) evdev: ImExPS/2 Logitech Explorer Mouse: Adding scrollwheel support
    [ 14.125] (**) evdev: ImExPS/2 Logitech Explorer Mouse: YAxisMapping: buttons 4 and 5
    [ 14.125] (**) evdev: ImExPS/2 Logitech Explorer Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 14.125] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input5/event5"
    [ 14.125] (II) XINPUT: Adding extended input device "ImExPS/2 Logitech Explorer Mouse" (type: MOUSE, id 10)
    [ 14.137] (II) evdev: ImExPS/2 Logitech Explorer Mouse: initialized for relative axes.
    [ 14.137] (**) ImExPS/2 Logitech Explorer Mouse: (accel) keeping acceleration scheme 1
    [ 14.137] (**) ImExPS/2 Logitech Explorer Mouse: (accel) acceleration profile 0
    [ 14.137] (**) ImExPS/2 Logitech Explorer Mouse: (accel) acceleration factor: 2.000
    [ 14.137] (**) ImExPS/2 Logitech Explorer Mouse: (accel) acceleration threshold: 4
    [ 14.138] (II) config/udev: Adding input device ImExPS/2 Logitech Explorer Mouse (/dev/input/mouse0)
    [ 14.138] (II) No input driver specified, ignoring this device.
    [ 14.138] (II) This device may have been added with another device file.
    [ 14.138] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 14.138] (II) No input driver specified, ignoring this device.
    [ 14.138] (II) This device may have been added with another device file.
    [ 14.305] (II) NVIDIA(GPU-0): Display (BenQ FP93GX (DFP-0)) does not support NVIDIA 3D
    [ 14.306] (II) NVIDIA(GPU-0): Vision stereo.
    [ 14.306] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 14.306] (**) NVIDIA(0): device BenQ FP93GX (DFP-0) (Using EDID frequencies has
    [ 14.306] (**) NVIDIA(0): been enabled on all display devices.)
    [ 19.774] (II) NVIDIA(GPU-0): Display (BenQ FP93GX (DFP-0)) does not support NVIDIA 3D
    [ 19.774] (II) NVIDIA(GPU-0): Vision stereo.
    [ 19.774] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 19.774] (**) NVIDIA(0): device BenQ FP93GX (DFP-0) (Using EDID frequencies has
    [ 19.774] (**) NVIDIA(0): been enabled on all display devices.)
    [ 41.273] (II) evdev: Power Button: Close
    [ 41.273] (II) UnloadModule: "evdev"
    [ 41.290] (II) evdev: Power Button: Close
    [ 41.290] (II) UnloadModule: "evdev"
    [ 41.293] (II) evdev: Genius Multimedia Keyboard: Close
    [ 41.293] (II) UnloadModule: "evdev"
    [ 41.300] (II) evdev: Genius Multimedia Keyboard: Close
    [ 41.300] (II) UnloadModule: "evdev"
    [ 41.303] (II) evdev: ImExPS/2 Logitech Explorer Mouse: Close
    [ 41.303] (II) UnloadModule: "evdev"
    [ 41.793] Server terminated successfully (0). Closing log file.
    The error appear to be where it says
    [ 14.076] (EE) Error loading keymap /var/lib/xkb/server-0.xkm
    [ 14.076] (EE) XKB: Failed to load keymap. Loading default keymap instead.
    This file (server-0.xkm) actually does not exist on the system, BUT: it also does not exist on my others Arch installations and it works fine, without errors.
    By the way: here is the keyboard-entry in the /etc/X11/xorg.conf.d/10-evdev.conf
    Section "InputClass"
    Identifier "evdev keyboard catchall"
    MatchIsKeyboard "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    Option "XkbLayout" "fr"
    Option "XkbVariant" "latin-9"
    EndSection
    Et voilà. Can somebody help ?
    Last edited by kero (2012-09-27 17:39:38)

    Probably because "latin-9" doesn't exist?
    # nano /usr/share/X11/xkb/symbols/fr
    xkb_symbols "latin9" {
    include "latin"
    include "nbsp(level3)"
    name[Group1]="French (legacy, alternative)";
    key <TLDE> { [ oe, OE, leftdoublequotemark, rightdoublequotemark ] };
    key <AE01> { [ ampersand, 1, dead_acute, periodcentered ] };
    key <AE02> { [ eacute, 2, asciitilde, Eacute ] };
    Try it without the dash (without the "-").
    And don't forget to mark it as solved (by editing the first post).

  • Unable to load the 'C:\InetPub\robohelp\' project.  The project is invalid.

    We're having troubles opening/viewing our 'prepsmart' project
    on our production server. (It works fine in our test environment).
    I have tried re-installing RoboEngine 4.0, and successfully
    re-generated and re-published the project to the server. However,
    when I try to access the project using a url like:
    http://<servername>:<port>/RoboAPI.asp?project=prepsmart&context=700,
    it displays the message: "Contragulations The RoboEngine has been
    successfully created. To get started using RoboEngine, you need to
    publish a project. Please see the getting started guide or
    deployment manual that corresponds to your authoring tool for more
    information. "
    I see the same screen if I click on "View Project" within the
    RogoEngine Configuration Manager.
    When I click the Troubleshoot icon in the Configuration
    manager, it lists the following errors:
    Unable to load the 'C:\InetPub\robohelp\' project. The
    project is invalid.
    Project prepsmart cannot be found.
    Unable to locate the ' ' window.
    Cannot find the list of projects.
    If I specify a specific page (i.e.
    http://denpiis01:8000/Robo/BIN/Robo.dll?tpc=/robo/projects/prepsmart/Getting_Started.htm),
    it displays the help page. So, I
    think the web site is configured and working OK.
    Any ideas why I can successfully publish the project, but
    RoboEngine can't find the project?
    Thanks,
    Greg

    Hello Vipul Kumawat,
    I saw a related thread from here:
    http://stackoverflow.com/questions/15246449/visual-studio-xaml-designer-not-getting-loaded
    Their solution is related to fix corrupt Visual Studio.
    So may I clarify the following:
    1. What's your Visual Studio version?
    2. Have you ever tried to repair Visual Studio from control panel first?
    3. Can you reproduce this issue when access any other new projects? For example, Store App, WPF App, or even new simple Windows Phone app? What's the result if you use them?
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unable to load the specified offline registry hive when rejoining the domain

    I have a Windows Server 2008 R2 Ent member server that we needed to clone. So we removed it from the domain, cloned it, and when we went back to join it to the domain it we get a error:  
    The Following error occurred attempting to join the domain:   Unable to load the specified offline registry hive. Please ensure you have access to the specified path location and permissions to modify its contents. Running as an elevated administrator
    may be required.
    There is nothing in event viewer and no other error message then this. I can look at my domain controller and i do see a computer object is created but its like the member server either never gets the message that its done or it can't write to the registry.
    I've disabled the firewall. I've tried to verify permission in regedit, to the best i know, and i still get this error.
    We have also tried multiple local user accounts, multiple domain admin accounts, renamed the server, changed the workgroup its in. even ran a few registry cleaners.
    Nothing works.  I need help since this server has to be online 6am Monday morning.

    Hi,
    To add the local administrators in the User Rights assignments
    1) Start>Run>gpedit.msc
    2) Computer Configuration>Windows Settings>Security Settings>Local Policies>User Rights Assignments
    3) Double click  on Back up files and directories and add the Administrators.
    4) Double click  on Restore files and directories and add the Administrators.
    5) Close  the window and reboot the machine.
    6) Try to add the machine to the domain.
    If  the issue persist, Reset the security database.
    1) Open MMC
    2) Add Security Configuration and Analysis tool
    3) Right click Security Configuration and Analysis in the left pane
    4) Select open database
    5) In the new database, type in secnew.sdb, click ok.
    6) Select setup defltbase.inf as the template to import from C:\Windows\inf, click ok.
    7) Rightclick Security Configuration and Analysis in the left pane again
    8) Select configure computer
    9) Reboot the machine.
    10) Try adding the machine to the domain.
    Hope this helps!
    Best Regards
    Elytis Cheng
    Elytis Cheng
    TechNet Community Support
    By the way folks, this is the FIX that worked for me.  No need to go re-installing the OS
    Paul E Coz

  • Unable to load the OCFS due to kernel version mismatch

    Hi,
    I am using RedHat Linux ES 3.0 and installed the OCFS successfully but, unable to load the ocfs due to OCFS version conflict with the kernel version. following message displyed when i try to load ocfs.
    OCFS was built for Kernel version --> 2.4.21-4.EL
    KERNEL Version --> 2.4.21-9.ELorafw3.
    ================== message as follows ================
    load_ocfs
    /sbin/insmod ocfs node_name=linuz2 ip_address=1.1.1.2
    cs=1803 guid=626147BF390EFFB6609900061BC97853
    comm_voting=1 ip_port=7000
    Using /lib/modules/2.4.21-EL-ABI/ocfs/ocfs.o
    /lib/modules/2.4.21-EL-ABI/ocfs/ocfs.o: kernel-module
    version mismatch
    /lib/modules/2.4.21-EL-ABI/ocfs/ocfs.o was
    compiled for kernel version 2.4.21-4.EL
    while this kernel is version
    2.4.21-9.ELorafw3.
    load_ocfs: insmod failed
    ================== message ends here ==================
    thanks & regards,
    Jagadeswar V
    Singapore

    I have seen that error before, try using a different ip address for your machine, I'm not sure that the one you're using ( 1.1.1.2 ) is valid. Try ip an ip address using one of the following blocks:
    10.x.x.x
    192.168.x.x
    load_ocfs will throw that error if it just doesn't like your configuration sometimes, or if you havn't generated an ocfs.conf.
    Can you ping your other node ( 1.1.1.1 I assume )?

  • Unable to load the data into Cube Using DTP in the quality system

    Hi,
    I am unable to load the data from PSA to Cube using DTP in the quality system for the first time
    I am getting the error like" Data package processing terminated" and "Source TRCS 2LIS_17_NOTIF is not allowed".
    Please suggest .
    Thanks,
    Satyaprasad

    Hi,
    Some Infoobjects are missing while collecting the transport.
    I collected those objects and transported ,now its working fine.
    Many Thanks to all
    Regards,
    Satyaprasad

  • Unable to load the vertipaq engine because there was a COM exception . Return argument has an invalid type.

    Hi All,
    I have been using powerpivot for months (2010 PowerPivot on Excel 2010, with Sql 2008).  I tried to open powerpivot today and get the following below.  I have already tried uninstalling powerpivot and reinstalling it to no avail.  
    Any suggestions would be appreciated.  Thanks, Ivan
    Unable to load the vertipaq engine because there was a COM exception while loading....
    ============================
    Error Message:
    ============================
    Return argument has an invalid type.
    ============================
    Call Stack:
    ============================
       at System.Runtime.Remoting.Proxies.RealProxy.ValidateReturnArg(Object arg, Type paramType)
       at System.Runtime.Remoting.Proxies.RealProxy.PropagateOutParameters(IMessage msg, Object[] outArgs, Object returnValue)
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.Office.Interop.Excel.WorkbookConnection.get_OLEDBConnection()
       at Microsoft.AnalysisServices.XLHost.Addin.InProcServer.LoadOLEDBConnection(Boolean raiseCompleteEvent, String errorCache)
    ============================

    Hi All,
    For anyone who this happens to, what ended up fixing it was uninstalling and reinstalling excel.  I was using excel 2010, so I did this 
    Go to add/remove programs 
    Highlight Microsoft Office Professional 2010 
    Click Change
    ensure Add remove features is selected and click continue 
    click on the little arrow beside excel and click on Not Available, click continue
    After it is done, excel will be uninstalled.  
    When this is done, you can do the same process again, but this time chose the other appropriate selection
    instead of not available.  I chose Run All from My Computer.  

  • Unable to load the Vertipaq engine because there was a COM exception while loading

    I saw a similar thread on the forum but it's a dead end.
    PowerPivot for Excel 2010 gives me this error whenever I click the PowerPivot window icon:
    Unable to load the VertiPaq engine because there was a COM exception. This might happen if you load a workbook on a corrupt installation. To fix the problem, uninstall and then reinstall PowerPivot. Click Details for more error information.
    ============================
    Error Message:
    ============================
    Could not load file or assembly 'msmgdsrv, Version=9.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified.
    The type initializer for 'Microsoft.AnalysisServices.BackEnd.DAXServices' threw an exception.
    ============================
    Call Stack:
    ============================
       at System.Windows.Forms.Control.MarshaledInvoke(Control caller, Delegate method, Object[] args, Boolean synchronous)
       at System.Windows.Forms.Control.Invoke(Delegate method, Object[] args)
       at Microsoft.AnalysisServices.XLHost.Addin.InProcServer.LoadSafeSandboxAfterConnection(String errorCache)
       at Microsoft.AnalysisServices.XLHost.Addin.InProcServer.LoadSafeSandboxAfterConnection(String errorCache)
       at Microsoft.AnalysisServices.XLHost.Addin.InProcServer.LoadOLEDBConnection(Boolean raiseCompleteEvent, String errorCache)
    ============================
    I've tried everything that was suggested so far: uninstall and reinstall PowerPivot, Microsoft Office 2010, and all of the prerequisites for PowerPivot (NET Framework 4.0, Visual Studio) and it still gives the same error message.
    Thing is, I don't think it is a PowerPivot issue because many people in the office use PowerPivot and they all receive the same error message.
    We are all running on Windows 7 Pro 64-bit.
    Any help and/or assistance would be greatly appreciated.
    Thanks,
    Seong Lee

    I saw a similar thread on the forum but it's a dead end.
    PowerPivot for Excel 2010 gives me this error whenever I click the PowerPivot window icon:
    Unable to load the VertiPaq engine because there was a COM exception. This might happen if you load a workbook on a corrupt installation. To fix the problem, uninstall and then reinstall PowerPivot. Click Details for more error information.
    ============================
    Error Message:
    ============================
    Could not load file or assembly 'msmgdsrv, Version=9.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified.
    The type initializer for 'Microsoft.AnalysisServices.BackEnd.DAXServices' threw an exception.
    ============================
    Call Stack:
    ============================
       at System.Windows.Forms.Control.MarshaledInvoke(Control caller, Delegate method, Object[] args, Boolean synchronous)
       at System.Windows.Forms.Control.Invoke(Delegate method, Object[] args)
       at Microsoft.AnalysisServices.XLHost.Addin.InProcServer.LoadSafeSandboxAfterConnection(String errorCache)
       at Microsoft.AnalysisServices.XLHost.Addin.InProcServer.LoadSafeSandboxAfterConnection(String errorCache)
       at Microsoft.AnalysisServices.XLHost.Addin.InProcServer.LoadOLEDBConnection(Boolean raiseCompleteEvent, String errorCache)
    ============================
    I've tried everything that was suggested so far: uninstall and reinstall PowerPivot, Microsoft Office 2010, and all of the prerequisites for PowerPivot (NET Framework 4.0, Visual Studio) and it still gives the same error message.
    Thing is, I don't think it is a PowerPivot issue because many people in the office use PowerPivot and they all receive the same error message.
    We are all running on Windows 7 Pro 64-bit.
    Any help and/or assistance would be greatly appreciated.
    Thanks,
    Seong Lee

  • The document information panel was unable to load. the document will continue to open. For more information, contact your system adminsitrator.

    Hi Guys,
    I am creating the library using object model with custom content type.  When i am opening document from custom content type, the meta data fields are not displaying in the document and throwing below error.
    The document information panel was unable to load. the document will continue to open. For more information, contact your system adminsitrator.
    Document Information Panel cannot open a new form.
    The form contains schema validation errors.
    Content for element '{http://schemas.microsoft.com/office/2006/metadata/propertiesRoot}properties' is incomplete according to the DTD/Schema.
    Expecting: {http://schemas.microsoft.com/office/2006/metadata/properties}properties.
    But after saving the document, then meta data is enabled.
    Thanks in advance for suggested solutions.
    thanks
    Santhosh G

    Hi,
    For a better troubleshooting, I suggest to do as follows:
    1. Please try to update the Location column's schema by following the steps below.
     1) Go to Site Settings -> "Site Columns"
     2) Click on "Location", after the page is opened. Don't modify any settings, click "OK"  to forcibly update the field's schema.
    2. Re-edit the document information panel template to see if the issue still occurs.
    Please go to the Library setting > click the corresponding content type(need to enable managed of content types in Advanced settings) > click Document Information Panel settings.
    3. Here are some similar links about your issue, please take some time to look at them:
    http://social.msdn.microsoft.com/Forums/en-US/sharepointcustomizationlegacy/thread/243b4852-3f17-4a3a-b6d7-187d65a5f088/
    http://blogs.msdn.com/b/raresm/archive/2010/03/30/document-information-panel-cannot-open-the-form.aspx
    https://joranmarkx.wordpress.com/2012/02/10/sharepoint-document-information-panel-cannot-create-a-new-blank-form/
    If the issue still occurs, please check if the command below can help(change the site URL and the library name in the code):
    Apply-Fix -siteUrl "http://your site URL "
    function Apply-Fix($siteUrl)
    clear
    Add-PSSnapin "Microsoft.SharePoint.Powershell" -ErrorAction SilentlyContinue # -EA 0
    [Environment]::CurrentDirectory=(Get-Location -PSProvider FileSystem).ProviderPath
    foreach ($spwTarget in (Get-SPSite $siteUrl).RootWeb.Webs) {
    Write-Host "Checking Web: " $spwTarget.Url
    $list = $spwTarget.Lists["your library name"]
    $fields = $list.fields
    foreach($field in $fields)
    if($field.SourceId -eq '{$ListId:your library name;}')
    $schemaxml = $field.SchemaXML
    $schemaxmldata = [xml]$schemaxml
    $schemaxmldata.Field.SetAttribute("SourceID", $list.ID)
    $schemaxml = $schemaxmldata.get_InnerXml()
    $field.SchemaXML = $schemaxml
    $field.Update()
    Write-Host "Fixed" $field.Title "field in the library"
    Write-Host "Done."
    More information:
    SharePoint 2010: Creating a Custom Content Type using Visual Studio
    http://www.codeproject.com/Articles/410880/SharePoint-Creating-a-Custom-Content-Type-usi
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Dennis Guo
    TechNet Community Support

  • Essbase Error : Unable to load the dll essapinu.dll.

    Hi Guys,
    I have imported a essbase cube in the OBIEE. The import went fine, then i made the logical model and presentation layer. Now when i am selecting column from that cube in BI answers, i am getting this error:
    *State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. The specified module could not be found. [nQSError: 36001] Unable to load the dll essapinu.dll. (HY000)*
    Any idea how to solve this. BTW the installation of essbase server went fine and also this dll is present in the hyperion server directory.
    Thanks in Advance

    hi,
    check this blog...
    it refers to essbase...maybe he/she know more...
    http://www.rittmanmead.com/2009/07/27/oracle-bi-ee-10-1-3-4-1-essbase-connectivity-repository-design-enabling-drills-on-evaluate-columns-part-1/
    Check with google and in others blogs..you may find something useful
    hope i helped....
    http://greekoraclebi.blogspot.com/
    ///////////////////////////////////////

Maybe you are looking for