MessageBrokerService failed to initialize

I edited my server.xml to open up the https port, then Blaze threw this exception at initialization.
I want to use Custom authentication for my application.  Is my server.xml set up correctly?  I tried it with vanilla tomcat, it worked perfectly.
I also tried editing catalina.policy to include the Trace class, it didn't work.
Thanks.
**** MessageBrokerServlet failed to initialize due to runtime exception:   Error: java.lang.ExceptionInInitializerError
at flex.messaging.config.FlexConfigurationManager.getConfigurationParser(FlexConfigurationMa nager.java:163)
at flex.messaging.config.FlexConfigurationManager.getMessagingConfiguration(FlexConfiguratio nManager.java:68)
at flex.messaging.MessageBrokerServlet.init(MessageBrokerServlet.java:106)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:244)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.Subject.doAsPrivileged(Unknown Source)
at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:276)
at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)
at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:115)
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1155)
at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:981)
at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4045)
at org.apache.catalina.core.StandardContext.start(StandardContext.java:4351)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
at org.apache.catalina.core.StandardService.start(StandardService.java:516)
at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
at org.apache.catalina.startup.Catalina.start(Catalina.java:566)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
Caused by: java.security.AccessControlException: access denied (java.util.PropertyPermission trace.config read)
at java.security.AccessControlContext.checkPermission(Unknown Source)
at java.security.AccessController.checkPermission(Unknown Source)
at java.lang.SecurityManager.checkPermission(Unknown Source)
at java.lang.SecurityManager.checkPropertyAccess(Unknown Source)
at java.lang.System.getProperty(Unknown Source)
at flex.messaging.util.Trace.<clinit>(Trace.java:49)
... 30 more
<?xml version="1.0" encoding="UTF-8"?>
<!-- Note:  A "Server" is not itself a "Container", so you may not
     define subcomponents such as "Valves" at this level.
     Documentation at /docs/config/server.html
--><Server port="8005" shutdown="SHUTDOWN">
  <!--APR library loader. Documentation at /docs/apr.html -->
  <Listener SSLEngine="on" className="org.apache.catalina.core.AprLifecycleListener"/>
  <!--Initialize Jasper prior to webapps are loaded. Documentation at /docs/jasper-howto.html -->
  <Listener className="org.apache.catalina.core.JasperListener"/>
  <!-- JMX Support for the Tomcat server. Documentation at /docs/non-existent.html -->
  <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener"/>
  <Listener className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"/>
  <!-- Global JNDI resources
       Documentation at /docs/jndi-resources-howto.html
  -->
  <GlobalNamingResources>
    <!-- Editable user database that can also be used by
         UserDatabaseRealm to authenticate users
    -->
    <Resource auth="Container" description="User database that can be updated and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" name="UserDatabase" pathname="conf/tomcat-users.xml" type="org.apache.catalina.UserDatabase"/>
  </GlobalNamingResources>
  <!-- A "Service" is a collection of one or more "Connectors" that share
       a single "Container" Note:  A "Service" is not itself a "Container",
       so you may not define subcomponents such as "Valves" at this level.
       Documentation at /docs/config/service.html
   -->
  <Service name="Catalina">
    <!--The connectors can use a shared executor, you can define one or more named thread pools-->
    <!--
    <Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
        maxThreads="150" minSpareThreads="4"/>
    -->
    <!-- A "Connector" represents an endpoint by which requests are received
         and responses are returned. Documentation at :
         Java HTTP Connector: /docs/config/http.html (blocking & non-blocking)
         Java AJP  Connector: /docs/config/ajp.html
         APR (HTTP/AJP) Connector: /docs/apr.html
         Define a non-SSL HTTP/1.1 Connector on port 8080
    -->
    <Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>
    <!-- A "Connector" using the shared thread pool-->
    <!--
    <Connector executor="tomcatThreadPool"
               port="8080" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" />
    -->         
    <!-- Define a SSL HTTP/1.1 Connector on port 8443
         This connector uses the JSSE configuration, when using APR, the
         connector should be using the OpenSSL style configuration
         described in the APR documentation -->
    <Connector SSLEnabled="true" clientAuth="false" keystoreFile="keystore" keystorePass="changeit"
       maxThreads="150" port="8443" protocol="HTTP/1.1" scheme="https"
       secure="true" sslProtocol="TLS"/>
    <!-- Define an AJP 1.3 Connector on port 8009 -->
    <Connector port="8009" protocol="AJP/1.3" redirectPort="8443"/>
    <!-- An Engine represents the entry point (within Catalina) that processes
         every request.  The Engine implementation for Tomcat stand alone
         analyzes the HTTP headers included with the request, and passes them
         on to the appropriate Host (virtual host).
         Documentation at /docs/config/engine.html -->
    <!-- You should set jvmRoute to support load-balancing via AJP ie :
    <Engine name="Standalone" defaultHost="localhost" jvmRoute="jvm1">       
    -->
    <Engine defaultHost="localhost" name="Catalina">
      <!--For clustering, please take a look at documentation at:
          /docs/cluster-howto.html  (simple how to)
          /docs/config/cluster.html (reference documentation) -->
      <!--
      <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>
      -->      
      <!-- The request dumper valve dumps useful debugging information about
           the request and response data received and sent by Tomcat.
           Documentation at: /docs/config/valve.html -->
      <!--
      <Valve className="org.apache.catalina.valves.RequestDumperValve"/>
      -->
      <!-- This Realm uses the UserDatabase configured in the global JNDI
           resources under the key "UserDatabase".  Any edits
           that are performed against this UserDatabase are immediately
           available for use by the Realm.  -->
       <!--
      <Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase"/>
       -->
       <Realm className="org.apache.catalina.realm.MemoryRealm"/>
      <!-- Define the default virtual host
           Note: XML Schema validation will not work with Xerces 2.2.
       -->
      <Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true" xmlNamespaceAware="false" xmlValidation="false">
        <!-- SingleSignOn valve, share authentication between web applications
             Documentation at: /docs/config/valve.html -->
        <!--
        <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
        -->
        <!-- Access log processes all example.
             Documentation at: /docs/config/valve.html -->
        <!--
        <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
               prefix="localhost_access_log." suffix=".txt" pattern="common" resolveHosts="false"/>
        -->
      <Context docBase="BlazeServer" path="/BlazeServer" reloadable="true" source="org.eclipse.jst.jee.server:BlazeServer"/></Host>
    </Engine>
  </Service>
</Server>

Of course not. The application is using nokia api
stuff. This wil obviously not run on a Siemens
device/emulator.
You'll have to port the application to either pure
MIDP code, or to the siemens api on order to make it
work.Siemens SX1 and many SonyEricsson phones implement the Nokia UI API.

Similar Messages

  • Configuration system failed to initialize

    Getting error when I try to install an excel addin that I have published.
    Error message is  "Configuration system failed to initialize". The popup window has the title "visual studio tools for office solution installer"
    To publish the addin I  use the publish option on the build menu of VS2013.
    Specify the location to publish this application:  F:\publish   where F: is a USB drive.
    What is the default installation path on end user computers:  From a CD-ROM or DVD-ROM
    Then I take the USB drive to another PC, double click on setup.exe in the USB drive and get the "configuration system failed to initialize" error.  I copy the entire publish directory to the C: drive of the target system and get the same error.
    What am I doing wrong? 
    thanks,

    Hi Steve,
    >>Error message is  "Configuration system failed to initialize". The popup window has the title "visual studio tools for office solution installer"
    For this issue, I would recommend you try to uninstall/reinstall the VSTO runtime. The link below might be useful to you:
    #Customization could not be loaded because the application domain could not be created.
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/d8204b2f-d5c7-42b3-b339-d2d37d43652d/customization-could-not-be-loaded-because-the-application-domain-could-not-be-created?forum=vsto
    If the method above do not work, I will recommend you install the excel add-in in the developing machine with the USB to check whether it could work correctly.  If it could not install correctly, I assume that there might be something wrong when you
    publish, and could you share us the steps you published? If it works correctly, I assume that it caused by the environment of another pc, it would be helpful if you could share us the screen shoot about details error message.
    Best Regards,
    Edward
    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.

  • The error "configuration system failed to initialize" occurred

    Hi
    When I converted and built the solution file that was developed by Visual Studio .net 2003 using Visual Studio 2005, the application program was abnormal-ended at the following step:
    m_TCPChannel = New System.Runtime.Remoting.Channels.Tcp.TcpChannel(tcp_properties, Nothing, Nothing)
    The error message was "configration system failed to initialize".  The Exception.ToString said that the root <configuration> tag was not included in the configuration file. Therefore, I changed <configopt> tag to <configuration>
    tag in the app.config file of the target project, and then executed again. Next time, the application program was abnormal-ended by the unrecognized section <xs:schema>. Therefore, I changed the app.config file to the simple one (only <configuration>
    and </configuration> tags), and then executed again. The error didn't occur. I guess that it's caused by configuration settings. Please advise.
    app.config file:
    <?xml version="1.0" standalone="yes"?>
    <configopt>
    <xs:schema id="configopt" xmlns="" xmlns:xs="URLリンク" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
    <xs:element name="configopt" msdata:IsDataSet="true" msdata:Locale="en-AU">
    <xs:complexType>
    <xs:choice maxOccurs="unbounded">
    <xs:element name="Environment">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="Name" type="xs:string" minOccurs="0" />
    <xs:element name="System" type="xs:string" minOccurs="0" />
    <xs:element name="DataLibrary" type="xs:string" minOccurs="0" />
    <xs:element name="Default" type="xs:boolean" minOccurs="0" />
    <xs:element name="UserId" type="xs:string" minOccurs="0" />
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:choice>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    <Environment>
    <Name>Test</Name>
    <System>XXXX.COM</System>
    <DataLibrary>XXXTEST</DataLibrary>
    <Default>false</Default>
    <UserId></UserId>
    </Environment>
    <Environment>
    <Name>Production</Name>
    <System>XXXXX.COM</System>
    <DataLibrary>XXXPROD</DataLibrary>
    <Default>true</Default>
    <UserId />
    </Environment>
    </configopt>

    Hi,
    Thank you for your post.
    I am afraid that the issue is out of support range of VS General Question forum which mainly discusses the usage of Visual Studio IDE such as
    WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    Since your issue occurred on the converted project from VS .net 2003 to VS2005, and VS2005 is out of
    our mainstream support , I suggest that you should consult on some development forums to check whether they will to provide some suggestions or
    submit a support ticket to below site,
    https://support.microsoft.com/oas/default.aspx?Gprid=1117&st=1&wfxredirect=1&sd=gn&wfxredirect=1
    Thank you for your understanding.
    Best regards,
    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.

  • "Configuration system failed to initialize" when trying to connect FM12 to Sharepoint

    Adding a connection to Sharepoint using the FM12 CMS Connection Manager is failing with the error "Configuration system failed to initialize".  I can access all the sites and libraries in Sharepoint perfectly from IE on the same PC, but no matter what I try in the FM12 Connection Manager I get the above mentioned error.  The PC (which is actually a VM) is running Windows Server  2008 R2 (x64 with heaps of RAM and HDD free) with all updates applied.  FM12 is installed as part of Technical Comms Suite 5 subscription.
    Does anyone have any ideas what may be causing this (or what it even means) and how I can fix it?

    Hi Steve,
    >>Error message is  "Configuration system failed to initialize". The popup window has the title "visual studio tools for office solution installer"
    For this issue, I would recommend you try to uninstall/reinstall the VSTO runtime. The link below might be useful to you:
    #Customization could not be loaded because the application domain could not be created.
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/d8204b2f-d5c7-42b3-b339-d2d37d43652d/customization-could-not-be-loaded-because-the-application-domain-could-not-be-created?forum=vsto
    If the method above do not work, I will recommend you install the excel add-in in the developing machine with the USB to check whether it could work correctly.  If it could not install correctly, I assume that there might be something wrong when you
    publish, and could you share us the steps you published? If it works correctly, I assume that it caused by the environment of another pc, it would be helpful if you could share us the screen shoot about details error message.
    Best Regards,
    Edward
    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.

  • [Closed]Bumblebee - Failed to initialize the NVIDIA GPU

    Hi,
    I'am having trouble with bumblebee. When i ran
    optirun glxgears -info
    I get the following error,
    [ 66.574]
    X.Org X Server 1.14.2
    Release Date: 2013-06-25
    [ 66.574] X Protocol Version 11, Revision 0
    [ 66.574] Build Operating System: Linux 3.9.7-1-ARCH x86_64
    [ 66.574] Current Operating System: Linux archlinux 3.10.3-1-ARCH #1 SMP PREEMPT Fri Jul 26 11:26:59 CEST 2013 x86_64
    [ 66.574] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=2136b55a-3c0b-4a13-a536-86d195e15fa8 ro
    [ 66.574] Build Date: 01 July 2013 10:48:42AM
    [ 66.574]
    [ 66.574] Current version of pixman: 0.30.0
    [ 66.574] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 66.574] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 66.574] (==) Log file: "/var/log/Xorg.8.log", Time: Tue Jul 30 19:25:29 2013
    [ 66.589] (++) Using config file: "/etc/bumblebee/xorg.conf.nvidia"
    [ 66.589] (++) Using config directory: "/etc/bumblebee/xorg.conf.d"
    [ 66.607] (==) ServerLayout "Layout0"
    [ 66.607] (==) No screen section available. Using defaults.
    [ 66.607] (**) |-->Screen "Default Screen Section" (0)
    [ 66.607] (**) | |-->Monitor "<default monitor>"
    [ 66.607] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 66.607] (**) | |-->Device "DiscreteNvidia"
    [ 66.607] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 66.607] (**) Option "AutoAddDevices" "false"
    [ 66.607] (**) Option "AutoAddGPU" "false"
    [ 66.607] (**) Not automatically adding devices
    [ 66.607] (==) Automatically enabling devices
    [ 66.607] (**) Not automatically adding GPU devices
    [ 66.607] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 66.607] Entry deleted from font path.
    [ 66.607] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 66.607] Entry deleted from font path.
    [ 66.607] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 66.607] Entry deleted from font path.
    [ 66.607] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 66.607] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 66.607] Entry deleted from font path.
    [ 66.607] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 66.607] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 66.607] (++) ModulePath set to "/usr/lib/nvidia/xorg/,/usr/lib/xorg/modules"
    [ 66.607] (==) |-->Input Device "<default pointer>"
    [ 66.607] (==) |-->Input Device "<default keyboard>"
    [ 66.607] (==) The core pointer device wasn't specified explicitly in the layout.
    Using the default mouse configuration.
    [ 66.607] (==) The core keyboard device wasn't specified explicitly in the layout.
    Using the default keyboard configuration.
    [ 66.607] (II) Loader magic: 0x7fdc20
    [ 66.607] (II) Module ABI versions:
    [ 66.607] X.Org ANSI C Emulation: 0.4
    [ 66.607] X.Org Video Driver: 14.1
    [ 66.607] X.Org XInput driver : 19.1
    [ 66.607] X.Org Server Extension : 7.0
    [ 66.607] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 66.608] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 66.608] setversion 1.4 failed
    [ 66.609] (--) PCI:*(0:1:0:0) 10de:0fd4:1462:10d7 rev 161, Mem @ 0xf5000000/16777216, 0xe0000000/268435456, 0xf0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
    [ 66.609] Initializing built-in extension Generic Event Extension
    [ 66.609] Initializing built-in extension SHAPE
    [ 66.609] Initializing built-in extension MIT-SHM
    [ 66.609] Initializing built-in extension XInputExtension
    [ 66.609] Initializing built-in extension XTEST
    [ 66.609] Initializing built-in extension BIG-REQUESTS
    [ 66.609] Initializing built-in extension SYNC
    [ 66.609] Initializing built-in extension XKEYBOARD
    [ 66.609] Initializing built-in extension XC-MISC
    [ 66.609] Initializing built-in extension SECURITY
    [ 66.609] Initializing built-in extension XINERAMA
    [ 66.609] Initializing built-in extension XFIXES
    [ 66.609] Initializing built-in extension RENDER
    [ 66.609] Initializing built-in extension RANDR
    [ 66.609] Initializing built-in extension COMPOSITE
    [ 66.609] Initializing built-in extension DAMAGE
    [ 66.609] Initializing built-in extension MIT-SCREEN-SAVER
    [ 66.609] Initializing built-in extension DOUBLE-BUFFER
    [ 66.609] Initializing built-in extension RECORD
    [ 66.609] Initializing built-in extension DPMS
    [ 66.609] Initializing built-in extension X-Resource
    [ 66.609] Initializing built-in extension XVideo
    [ 66.609] Initializing built-in extension XVideo-MotionCompensation
    [ 66.609] Initializing built-in extension XFree86-VidModeExtension
    [ 66.609] Initializing built-in extension XFree86-DGA
    [ 66.609] Initializing built-in extension XFree86-DRI
    [ 66.609] Initializing built-in extension DRI2
    [ 66.609] (II) LoadModule: "glx"
    [ 66.622] (II) Loading /usr/lib/nvidia/xorg/modules/extensions/libglx.so
    [ 67.248] (II) Module glx: vendor="NVIDIA Corporation"
    [ 67.248] compiled for 4.0.2, module version = 1.0.0
    [ 67.248] Module class: X.Org Server Extension
    [ 67.248] (II) NVIDIA GLX Module 319.32 Wed Jun 19 14:55:38 PDT 2013
    [ 67.257] Loading extension GLX
    [ 67.257] (II) LoadModule: "nvidia"
    [ 67.258] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 67.346] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 67.346] compiled for 4.0.2, module version = 1.0.0
    [ 67.346] Module class: X.Org Video Driver
    [ 67.354] (II) LoadModule: "mouse"
    [ 67.354] (II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
    [ 67.357] (II) Module mouse: vendor="X.Org Foundation"
    [ 67.357] compiled for 1.14.0, module version = 1.9.0
    [ 67.357] Module class: X.Org XInput Driver
    [ 67.357] ABI class: X.Org XInput driver, version 19.1
    [ 67.357] (II) LoadModule: "kbd"
    [ 67.358] (WW) Warning, couldn't open module kbd
    [ 67.358] (II) UnloadModule: "kbd"
    [ 67.358] (II) Unloading kbd
    [ 67.358] (EE) Failed to load module "kbd" (module does not exist, 0)
    [ 67.358] (II) NVIDIA dlloader X Driver 319.32 Wed Jun 19 14:34:12 PDT 2013
    [ 67.358] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 67.359] (--) using VT number 7
    [ 67.367] (II) Loading sub module "fb"
    [ 67.367] (II) LoadModule: "fb"
    [ 67.367] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 67.367] (II) Module fb: vendor="X.Org Foundation"
    [ 67.368] compiled for 1.14.2, module version = 1.0.0
    [ 67.368] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 67.368] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 67.368] (II) Loading sub module "wfb"
    [ 67.368] (II) LoadModule: "wfb"
    [ 67.368] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 67.376] (II) Module wfb: vendor="X.Org Foundation"
    [ 67.376] compiled for 1.14.2, module version = 1.0.0
    [ 67.377] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 67.377] (II) Loading sub module "shadow"
    [ 67.377] (II) LoadModule: "shadow"
    [ 67.377] (II) Loading /usr/lib/xorg/modules/libshadow.so
    [ 67.377] (II) Module shadow: vendor="X.Org Foundation"
    [ 67.377] compiled for 1.14.2, module version = 1.1.0
    [ 67.377] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 67.377] (II) Loading sub module "ramdac"
    [ 67.377] (II) LoadModule: "ramdac"
    [ 67.377] (II) Module "ramdac" already built-in
    [ 67.378] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 67.378] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 67.378] (==) NVIDIA(0): RGB weight 888
    [ 67.378] (==) NVIDIA(0): Default visual is TrueColor
    [ 67.378] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 67.378] (**) NVIDIA(0): Option "NoLogo" "true"
    [ 67.378] (**) NVIDIA(0): Option "ProbeAllGpus" "false"
    [ 67.379] (**) NVIDIA(0): Option "UseEDID" "false"
    [ 67.379] (**) NVIDIA(0): Option "UseDisplayDevice" "none"
    [ 67.379] (**) NVIDIA(0): Enabling 2D acceleration
    [ 67.379] (**) NVIDIA(0): Ignoring EDIDs
    [ 67.379] (**) NVIDIA(0): Option "UseDisplayDevice" set to "none"; enabling NoScanout
    [ 67.379] (**) NVIDIA(0): mode
    [ 72.511] (EE) NVIDIA(0): Failed to initialize the NVIDIA GPU at PCI:1:0:0. Please
    [ 72.511] (EE) NVIDIA(0): check your system's kernel log for additional error
    [ 72.511] (EE) NVIDIA(0): messages and refer to Chapter 8: Common Problems in the
    [ 72.511] (EE) NVIDIA(0): README for additional information.
    [ 72.511] (EE) NVIDIA(0): Failed to initialize the NVIDIA graphics device!
    [ 72.511] (EE) NVIDIA(0): Failing initialization of X screen 0
    [ 72.512] (II) UnloadModule: "nvidia"
    [ 72.512] (II) UnloadSubModule: "shadow"
    [ 72.512] (II) UnloadSubModule: "wfb"
    [ 72.512] (II) UnloadSubModule: "fb"
    [ 72.512] (EE) Screen(s) found, but none have a usable configuration.
    [ 72.512] (EE)
    Fatal server error:
    [ 72.512] (EE) no screens found(EE)
    [ 72.512] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 72.512] (EE) Please also check the log file at "/var/log/Xorg.8.log" for additional information.
    [ 72.512] (EE)
    [ 72.512] (EE) Server terminated with error (1). Closing log file.
    This is /etc/bumblebee/bumblebee.conf file;
    # Configuration file for Bumblebee. Values should **not** be put between quotes
    ## Server options. Any change made in this section will need a server restart
    # to take effect.
    [bumblebeed]
    # The secondary Xorg server DISPLAY number
    VirtualDisplay=:8
    # Should the unused Xorg server be kept running? Set this to true if waiting
    # for X to be ready is too long and don't need power management at all.
    KeepUnusedXServer=false
    # The name of the Bumbleblee server group name (GID name)
    ServerGroup=bumblebee
    # Card power state at exit. Set to false if the card shoud be ON when Bumblebee
    # server exits.
    TurnCardOffAtExit=false
    # The default behavior of '-f' option on optirun. If set to "true", '-f' will
    # be ignored.
    NoEcoModeOverride=false
    # The Driver used by Bumblebee server. If this value is not set (or empty),
    # auto-detection is performed. The available drivers are nvidia and nouveau
    # (See also the driver-specific sections below)
    Driver=
    # Directory with a dummy config file to pass as a -configdir to secondary X
    XorgConfDir=/etc/bumblebee/xorg.conf.d
    ## Client options. Will take effect on the next optirun executed.
    [optirun]
    # Acceleration/ rendering bridge, possible values are auto, virtualgl and
    # primus.
    Bridge=auto
    # The method used for VirtualGL to transport frames between X servers.
    # Possible values are proxy, jpeg, rgb, xv and yuv.
    VGLTransport=proxy
    # List of paths which are searched for the primus libGL.so.1 when using
    # the primus bridge
    PrimusLibraryPath=/usr/lib/primus:/usr/lib32/primus
    # Should the program run under optirun even if Bumblebee server or nvidia card
    # is not available?
    AllowFallbackToIGC=false
    # Driver-specific settings are grouped under [driver-NAME]. The sections are
    # parsed if the Driver setting in [bumblebeed] is set to NAME (or if auto-
    # detection resolves to NAME).
    # PMMethod: method to use for saving power by disabling the nvidia card, valid
    # values are: auto - automatically detect which PM method to use
    # bbswitch - new in BB 3, recommended if available
    # switcheroo - vga_switcheroo method, use at your own risk
    # none - disable PM completely
    # https://github.com/Bumblebee-Project/Bumblebee/wiki/Comparison-of-PM-methods
    ## Section with nvidia driver specific options, only parsed if Driver=nvidia
    [driver-nvidia]
    # Module name to load, defaults to Driver if empty or unset
    KernelDriver=nvidia
    PMMethod=auto
    # colon-separated path to the nvidia libraries
    LibraryPath=/usr/lib/nvidia:/usr/lib32/nvidia
    # comma-separated path of the directory containing nvidia_drv.so and the
    # default Xorg modules path
    XorgModulePath=/usr/lib/nvidia/xorg/,/usr/lib/xorg/modules
    XorgConfFile=/etc/bumblebee/xorg.conf.nvidia
    ## Section with nouveau driver specific options, only parsed if Driver=nouveau
    [driver-nouveau]
    KernelDriver=nouveau
    PMMethod=auto
    XorgConfFile=/etc/bumblebee/xorg.conf.nouveau
    In addition
    dmesg | grep nvidia
    does not return anything and
    modprobe nvidia
    returns
    modprobe: ERROR: could not insert 'nvidia': No such device
    There is no /etc/X11/xorg.conf file.
    Last edited by Selo (2013-07-30 19:41:25)

    Hello, I also I have that problem.
    $primusrun glxgears
    primus: fatal: Bumblebee daemon reported: error: [XORG] (EE) Failed to load module "mouse" (module does not exist, 0)
    $grep -Fn '(EE' /var/log/Xorg.8.log
    15: (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    105:[ 875.659] (EE) Failed to load module "mouse" (module does not exist, 0)
    110:[ 875.659] (EE) Failed to load module "kbd" (module does not exist, 0)
    153:[ 880.312] (EE) NVIDIA(0): Failed to initialize the NVIDIA GPU at PCI:1:0:0. Please
    154:[ 880.312] (EE) NVIDIA(0): check your system's kernel log for additional error
    155:[ 880.312] (EE) NVIDIA(0): messages and refer to Chapter 8: Common Problems in the
    156:[ 880.312] (EE) NVIDIA(0): README for additional information.
    157:[ 880.312] (EE) NVIDIA(0): Failed to initialize the NVIDIA graphics device!
    158:[ 880.312] (EE) NVIDIA(0): Failing initialization of X screen 0
    163:[ 880.312] (EE) Screen(s) found, but none have a usable configuration.
    164:[ 880.312] (EE)
    166:[ 880.312] (EE) no screens found(EE)
    167:[ 880.312] (EE)
    171:[ 880.312] (EE) Please also check the log file at "/var/log/Xorg.8.log" for additional information.
    172:[ 880.313] (EE)
    173:[ 880.313] (EE) Server terminated with error (1). Closing log file.

  • CS5.5 Design Premium: installer failed to initialize

    Ok, I'm having this problem.  This started because I had to perform a system restore.  I ended having to go back so far with the system restore that all of my Adobe Products(among others) no longer appeared to be installed. 
    So I downloaded Adobe CS5.5 Design premium from a link mentioned elsewhere in the discussions.  Everything extracts fine, but when I execute the installer it always prompts "installer failed to initialize".  I have downloaded the Adobe support advisor.  It shows multiple:
    cpsid_82829s1: "A restart is pending," bootstrapper error has occurred.
    Click here for details and corrective actions related to this issue.
    I have clicked the links(http://helpx.adobe.com/creative-suite/kb/troubleshoot-error-messages-bootstrapper-cs5.html)  below and followed the instructions.  There is no "InProgress" Entry in the registry in the locations provided.   I have also ran the "Adobe CS5 Cleaner Tool " Multiple times and have removed ALL.   I have deleted every directory on this computer that says Adobe.   
    This is a clients computer and we REALLY don't want to wipe and reload(Money/time and all that).  Can anyone help me with this error?

    System restore is a first resort for most people when there is a problem in Windows.  Obviously it wasn't a hit in this situation.  I know a wipe and reload would fix it.  If you read my post you'd see I'm trying to avoid that.  If you have any information that can help me there I would love to know it. 

  • Failed to initialize the application 'soa-infra' for SOA suite 11g

    Hello experts!
    Having followed the steps in http://www.packtpub.com/article/installation-configuration-oracle-soa-suite-11g-1,
    upon starting the cmd scripts, I received among others the following error message:
    <BEA-149205> <Failed to initialize the application 'soa-infra' due to error java.lang.NoSuchMethodError: weblogic.application.ApplicationLifecycleEvent.getDeploymentOperation()Lweblogic/application/DeploymentOperationType;.
    java.lang.NoSuchMethodError: weblogic.application.ApplicationLifecycleEvent.getDeploymentOperation()Lweblogic/application/DeploymentOperationType;
         at oracle.security.jps.wls.listeners.JpsApplicationLifecycleListener.preStart(JpsApplicationLifecycleListener.java:76)
         at weblogic.application.internal.flow.BaseLifecycleFlow$PreStartAction.run(BaseLifecycleFlow.java:277)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.application.internal.flow.BaseLifecycleFlow$LifecycleListenerAction.invoke(BaseLifecycleFlow.java:194)
         at weblogic.application.internal.flow.BaseLifecycleFlow.preStart(BaseLifecycleFlow.java:57)
         at weblogic.application.internal.flow.HeadLifecycleFlow.prepare(HeadLifecycleFlow.java:279)
         at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:609)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:185)
         at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:53)
         at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
         at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:141)
         at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
         at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:187)
         at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
         at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
         at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
         at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
         at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
         at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    java.lang.NoSuchMethodError:
    I have searched but only to find a change permissions hint which did not work for me. SOA 11g - SOA-INFRA is not starting
    Any helping hand available?
    Thank you very much in advance!
    The fuller log follows:
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <WebLogicServer> <Hera> <> <main> <> <> <> <1270482051581> <BEA-000214> <WebLogic Server "soa_server1" version:
    WebLogic Server 10.3.1.0 Thu Jun 11 00:26:56 EDT 2009 1227385 Copyright (c) 1995, 2009, Oracle and/or its affiliates. All rights reserved.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Notice> <Log Management> <Hera> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1270482051644> <BEA-170019> <The server log file C:\Oracle\Middleware\home_11gR1\user_projects\domains\domain1\servers\soa_server1\logs\soa_server1.log is opened. All server side log events will be written to this file.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Log Management> <Hera> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1270482051644> <BEA-170023> <The Server Logging is initialized with Java Logging API implementation.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Diagnostics> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051691> <BEA-320001> <The ServerDebug service initialized successfully.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Store> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051753> <BEA-280050> <Persistent store "WLS_DIAGNOSTICS" opened: directory="C:\Oracle\Middleware\home_11gR1\user_projects\domains\domain1\servers\soa_server1\data\store\diagnostics" writePolicy="Disabled" blockSize=512 directIO=false driver="wlfileio2">
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Server> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051831> <BEA-002622> <The protocol "t3" is now configured.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Server> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051831> <BEA-002622> <The protocol "t3s" is now configured.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Server> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051831> <BEA-002622> <The protocol "http" is now configured.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Server> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051831> <BEA-002622> <The protocol "https" is now configured.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Server> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051831> <BEA-002622> <The protocol "iiop" is now configured.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Server> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051831> <BEA-002622> <The protocol "iiops" is now configured.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Server> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051831> <BEA-002622> <The protocol "ldap" is now configured.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Server> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051831> <BEA-002622> <The protocol "ldaps" is now configured.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Server> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051831> <BEA-002622> <The protocol "cluster" is now configured.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Server> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051831> <BEA-002622> <The protocol "clusters" is now configured.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Server> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051847> <BEA-002622> <The protocol "snmp" is now configured.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Server> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051847> <BEA-002622> <The protocol "admin" is now configured.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Server> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051847> <BEA-002624> <The administration protocol is "t3s" and is now configured.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <RJVM> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051862> <BEA-000570> <Network Configuration for Channel "soa_server1"
    Listen Address          :8001
    Public Address          N/A
    Http Enabled          true
    Tunneling Enabled     false
    Outbound Enabled     false
    Admin Traffic Enabled     true>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Server> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051878> <BEA-002609> <Channel Service initialized.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Socket> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051878> <BEA-000406> <NTSocketMuxer was built on Jan 13 2005 17:47:03
    >
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Socket> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051941> <BEA-000436> <Allocating 5 reader threads.>
    ####<5 Απρ 2010 6:40:51 μμ EEST> <Info> <Socket> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482051942> <BEA-000446> <Native IO Enabled.>
    ####<5 Απρ 2010 6:40:52 μμ EEST> <Info> <IIOP> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482052098> <BEA-002014> <IIOP subsystem enabled.>
    ####<5 Απρ 2010 6:40:53 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482053408> <BEA-090894> <Successfully loaded the OPSS Policy Provider using oracle.security.jps.internal.policystore.JavaPolicyProvider.>
    ####<5 Απρ 2010 6:40:53 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482053704> <BEA-000000> <Starting OpenJPA 1.1.1-SNAPSHOT>
    ####<5 Απρ 2010 6:40:53 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482053751> <BEA-000000> <StoreServiceImpl.initJDO - StoreService is initialized with Id = ldap_VFJSY8asFO+H8NVntiPFSkiIk0o=>
    ####<5 Απρ 2010 6:40:53 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482053923> <BEA-090516> <The Authorizer provider has preexisting LDAP data.>
    ####<5 Απρ 2010 6:40:53 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482053985> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Top".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054001> <BEA-000000> <Parsing class "com.bea.common.security.store.data.DomainRealmScope".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054001> <BEA-000000> <Parsing class "com.bea.common.security.store.data.RegistryScope".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054001> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PKITypeScope".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054001> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLTypeScope".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054001> <BEA-000000> <Parsing class "com.bea.common.security.store.data.BEASAMLPartner".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054001> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Credential".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054001> <BEA-000000> <Parsing class "com.bea.common.security.store.data.CredentialMap".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054001> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLEntry".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054001> <BEA-000000> <Parsing class "com.bea.common.security.store.data.BEASAMLAssertingParty".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054016> <BEA-000000> <Parsing class "com.bea.common.security.store.data.BEASAMLRelyingParty".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054016> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PasswordCredential".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054016> <BEA-000000> <Parsing class "com.bea.common.security.store.data.UserPasswordCredential".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054016> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PasswordCredentialMap".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054016> <BEA-000000> <Parsing class "com.bea.common.security.store.data.ResourceMap".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054016> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PKIResourceMap".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054016> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSCertRegEntry".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054032> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSCredMapCollectionInfo".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054032> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSPolicyCollectionInfo".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054032> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSRoleCollectionInfo".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054032> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLAuthorizationPolicy".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054032> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLRoleAssignmentPolicy".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054032> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Endpoint".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054032> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Partner".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054032> <BEA-000000> <Parsing class "com.bea.common.security.store.data.SPPartner".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054048> <BEA-000000> <Parsing class "com.bea.common.security.store.data.IdPPartner".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054048> <BEA-000000> <Parsing class "com.bea.common.security.store.data.SAML2CacheEntry".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054048> <BEA-000000> <Parsing class "com.bea.common.security.store.data.SchemaVersion".>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054453> <BEA-090516> <The CredentialMapper provider has preexisting LDAP data.>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054469> <BEA-090516> <The RoleMapper provider has preexisting LDAP data.>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054578> <BEA-090093> <No pre-WLS 8.1 Keystore providers are configured for server soa_server1 for security realm myrealm.>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Notice> <Security> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054578> <BEA-090082> <Security initializing using security realm myrealm.>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <Server> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054750> <BEA-002622> <The protocol "[snmp, https, t3, cluster-broadcast-secure, ldaps, cluster-broadcast, ldap, http, iiop, admin, t3s, iiops]" is now configured.>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <XML> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054750> <BEA-130036> <Initializing XMLRegistry.>
    ####<5 Απρ 2010 6:40:54 μμ EEST> <Info> <messaging.interception> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482054765> <BEA-400000> <Initializing message interception service>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <Store> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055015> <BEA-280050> <Persistent store "_WLS_soa_server1" opened: directory="C:\Oracle\Middleware\home_11gR1\user_projects\domains\domain1\servers\soa_server1\data\store\default" writePolicy="Direct-Write" blockSize=512 directIO=true driver="wlfileio2">
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JDBC> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055249> <BEA-001135> <Initializing the JDBC service.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JDBC> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055249> <BEA-001137> <Initialization complete.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JDBC> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055249> <BEA-001138> <Resuming the JDBC service.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JDBC> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055249> <BEA-001140> <Resume complete.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <Connector> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055264> <BEA-190000> <Initializing J2EE Connector Service>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <Connector> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055280> <BEA-190001> <J2EE Connector Service initialized successfully>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JMS> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055327> <BEA-040305> <JMS service is initialized and in standby mode.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JMS> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055342> <BEA-040090> <Deployed 8 default connection factories.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JMS> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055374> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory2" with its JNDI name "weblogic.jms.XAConnectionFactory2" is started.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JMS> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055374> <BEA-040407> <Default connection factory "MessageDrivenBeanConnectionFactory" with its JNDI name "weblogic.jms.MessageDrivenBeanConnectionFactory" is started.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JMS> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055374> <BEA-040407> <Default connection factory "DefaultConnectionFactory" with its JNDI name "weblogic.jms.ConnectionFactory" is started.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JMS> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055374> <BEA-040407> <Default connection factory "TopicConnectionFactory" with its JNDI name "javax.jms.TopicConnectionFactory" is started.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JMS> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055374> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory" with its JNDI name "weblogic.jms.XAConnectionFactory" is started.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JMS> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055374> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory0" with its JNDI name "weblogic.jms.XAConnectionFactory0" is started.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JMS> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055374> <BEA-040407> <Default connection factory "QueueConnectionFactory" with its JNDI name "javax.jms.QueueConnectionFactory" is started.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JMS> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055374> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory1" with its JNDI name "weblogic.jms.XAConnectionFactory1" is started.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JMS> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055374> <BEA-040306> <JMS service is active now.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <HTTP> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055389> <BEA-101128> <Initializing HTTP services.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <HTTP> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055405> <BEA-101135> <soa_server1 is the default Web server.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <HTTP> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055405> <BEA-101052> <[HttpServer (defaultWebserver) name: soa_server1] Initialized>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <HTTP> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055405> <BEA-101129> <Initializing the Web application container.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <WTC> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055420> <BEA-180046> <INFO: Logging service enabled.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <WTC> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055420> <BEA-180046> <INFO: TC Configuration Helper instantiated!>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <WTC> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055420> <BEA-180046> <INFO: TC Task Manager instantiated!>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <WTC> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055420> <BEA-180046> <INFO: TC security service instantiated!>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <WTC> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055420> <BEA-180046> <INFO: TC Outbound routing service instantiated!>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <WTC> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055420> <BEA-180046> <INFO: TC Transaction service instantiated!>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <WebService> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055436> <BEA-220031> <The server does not support reliable SOAP messaging.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <WebService> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055436> <BEA-220027> <Web Service reliable agents are started on the server.>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <JMX> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055467> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://192.168.1.2:8001/jndi/weblogic.management.mbeanservers.runtime .>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <WebLogicServer> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055483> <BEA-000256> <Invoking oracle.jrf.wls.JRFStartup.main(null)>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <WebLogicServer> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055514> <BEA-000256> <Invoking oracle.security.jps.wls.JpsWlsStartupClass.main(null)>
    ####<5 Απρ 2010 6:40:55 μμ EEST> <Info> <WebLogicServer> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482055530> <BEA-000256> <Invoking oracle.core.ojdl.weblogic.ODLConfiguration.main(null)>
    ####<5 Απρ 2010 6:40:56 μμ EEST> <Info> <WebLogicServer> <Hera> <soa_server1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1270482056684> <BEA-000256> <Invoking oracle.jrf.AppContextStartup.main(null)>
    ####<5 Απρ 2010 6:40:56 μμ EEST> <Info> <WebLogicServer> <Hera> <soa_server1> <[ACTIVE] E

    Thank you for your reply!
    The tutorial emphasizes that I need jdk 1.6 update 11 in order to setup.
    The newer release of wl server comes with jsk 1.6 update 14.
    When I tried to run:
    setup -jreLoc C:\Oracle\Middleware\home_11gR1\jdk160_14
    no setup screen appeared.
    Next, I setup stand alone jdk 1.6 update 11 and add it to path,
    but setup -jreLoc C:\Program Files\Java\jdk1.6.0_11 failed too, since no setup screen appeared
    So I uninstalled version 10.3.2, installed 10.3.1 to follow exactly the tutorial specs.
    Does one has to pay oracle consulting, in order to have an installation of soa suite up and running for development?
    Edited by: Nick Aiva on Apr 6, 2010 11:27 AM

  • Failed to initialize the network. Check if another instance of agent is

    Out of the blue a small number of my Windows XP PCs get the following error
    when logging in. Usually appears while login script page is on screen:-
    Failed to initialize the network. Check if another instance of agent is
    running. Contact the system administrator
    Once XP has loaded ok I can manually start the Remote Management service.
    Some PCs are intermittent and don't seem to get it again but a couple get it
    every login. I removed the client and reinstalled. I removed the Remote
    Management service and re-installed. Re-registered the PC Workstation but no
    change for those who get it every day.
    I did find this:-
    Failed to initialize the network. Check if another instance of agent is
    running. Contact the system administrator
    Source: Remote Management Agent
    Severity: Critical
    Possible Cause: The Remote Management Agent is unable to bind to the IPX or
    IP port that is being used for Remote Management service, or the ports are
    being used by some other application running on the managed workstation.
    Action: Uninstall any third-party remote control agent or remote control
    application using these ports from the managed workstation.
    Possible Cause: The protocol stack is corrupted.
    Action: Reinstall the protocol stack.
    Possible Cause: The managed workstation is not connected to the network, or
    the network is down.
    Action: Connect the managed workstation to the network.
    I don't have any third party remote control agent installed and I've tried
    the refresh of the IP protocol stack. Surprised this has started as we have
    not made any changes to the network or software. We run NW Client 4.83sp1
    and NW5.1 sp5.
    Anybody else had this and cleared it completely?

    Further developments:
    It looks like it's a fault in the nic. it's a Compaq NC3120 Fast Ethernet
    card. It used to work, but since I've wiped out the card drivers that were
    in use, I'm at HP's mercy. They are telling me that the card is no longer
    under warranty and won't even tell me what driver to look for. Anything I've
    managed to find has the exact same symptoms:
    Client works, ping to IP addresses work, ping to www.yahoo.com (etc) doesn't
    work, although winipcfg shows a DNS server the same as every other machine I
    have.
    Internet explorer doesn't work, even with IP addresses to local servers.
    And of course, zenrc32 doesn't work, wsreg32 doesn't work.
    Does anyone know of a way of making the NC3120 work on a win98 machine?
    Shall I just go buy a couple dozen netcards from a more reputable company
    than compaq?
    Chris Denby
    IT Coordinator
    Rainy River District School Board
    Fort Frances, Ontario
    Canada
    "Chris Denby" <[email protected]> wrote in message
    news:[email protected]...
    > I have this message on windows 98. In addition to that, the wsreg32.log
    > reads work station import error -1 (UNKNOWN).
    > This happened after ghosting down to the machine and finding that it had a
    > different card. The client adapted easily to a new card, but the
    zenrc32.exe
    > won't run.
    >
    > I've checked to make sure it wasn't running by renaming the zenrc32.exe to
    > zenrc32.ex so it wouldn't run on start up. Then after the machine was
    > started up, I changed it back and ran it and it died immediately with the
    > same error.
    >
    > I have uninstalled the client through admin\unc32 and removed all traces
    of
    > the client then reinstalling, but no luck.
    >
    >
    > <[email protected]> wrote in message
    > news:1XuQc.3739$8%[email protected]...
    > > Did you ever get this solved?
    > > I've got the same thing going on with one Win2000 machine in my
    > > department. He can log into the network just fine but can not get to the
    > > internet.
    > > I've tried re-installing the protocol stack; no luck. I've searched hi
    and
    > > low for any other agent running on the machine with no luck. I've
    searched
    > > the registry for hours for all keys that would start programs or agents
    at
    > > start. Can't find anything. I've check for services, checked for fire
    wall
    > > problems, viruses. No luck. Since its only one machine I can re-image it
    > > with no problem, but I'm curious and want to find out whats going on in
    > > case the problem reapears or grows to other machines.
    > > Any help out there???
    > >
    > > > Out of the blue a small number of my Windows XP PCs get the following
    > > error
    > > > when logging in. Usually appears while login script page is on
    screen:-
    > > >
    > > > Failed to initialize the network. Check if another instance of agent
    is
    > > > running. Contact the system administrator
    > > >
    > > > Once XP has loaded ok I can manually start the Remote Management
    > service.
    > > > Some PCs are intermittent and don't seem to get it again but a couple
    > > get it
    > > > every login. I removed the client and reinstalled. I removed the
    Remote
    > > > Management service and re-installed. Re-registered the PC Workstation
    > > but no
    > > > change for those who get it every day.
    > > >
    > > > I did find this:-
    > > >
    > > > Failed to initialize the network. Check if another instance of agent
    is
    > > > running. Contact the system administrator
    > > >
    > > > Source: Remote Management Agent
    > > >
    > > > Severity: Critical
    > > >
    > > > Possible Cause: The Remote Management Agent is unable to bind to the
    IPX
    > > or
    > > > IP port that is being used for Remote Management service, or the ports
    > > are
    > > > being used by some other application running on the managed
    workstation.
    > > >
    > > > Action: Uninstall any third-party remote control agent or remote
    control
    > > > application using these ports from the managed workstation.
    > > >
    > > > Possible Cause: The protocol stack is corrupted.
    > > >
    > > > Action: Reinstall the protocol stack.
    > > >
    > > > Possible Cause: The managed workstation is not connected to the
    network,
    > > or
    > > > the network is down.
    > > >
    > > > Action: Connect the managed workstation to the network.
    > > >
    > > > I don't have any third party remote control agent installed and I've
    > > tried
    > > > the refresh of the IP protocol stack. Surprised this has started as we
    > > have
    > > > not made any changes to the network or software. We run NW Client
    > 4.83sp1
    > > > and NW5.1 sp5.
    > > >
    > > > Anybody else had this and cleared it completely?
    > > >
    > > >
    > > >
    > > >
    > > >
    > >
    >
    >

  • [Solved] Failed to initialize the NVIDIA kernel module

    Hi all,
    I've just made the jump to arch and have a fresh install. I'm having trouble getting the nvidia drivers to work. I am currently using the nouveau drivers without issue.
    The method I am using - after much trial - is:
    - uninstall nouveau and mesa lib
    - install nvidia package
    - remove nouveau module entry in mkinitcpio.conf
    - run `mkinitcpio -p linux`
    - edit .conf in xorg.conf.d with minimal required settings. Currently:
    Section "Device"
    Identifier "device0"
    Driver "nvidia"
    BusID "PCI:1:0:0"
    EndSection
    I have installed the linux-headers package and tried reinstalling nvidia again
    Card:
    01:00.0 VGA compatible controller: NVIDIA Corporation GF106 [GeForce GTS 450] (rev a1)
    Kernel:
    3.12.6-1-ARCH
    My Xorg.0.log looks like:
    [ 3.979]
    X.Org X Server 1.14.5
    Release Date: 2013-12-12
    [ 3.979] X Protocol Version 11, Revision 0
    [ 3.979] Build Operating System: Linux 3.12.5-1-ARCH x86_64
    [ 3.979] Current Operating System: Linux arch.tempera 3.12.6-1-ARCH #1 SMP PREEMPT Fri Dec 20 19:39:00 CET 2013 x86_64
    [ 3.979] Kernel command line: initrd=\initramfs-linux.img root=/dev/sda2 rw
    [ 3.979] Build Date: 13 December 2013 03:11:42PM
    [ 3.979]
    [ 3.979] Current version of pixman: 0.32.4
    [ 3.979] Before reporting problems, check [url]http://wiki.x.org[/url]
    to make sure that you have the latest version.
    [ 3.979] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 3.979] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jan 4 21:29:46 2014
    [ 3.980] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 3.980] (==) No Layout section. Using the first Screen section.
    [ 3.980] (==) No screen section available. Using defaults.
    [ 3.980] (**) |-->Screen "Default Screen Section" (0)
    [ 3.980] (**) | |-->Monitor "<default monitor>"
    [ 3.981] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 3.981] (**) | |-->Device "device0"
    [ 3.981] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 3.981] (==) Automatically adding devices
    [ 3.981] (==) Automatically enabling devices
    [ 3.981] (==) Automatically adding GPU devices
    [ 3.984] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 3.984] Entry deleted from font path.
    [ 3.984] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 3.984] Entry deleted from font path.
    [ 3.984] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 3.984] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 3.984] Entry deleted from font path.
    [ 3.984] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 3.984] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 3.984] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 3.984] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 3.984] (II) Loader magic: 0x7fec20
    [ 3.984] (II) Module ABI versions:
    [ 3.984] X.Org ANSI C Emulation: 0.4
    [ 3.984] X.Org Video Driver: 14.1
    [ 3.984] X.Org XInput driver : 19.1
    [ 3.984] X.Org Server Extension : 7.0
    [ 3.985] (--) PCI:*(0:1:0:0) 10de:0dc4:19da:1184 rev 161, Mem @ 0xf4000000/16777216, 0xe0000000/134217728, 0xe8000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
    [ 3.986] Initializing built-in extension Generic Event Extension
    [ 3.986] Initializing built-in extension SHAPE
    [ 3.986] Initializing built-in extension MIT-SHM
    [ 3.986] Initializing built-in extension XInputExtension
    [ 3.986] Initializing built-in extension XTEST
    [ 3.986] Initializing built-in extension BIG-REQUESTS
    [ 3.986] Initializing built-in extension SYNC
    [ 3.986] Initializing built-in extension XKEYBOARD
    [ 3.986] Initializing built-in extension XC-MISC
    [ 3.986] Initializing built-in extension SECURITY
    [ 3.986] Initializing built-in extension XINERAMA
    [ 3.986] Initializing built-in extension XFIXES
    [ 3.986] Initializing built-in extension RENDER
    [ 3.986] Initializing built-in extension RANDR
    [ 3.986] Initializing built-in extension COMPOSITE
    [ 3.986] Initializing built-in extension DAMAGE
    [ 3.986] Initializing built-in extension MIT-SCREEN-SAVER
    [ 3.986] Initializing built-in extension DOUBLE-BUFFER
    [ 3.986] Initializing built-in extension RECORD
    [ 3.986] Initializing built-in extension DPMS
    [ 3.986] Initializing built-in extension X-Resource
    [ 3.986] Initializing built-in extension XVideo
    [ 3.986] Initializing built-in extension XVideo-MotionCompensation
    [ 3.986] Initializing built-in extension XFree86-VidModeExtension
    [ 3.986] Initializing built-in extension XFree86-DGA
    [ 3.986] Initializing built-in extension XFree86-DRI
    [ 3.986] Initializing built-in extension DRI2
    [ 3.986] (II) LoadModule: "glx"
    [ 3.989] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 4.075] (II) Module glx: vendor="NVIDIA Corporation"
    [ 4.075] compiled for 4.0.2, module version = 1.0.0
    [ 4.075] Module class: X.Org Server Extension
    [ 4.075] (II) NVIDIA GLX Module 331.20 Wed Oct 30 17:36:48 PDT 2013
    [ 4.076] Loading extension GLX
    [ 4.076] (II) LoadModule: "nvidia"
    [ 4.076] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 4.082] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 4.082] compiled for 4.0.2, module version = 1.0.0
    [ 4.082] Module class: X.Org Video Driver
    [ 4.083] (II) NVIDIA dlloader X Driver 331.20 Wed Oct 30 17:16:53 PDT 2013
    [ 4.083] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 4.083] (++) using VT number 7
    [ 4.090] (II) Loading sub module "fb"
    [ 4.090] (II) LoadModule: "fb"
    [ 4.090] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 4.091] (II) Module fb: vendor="X.Org Foundation"
    [ 4.091] compiled for 1.14.5, module version = 1.0.0
    [ 4.091] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 4.091] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 4.091] (II) Loading sub module "wfb"
    [ 4.091] (II) LoadModule: "wfb"
    [ 4.091] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 4.092] (II) Module wfb: vendor="X.Org Foundation"
    [ 4.092] compiled for 1.14.5, module version = 1.0.0
    [ 4.092] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 4.092] (II) Loading sub module "ramdac"
    [ 4.092] (II) LoadModule: "ramdac"
    [ 4.092] (II) Module "ramdac" already built-in
    [ 4.093] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 4.093] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 4.093] (==) NVIDIA(0): RGB weight 888
    [ 4.093] (==) NVIDIA(0): Default visual is TrueColor
    [ 4.093] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 4.094] (**) NVIDIA(0): Enabling 2D acceleration
    [ 4.095] (EE) NVIDIA(0): Failed to initialize the NVIDIA kernel module. Please see the
    [ 4.095] (EE) NVIDIA(0): system's kernel log for additional error messages and
    [ 4.095] (EE) NVIDIA(0): consult the NVIDIA README for details.
    [ 4.095] (EE) NVIDIA(0): *** Aborting ***
    [ 4.095] (EE) NVIDIA(0): Failing initialization of X screen 0
    [ 4.095] (II) UnloadModule: "nvidia"
    [ 4.095] (II) UnloadSubModule: "wfb"
    [ 4.095] (II) UnloadSubModule: "fb"
    [ 4.095] (EE) Screen(s) found, but none have a usable configuration.
    [ 4.095] (EE)
    Fatal server error:
    [ 4.095] (EE) no screens found(EE)
    [ 4.095] (EE)
    Please consult the The X.Org Foundation support
    at [url]http://wiki.x.org[/url]
    for help.
    [ 4.095] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 4.095] (EE)
    [ 4.107] (EE) Server terminated with error (1). Closing log file.
    The only entry I found in `dmesg | grep nvidia` related to nvidia-drm, and seemed to say it was loaded successfully. I didn't save the exact entry and i've reinstalled nouveau now so that I could post this.
    Any help much appriciated. I've been at this for a while. Learning a lot in the process!
    Last edited by gnibbler (2014-01-04 22:31:49)

    Success! Several days of trying various things and I finally give in and make a post to this forum. One more attempt - which was only really so that I could add modprobe info to this post - and it works.
    I had at some stage installed the driver xf86-video-nv, and this may have been causing the clash. I un-installed it, and followed the procedure above to reinstall nvidia.
    I think the main hang up I'd had is that I had not been rebuilding my kernel image with mkinitcpio after installing nvidia during my previous attempts.
    I hope some info in here helps some other stuck archer.
    Edit: Thanks graysky. I had found the right nvidia driver using the arch wiki and followed this advice to remove the nouveau hook. Much appriciated.
    Last edited by gnibbler (2014-01-04 22:35:00)

  • Adobe pop-up message when trying to install a program: "Failed to initialize. File not found. Please download Adobe Support Advisor to detect the problem."

    I have a 64-bit Windows 7 Home Premium PC. I recently had to reinstall my PC. I'm trying to install my Adobe Products like Flash Professional CS5 and Photoshop CS5, but it keeps coming up with the message "Failed to initialize. File not found. Please download Adobe Support Advisor to detect the problem." I keep looking around at different sites, but they seem so difficult and so much information which leaves me so confused. I have no idea how or why this has happened, and due to my autism it leaves me very panicky.
    I've tried the Adobe Creative Cloud Cleaner Tool. Here are the results.
    Gen_WWCombined-en_US-20121017_1230
    [Sat Jun 14 18:50:42 2014] Please enter (y) for Yes or (n) for No. ... >>
    [Sat Jun 14 18:50:44 2014] Choose from one of the following options to clean up :
    [Sat Jun 14 18:50:44 2014] 1.  All
    [Sat Jun 14 18:50:44 2014] 2.  Adobe Flash Player 10.2
    [Sat Jun 14 18:50:44 2014] 3.  Creative Cloud & CS6 Products
    [Sat Jun 14 18:50:44 2014] 4.  CS6 only
    [Sat Jun 14 18:50:44 2014] 5.  CS5-CS5.5-CS6
    [Sat Jun 14 18:50:44 2014] 6.  CS5-CS5.5
    [Sat Jun 14 18:50:44 2014] 7.  CS3, CS4
    [Sat Jun 14 18:50:44 2014] 8.  Adobe Id credentials
    [Sat Jun 14 18:50:44 2014] 9.  Quit
    [Sat Jun 14 18:50:44 2014] Choice :>
    [Sat Jun 14 18:50:46 2014] User selected: All
    [Sat Jun 14 18:50:46 2014] DB does not exist at: C:\Program Files (x86)\Common Files\Adobe\caps\pdb.db
    [Sat Jun 14 18:50:46 2014] DB does not exist at: C:\Program Files (x86)\Common Files\Adobe\caps\Media_db.db
    [Sat Jun 14 18:50:46 2014] DB does not exist at: C:\Program Files (x86)\Common Files\Adobe\caps\caps.db
    [Sat Jun 14 18:50:46 2014] List of products installed on this machine
    [Sat Jun 14 18:50:46 2014] Listing products for cleanup:
    [Sat Jun 14 18:50:46 2014] Please enter the option number of the product you wish to remove; enter (q) to quit ... >>
    [Sat Jun 14 18:50:48 2014] Are you sure you want to clean all the listed products and associated files?
    [Sat Jun 14 18:50:48 2014] Type (y) to confirm and remove or (n) to quit ... >>
    [Sat Jun 14 18:50:50 2014] Please wait for Adobe Creative Cloud Cleaner Tool to finish........
    [Sat Jun 14 18:50:50 2014] :: Cleaning-up left over inventories ::
    [Sat Jun 14 18:50:50 2014] Atleast one Non-RIBS Inventory : False, Atleast one AAMRef: False
    [Sat Jun 14 18:50:50 2014] ::Start:: Removing AUM contents
    [Sat Jun 14 18:50:50 2014] Deleting registry root:HKLM key:Software\Microsoft\Windows\CurrentVersion\Run value:AdobeAAMUpdater-1.0
    [Sat Jun 14 18:50:50 2014] Exception during deleting key : (5, 'RegOpenKeyEx', 'Access is denied.')
    [Sat Jun 14 18:50:50 2014] Deleting registry root:HKLM key:Software\Microsoft\Windows\CurrentVersion\Run value:ADOBE_UPDATER_STARTUP_UTILITY
    [Sat Jun 14 18:50:50 2014] Exception during deleting key : (5, 'RegOpenKeyEx', 'Access is denied.')
    [Sat Jun 14 18:50:50 2014] Deleting scheduled task : AdobeAAMUpdater-1.0-Stefan-PC-Stefan
    [Sat Jun 14 18:50:50 2014] Executing command: schtasks /delete /TN "AdobeAAMUpdater-1.0-Stefan-PC-Stefan" /F
    [Sat Jun 14 18:50:50 2014] ERROR: The system cannot find the file specified.
    [Sat Jun 14 18:50:50 2014] Deleting scheduled task : AdobeUpdater Task-Stefan-PC-Stefan
    [Sat Jun 14 18:50:50 2014] Executing command: schtasks /delete /TN "AdobeUpdater Task-Stefan-PC-Stefan" /F
    [Sat Jun 14 18:50:50 2014] ERROR: The system cannot find the file specified.
    [Sat Jun 14 18:50:50 2014] ::Finish:: Removing AUM contents
    [Sat Jun 14 18:50:50 2014] ::Start:: Removing OOBE
    [Sat Jun 14 18:50:50 2014] Executing command "taskkill /F /FI "IMAGENAME eq AAM Updates Notifier.exe""
    [Sat Jun 14 18:50:50 2014] INFO: No tasks running with the specified criteria.
    [Sat Jun 14 18:50:50 2014] ::Finish:: Removing OOBE
    [Sat Jun 14 18:50:50 2014] Removing content of Product : CS5Installer, Version : CS5
    [Sat Jun 14 18:50:50 2014] File does not exist: C:\Program Files (x86)\Common Files\Adobe\caps\pdb.db
    [Sat Jun 14 18:50:50 2014] File does not exist: C:\Program Files (x86)\Common Files\Adobe\caps\Media_db.db
    [Sat Jun 14 18:50:50 2014] LOG FILE SAVED TO: C:\Users\Stefan\AppData\Local\Temp\Adobe Creative Cloud Cleaner Tool.log
    [Sat Jun 14 18:50:50 2014] Adobe Creative Cloud Cleaner Tool completed successfully
    [Sat Jun 14 18:50:50 2014]
    [Sat Jun 14 18:50:50 2014] *-*-*-*-*-*- ::START:: - SUMMARY OF Warnings -*-*-*-*-*-*
    [Sat Jun 14 18:50:46 2014] DB does not exist at: C:\Program Files (x86)\Common Files\Adobe\caps\pdb.db
    [Sat Jun 14 18:50:46 2014] DB does not exist at: C:\Program Files (x86)\Common Files\Adobe\caps\Media_db.db
    [Sat Jun 14 18:50:46 2014] DB does not exist at: C:\Program Files (x86)\Common Files\Adobe\caps\caps.db
    [Sat Jun 14 18:50:50 2014] *-*-*-*-*-*- :: END :: - SUMMARY OF Warnings -*-*-*-*-*-*
    [Sat Jun 14 18:50:50 2014] ---------------------------------------------------------
    [Sat Jun 14 18:50:50 2014] *=*=*=*=*=*=*=*=* :: End Session :: *=*=*=*=*=*=*=*=*=*=*

    06/12/14 18:38:09:881 | [ERROR] |  | ASU | LWANative | P7Native |  |  | 19104 | OOBElib returned error: 34
    06/12/14 18:38:10:271 | [FATAL] |  | ASU | DWANative | DWANative |  |  | 19104 | Error in getting Payload 8
    06/12/14 18:38:11:878 | [ERROR] |  | ASU | DWANative | DWANative |  |  | 19104 | Error in dwa_getInstalledPathOfPayload, pdbSession is NULL.
    06/12/14 18:38:13:519 | [ERROR] |  | ASU | DWANative | DWANative |  |  | 19104 | Error in dwa_getInstalledPathOfPayload, pdbSession is NULL.
    06/12/14 18:44:30:229 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 860 | Failed in key3List generation
    06/12/14 18:44:31:074 | [ERROR] |  | ASU | PIM | PIM |  |  | 3576 | CreateProcess failed (267).
    06/12/14 18:46:40:335 | [ERROR] |  | ASU | PIM | PIM |  |  | 3576 | Process CreativeCloud(URIHandler).exe could not be killed
    06/12/14 18:46:40:335 | [ERROR] |  | ASU | PIM | PIM |  |  | 3576 | Process Creative Cloud Helper.exe could not be killed
    06/12/14 18:46:40:335 | [ERROR] |  | ASU | PIM | PIM |  |  | 3576 | Process Creative Cloud Uninstaller.exe could not be killed
    06/12/14 18:48:07:424 | [ERROR] |  | ASU | PIM | PIM |  |  | 3576 | Setting values for registry Key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Creative Cloud
    06/12/14 18:48:13:709 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 7652 | Failed in key3List generation
    06/12/14 18:48:16:239 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 7652 | Failed in key3List generation
    06/12/14 18:48:19:174 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 7652 | Failed in key3List generation
    06/12/14 18:48:21:342 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 7652 | Failed in key3List generation
    06/12/14 18:49:03:907 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 14092 | Failed in key3List generation
    06/12/14 18:49:08:386 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 14136 | Failed in key3List generation
    06/12/14 18:49:11:475 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 14136 | Failed in key3List generation
    06/12/14 18:49:13:361 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 14136 | Failed in key3List generation
    06/12/14 18:50:46:267 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 15932 | Failed in key3List generation
    06/12/14 18:50:49:357 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 15576 | Failed in key3List generation
    06/12/14 18:50:55:101 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 7024 | Failed in key3List generation
    06/12/14 18:52:48:711 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 18100 | Failed in key3List generation
    06/12/14 18:52:52:182 | [ERROR] |  | ASU | LWANative | OPM |  |  | 18100 | received empty url from dispatchlib
    06/12/14 18:52:55:816 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 18100 | Failed in key3List generation
    06/12/14 18:52:56:518 | [ERROR] |  | ASU | LWANative | P7Native |  |  | 18100 | OOBElib returned error: 42
    06/12/14 18:53:23:278 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 18100 | Failed in key3List generation
    6/13/2014 21:51:48 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/13/2014 21:51:48 [ERROR] Setup - Error finding english dictionary file.
    6/13/2014 21:51:48 [ERROR] Setup - Unable to initialize ZString library
    6/13/2014 21:51:48 [FATAL] Setup - Setup.xml does not exist.
    6/13/2014 21:51:48 [FATAL] Setup - Unable to initialize. File missing.
    06/13/14 21:58:34:931 | [ERROR] |  | ASU | PIM | PIM |  |  | 21844 | CreateProcess failed (267).
    06/13/14 21:59:49:357 | [ERROR] |  | ASU | PIM | PIM |  |  | 21844 | Process CreativeCloud(URIHandler).exe could not be killed
    06/13/14 21:59:49:360 | [ERROR] |  | ASU | PIM | PIM |  |  | 21844 | Process Creative Cloud Helper.exe could not be killed
    06/13/14 21:59:49:363 | [ERROR] |  | ASU | PIM | PIM |  |  | 21844 | Process Creative Cloud Uninstaller.exe could not be killed
    06/13/14 22:01:13:116 | [ERROR] |  | ASU | PIM | PIM |  |  | 21844 | Setting values for registry Key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Creative Cloud
    06/13/14 22:01:13:121 | [ERROR] |  | ASU | PIM | PIM |  |  | 21844 | AAM ref file already exists at  2 C:\Program Files (x86)\Common Files\Adobe\AdobeApplicationManager\AAMRefs/ACC.aamref/RefCount.txt
    06/13/14 22:01:24:817 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 10872 | Failed in key3List generation
    06/13/14 22:01:29:716 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 10872 | Failed in key3List generation
    06/13/14 22:01:33:893 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 10872 | Failed in key3List generation
    06/13/14 22:01:35:676 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 10872 | Failed in key3List generation
    06/13/14 22:01:39:720 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 6244 | Failed in key3List generation
    06/13/14 22:01:41:220 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 6244 | Failed in key3List generation
    06/13/14 22:01:42:860 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 6244 | Failed in key3List generation
    06/13/14 22:02:56:630 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 20716 | Failed in key3List generation
    06/13/14 22:03:03:420 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 14200 | Failed in key3List generation
    06/13/14 22:04:23:916 | [ERROR] |  | ASU | OPM | P7Native |  |  | 14200 | ACCC : Cannot find LEIDs/LEID tags in the request data
    06/14/14 08:50:35:502 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 2856 | Failed in key3List generation
    06/14/14 08:50:46:796 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 2856 | Failed in key3List generation
    06/14/14 08:50:56:343 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 2856 | Failed in key3List generation
    06/14/14 08:51:01:148 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 2856 | Failed in key3List generation
    06/14/14 08:51:05:189 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 4816 | Failed in key3List generation
    06/14/14 08:51:08:012 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 4816 | Failed in key3List generation
    06/14/14 08:51:10:976 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 4816 | Failed in key3List generation
    06/14/14 08:53:05:074 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 5136 | Failed in key3List generation
    06/14/14 08:53:15:688 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3444 | Failed in key3List generation
    06/14/14 08:54:36:596 | [ERROR] |  | ASU | OPM | P7Native |  |  | 3444 | ACCC : Cannot find LEIDs/LEID tags in the request data
    6/14/2014 11:21:45 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 11:21:45 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 11:21:45 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 11:21:45 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 11:21:45 [FATAL] Setup - Unable to initialize. File missing.
    06/14/14 11:41:50:067 | [WARN] |  | ASU | OPM | IMSLibData |  |  | 1424 | IMSLibData destructor completed
    06/14/14 11:41:56:987 | [ERROR] |  | ASU | PIM | PIM |  |  | 12296 | Failed to Move srcPath:C:\Program Files (x86)\Adobe\Adobe Creative Cloud destPath:C:\Users\Stefan\AppData\Local\Temp\\{7C97F705-ADDE-409B-9ABF-75ADEC23094E}\Adobe Creative Cloud error :5
    06/14/14 11:41:56:987 | [ERROR] |  | ASU | PIM | PIM-Uninstall |  |  | 12296 | Failed to move folder 'C:\Program Files (x86)\Adobe\Adobe Creative Cloud' to 'C:\Users\Stefan\AppData\Local\Temp\\{7C97F705-ADDE-409B-9ABF-75ADEC23094E}\Adobe Creative Cloud'
    06/14/14 11:41:56:987 | [ERROR] |  | ASU | PIM | PIM-Uninstall |  |  | 12296 | Failed to remove ACCC Files.
    06/14/14 11:41:56:987 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 12296 | ACC uninstallation failed. RetVal: -8
    06/14/14 11:41:57:019 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 12296 | Unable to unload AdobePIM library properly.
    06/14/14 11:41:57:019 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 12296 | Failed to remove folders.
    6/14/2014 12:17:04 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:17:04 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:17:04 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:19:44 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:19:44 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:19:44 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:19:44 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 12:19:44 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 12:19:46 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:19:46 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:19:46 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:19:46 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 12:19:46 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 12:20:00 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:20:00 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:20:00 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:20:00 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 12:20:00 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 12:23:51 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:23:51 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:23:51 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:23:51 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 12:23:51 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 12:26:52 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:26:52 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:26:52 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:26:52 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 12:26:52 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 12:31:21 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:31:21 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:31:21 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:31:52 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:31:52 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:31:52 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:31:52 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 12:31:52 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 12:41:21 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 12:41:21 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 12:41:21 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 12:41:21 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 12:41:21 [FATAL] Setup - Unable to initialize. File missing.
    06/14/14 13:02:56:146 | [ERROR] |  | ASU | PIM | PIM |  |  | 4828 | CreateProcess failed (267).
    06/14/14 13:04:14:196 | [ERROR] |  | ASU | PIM | PIM |  |  | 4828 | Process CreativeCloud(URIHandler).exe could not be killed
    06/14/14 13:04:14:196 | [ERROR] |  | ASU | PIM | PIM |  |  | 4828 | Process Creative Cloud Helper.exe could not be killed
    06/14/14 13:04:14:196 | [ERROR] |  | ASU | PIM | PIM |  |  | 4828 | Process Creative Cloud Uninstaller.exe could not be killed
    06/14/14 13:05:40:969 | [ERROR] |  | ASU | PIM | PIM |  |  | 4828 | Setting values for registry Key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Creative Cloud
    06/14/14 13:05:40:969 | [ERROR] |  | ASU | PIM | PIM |  |  | 4828 | AAM ref file already exists at  2 C:\Program Files (x86)\Common Files\Adobe\AdobeApplicationManager\AAMRefs/ACC.aamref/RefCount.txt
    06/14/14 13:08:09:854 | [ERROR] |  | ASU | OPM | P7Native |  |  | 1928 | ACCC : Cannot find LEIDs/LEID tags in the request data
    6/14/2014 13:10:27 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 13:10:27 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 13:10:27 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 13:10:27 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 13:10:27 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 13:17:20 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 13:17:20 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 13:17:20 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 13:17:20 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 13:17:20 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 13:17:24 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 13:17:24 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 13:17:24 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 13:17:24 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 13:17:24 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 13:10:32 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 13:10:32 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 13:10:32 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 13:10:32 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 13:10:32 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 13:26:53 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 13:26:53 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 13:26:53 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 13:26:53 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 13:26:53 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 13:42:35 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 13:42:35 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 13:42:35 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 13:42:35 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 13:42:35 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 13:52:02 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 13:52:02 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 13:52:02 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 13:52:02 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 13:52:02 [FATAL] Setup - Unable to initialize. File missing.
    06/14/14 13:52:41:307 | [ERROR] |  | ASU | OPM | P7Native |  |  | 1780 | ACCC : Cannot find LEIDs/LEID tags in the request data
    06/14/14 13:57:13:245 | [ERROR] |  | ASU | PIM | PIM |  |  | 5692 | Failed to Move srcPath:C:\Program Files (x86)\Adobe\Adobe Creative Cloud destPath:C:\Users\Stefan\AppData\Local\Temp\\{CC352008-55F6-48A1-85CB-73E13CD26821}\Adobe Creative Cloud error :5
    06/14/14 13:57:13:245 | [ERROR] |  | ASU | PIM | PIM-Uninstall |  |  | 5692 | Failed to move folder 'C:\Program Files (x86)\Adobe\Adobe Creative Cloud' to 'C:\Users\Stefan\AppData\Local\Temp\\{CC352008-55F6-48A1-85CB-73E13CD26821}\Adobe Creative Cloud'
    06/14/14 13:57:13:245 | [ERROR] |  | ASU | PIM | PIM-Uninstall |  |  | 5692 | Failed to remove ACCC Files.
    06/14/14 13:57:13:245 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 5692 | ACC uninstallation failed. RetVal: -8
    06/14/14 13:57:13:261 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 5692 | Unable to unload AdobePIM library properly.
    06/14/14 13:57:13:261 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 5692 | Failed to remove folders.
    06/14/14 13:59:49:116 | [ERROR] |  | ASU | OPM | P7Native |  |  | 1780 | ACCC : Cannot find LEIDs/LEID tags in the request data
    06/14/14 13:59:52:128 | [ERROR] |  | ASU | PIM | PIM |  |  | 5084 | Process returned error:201
    06/14/14 13:59:52:128 | [ERROR] |  | ASU | PIM | PIM |  |  | 5084 | Error occurred executing uninstall modifier at path: 'C:\Program Files (x86)\Adobe\Adobe Creative Cloud\CoreSync\customhook\CoreSyncCustomHook.exe'. Error code: 201
    06/14/14 13:59:56:168 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 5084 | Unable to unload AdobePIM library properly.
    06/14/14 13:59:56:262 | [ERROR] |  | ASU | PIM | Utilities |  |  | 2780 | CreateProcess failed (267).
    06/14/14 14:00:01:535 | [ERROR] |  | ASU | PIM | PIM |  |  | 2780 | Unable to free PIM object
    6/14/2014 16:02:47 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 16:02:47 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 16:02:47 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 16:02:47 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 16:02:47 [FATAL] Setup - Unable to initialize. File missing.
    06/14/14 16:10:15:499 | [ERROR] |  | ASU | AAMCustomHook | AAMCustomHook |  |  | 4628 | Inventory not present at Location: 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\UWA\updaterinventory.dll'
    06/14/14 16:14:03:629 | [ERROR] |  | ASU | PIM | PIM |  |  | 8580 | CreateProcess failed (267).
    06/14/14 16:15:52:208 | [ERROR] |  | ASU | PIM | PIM |  |  | 8580 | Process CreativeCloud(URIHandler).exe could not be killed
    06/14/14 16:15:52:208 | [ERROR] |  | ASU | PIM | PIM |  |  | 8580 | Process Creative Cloud Helper.exe could not be killed
    06/14/14 16:15:52:208 | [ERROR] |  | ASU | PIM | PIM |  |  | 8580 | Process Creative Cloud Uninstaller.exe could not be killed
    06/14/14 16:16:58:883 | [ERROR] |  | ASU | PIM | PIM |  |  | 8580 | Setting values for registry Key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Creative Cloud
    06/14/14 16:31:27:792 | [ERROR] |  | ASU | OPM | P7Native |  |  | 5228 | ACCC : Cannot find LEIDs/LEID tags in the request data
    6/14/2014 16:43:06 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 16:43:06 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 16:43:06 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 16:43:06 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 16:43:06 [FATAL] Setup - Unable to initialize. File missing.
    06/14/14 16:46:24:800 | [ERROR] |  | ASU | LWANative | OPM |  |  | 5776 | received empty url from dispatchlib
    06/14/14 16:46:29:449 | [ERROR] |  | ASU | LWANative | P7Native |  |  | 5776 | OOBElib returned error: 42
    06/14/14 16:49:04:438 | [ERROR] |  | ASU | LWANative | OPM |  |  | 4344 | received empty url from dispatchlib
    06/14/14 16:49:10:113 | [ERROR] |  | ASU | LWANative | P7Native |  |  | 4344 | OOBElib returned error: 42
    6/14/2014 17:06:21 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 17:06:21 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 17:06:21 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 17:06:21 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 17:06:21 [FATAL] Setup - Unable to initialize. File missing.
    06/14/14 17:13:05:437 | [ERROR] |  | ASU | AAMCustomHook | AAMCustomHook |  |  | 4372 | Inventory not present at Location: 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\UWA\updaterinventory.dll'
    06/14/14 17:16:38:593 | [ERROR] |  | ASU | PIM | PIM |  |  | 4472 | CreateProcess failed (267).
    06/14/14 17:18:24:378 | [ERROR] |  | ASU | PIM | PIM |  |  | 4472 | Process CreativeCloud(URIHandler).exe could not be killed
    06/14/14 17:18:24:378 | [ERROR] |  | ASU | PIM | PIM |  |  | 4472 | Process Creative Cloud Helper.exe could not be killed
    06/14/14 17:18:24:393 | [ERROR] |  | ASU | PIM | PIM |  |  | 4472 | Process Creative Cloud Uninstaller.exe could not be killed
    06/14/14 17:19:33:131 | [ERROR] |  | ASU | PIM | PIM |  |  | 4472 | Setting values for registry Key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Creative Cloud
    06/14/14 17:21:08:140 | [ERROR] |  | ASU | OPM | P7Native |  |  | 1572 | ACCC : Cannot find LEIDs/LEID tags in the request data
    6/14/2014 17:36:25 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 17:36:25 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 17:36:25 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 17:36:25 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 17:36:25 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 17:40:42 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 17:40:42 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 17:40:42 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 17:40:42 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 17:40:42 [FATAL] Setup - Unable to initialize. File missing.
    06/14/14 18:16:12:120 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 7080 | Unable to unload AdobePIM library properly.
    06/14/14 18:16:12:135 | [ERROR] |  | ACC-Uninstaller |  | Uninstaller |  |  | 7080 | Failed to delete C:\Users\Stefan\AppData\Local\Adobe\OOBE\com.adobe.accc.home
    06/14/14 18:16:12:526 | [ERROR] |  | ASU | PIM | Utilities |  |  | 5292 | CreateProcess failed (267).
    06/14/14 18:16:19:065 | [ERROR] |  | ASU | PIM | PIM |  |  | 5292 | Unable to free PIM object
    6/14/2014 18:43:51 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 18:43:51 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 18:43:51 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 18:43:51 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 18:43:51 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 18:48:04 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 18:48:04 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 18:48:04 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 18:48:04 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 18:48:04 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 18:57:10 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 18:57:10 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 18:57:10 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 18:57:10 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 18:57:10 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 19:35:02 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 19:35:02 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 19:35:02 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 19:35:02 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 19:35:02 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 19:35:08 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 19:35:08 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 19:35:08 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 19:35:08 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 19:35:08 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 20:33:29 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 20:33:29 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 20:33:29 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 20:33:29 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 20:33:29 [FATAL] Setup - Unable to initialize. File missing.
    6/14/2014 21:47:33 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/14/2014 21:47:33 [ERROR] Setup - Error finding english dictionary file.
    6/14/2014 21:47:33 [ERROR] Setup - Unable to initialize ZString library
    6/14/2014 21:47:33 [FATAL] Setup - Setup.xml does not exist.
    6/14/2014 21:47:33 [FATAL] Setup - Unable to initialize. File missing.
    06/15/14 16:52:16:579 | [ERROR] |  | ASU | AAMCustomHook | AAMCustomHook |  |  | 1492 | Inventory not present at Location: 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\UWA\updaterinventory.dll'
    6/15/2014 16:56:36 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/15/2014 16:56:36 [ERROR] Setup - Error finding english dictionary file.
    6/15/2014 16:56:36 [ERROR] Setup - Unable to initialize ZString library
    6/15/2014 16:56:36 [FATAL] Setup - Setup.xml does not exist.
    6/15/2014 16:56:36 [FATAL] Setup - Unable to initialize. File missing.
    6/15/2014 17:01:19 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/15/2014 17:01:19 [ERROR] Setup - Error finding english dictionary file.
    6/15/2014 17:01:19 [ERROR] Setup - Unable to initialize ZString library
    6/15/2014 17:01:19 [FATAL] Setup - Setup.xml does not exist.
    6/15/2014 17:01:19 [FATAL] Setup - Unable to initialize. File missing.
    06/15/14 17:03:45:215 | [ERROR] |  | ASU | AAMCustomHook | AAMCustomHook |  |  | 5128 | Inventory not present at Location: 'C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\\UWA\updaterinventory.dll'
    6/15/2014 17:04:56 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/15/2014 17:04:56 [ERROR] Setup - Error finding english dictionary file.
    6/15/2014 17:04:56 [ERROR] Setup - Unable to initialize ZString library
    6/15/2014 17:04:56 [FATAL] Setup - Setup.xml does not exist.
    6/15/2014 17:04:56 [FATAL] Setup - Unable to initialize. File missing.
    06/15/14 17:07:20:253 | [ERROR] |  | ASU | PIM | PIM |  |  | 5336 | CreateProcess failed (267).
    06/15/14 17:09:07:737 | [ERROR] |  | ASU | PIM | PIM |  |  | 5336 | Process CreativeCloud(URIHandler).exe could not be killed
    06/15/14 17:09:07:752 | [ERROR] |  | ASU | PIM | PIM |  |  | 5336 | Process Creative Cloud Helper.exe could not be killed
    06/15/14 17:09:07:752 | [ERROR] |  | ASU | PIM | PIM |  |  | 5336 | Process Creative Cloud Uninstaller.exe could not be killed
    06/15/14 17:10:08:686 | [ERROR] |  | ASU | PIM | PIM |  |  | 5336 | Setting values for registry Key SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Creative Cloud
    06/15/14 17:11:37:076 | [ERROR] |  | ASU | OPM | P7Native |  |  | 2140 | ACCC : Cannot find LEIDs/LEID tags in the request data
    06/15/14 18:26:02:586 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3564 | Failed in key3List generation
    06/15/14 18:26:06:033 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3564 | Failed in key3List generation
    06/15/14 18:26:09:591 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3564 | Failed in key3List generation
    06/15/14 18:26:17:812 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3564 | Failed in key3List generation
    06/15/14 18:26:24:193 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3900 | Failed in key3List generation
    06/15/14 18:26:26:735 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3900 | Failed in key3List generation
    06/15/14 18:26:29:606 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3900 | Failed in key3List generation
    06/15/14 18:28:20:953 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3396 | Failed in key3List generation
    06/15/14 18:28:22:808 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 3396 | Failed in key3List generation
    06/15/14 18:28:44:834 | [ERROR] |  | ASU | OPM | CryptEngine |  |  | 5056 | Failed in key3List generation
    06/15/14 18:34:14:628 | [FATAL] |  | ASU | PDApp | PDApp |  |  | 5668 | Another deployment workflow already running.
    06/15/14 18:34:14:628 | [ERROR] |  | ASU | PDApp | PDApp |  |  | 5668 | Error finding locale language dictionary file. Defaulting to english.
    06/15/14 18:34:32:187 | [FATAL] |  | ASU | PDApp | PDApp |  |  | 2544 | Another deployment workflow already running.
    06/15/14 18:34:32:187 | [ERROR] |  | ASU | PDApp | PDApp |  |  | 2544 | Error finding locale language dictionary file. Defaulting to english.
    06/15/14 18:35:02:236 | [FATAL] |  | ASU | PDApp | PDApp |  |  | 4636 | Another deployment workflow already running.
    06/15/14 18:35:02:236 | [ERROR] |  | ASU | PDApp | PDApp |  |  | 4636 | Error finding locale language dictionary file. Defaulting to english.
    6/15/2014 18:37:24 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/15/2014 18:37:24 [ERROR] Setup - Error finding english dictionary file.
    6/15/2014 18:37:24 [ERROR] Setup - Unable to initialize ZString library
    6/15/2014 18:37:24 [FATAL] Setup - Setup.xml does not exist.
    6/15/2014 18:37:24 [FATAL] Setup - Unable to initialize. File missing.
    6/15/2014 19:08:56 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/15/2014 19:08:56 [ERROR] Setup - Error finding english dictionary file.
    6/15/2014 19:08:56 [ERROR] Setup - Unable to initialize ZString library
    6/15/2014 19:08:56 [FATAL] Setup - Setup.xml does not exist.
    6/15/2014 19:08:56 [FATAL] Setup - Unable to initialize. File missing.
    6/15/2014 19:10:48 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/15/2014 19:10:48 [ERROR] Setup - Error finding english dictionary file.
    6/15/2014 19:10:48 [ERROR] Setup - Unable to initialize ZString library
    6/15/2014 19:10:48 [FATAL] Setup - Setup.xml does not exist.
    6/15/2014 19:10:48 [FATAL] Setup - Unable to initialize. File missing.
    6/17/2014 12:14:16 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/17/2014 12:14:16 [ERROR] Setup - Error finding english dictionary file.
    6/17/2014 12:14:16 [ERROR] Setup - Unable to initialize ZString library
    6/17/2014 12:14:16 [FATAL] Setup - Setup.xml does not exist.
    6/17/2014 12:14:16 [FATAL] Setup - Unable to initialize. File missing.
    6/17/2014 12:35:38 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/17/2014 12:35:38 [ERROR] Setup - Error finding english dictionary file.
    6/17/2014 12:35:38 [ERROR] Setup - Unable to initialize ZString library
    6/17/2014 12:35:38 [FATAL] Setup - Setup.xml does not exist.
    6/17/2014 12:35:38 [FATAL] Setup - Unable to initialize. File missing.
    6/17/2014 20:54:13 [ERROR] Setup - Error finding locale language dictionary file. Defaulting to english.
    6/17/2014 20:54:13 [ERROR] Setup - Error finding english dictionary file.
    6/17/2014 20:54:13 [ERROR] Setup - Unable to initialize ZString library
    6/17/2014 20:54:13 [FATAL] Setup - Setup.xml does not exist.
    6/17/2014 20:54:13 [FATAL] Setup - Unable to initialize. File missing.

  • [SOLVED] Bumblebee: Failed to initialize GPU with Lenovo ThinkPad W530

    SOLVED: See post #20
    After years, I decided to come back to the wonderful distro, Arch and back to the forums. Yay!
    However, I installed Arch to my new laptop - Lenovo ThinkPad W530 and it uses NVIDIA Quadro K1000M alongside Intel graphics with Optimus technology. Arch is running fine, but I cannot run applications through optirun and I get:
    [exitium@rambutan ~]$ optirun -vv nvidia-settings
    [ 485.536478] [DEBUG]Reading file: /etc/bumblebee/bumblebee.conf
    [ 485.536909] [DEBUG]optirun version 3.2.1 starting...
    [ 485.536922] [DEBUG]Active configuration:
    [ 485.536927] [DEBUG] bumblebeed config file: /etc/bumblebee/bumblebee.conf
    [ 485.536931] [DEBUG] X display: :8
    [ 485.536934] [DEBUG] LD_LIBRARY_PATH: /usr/lib/nvidia:/usr/lib32/nvidia
    [ 485.536938] [DEBUG] Socket path: /var/run/bumblebee.socket
    [ 485.536941] [DEBUG] Accel/display bridge: auto
    [ 485.536945] [DEBUG] VGL Compression: proxy
    [ 485.536948] [DEBUG] VGLrun extra options:
    [ 485.536952] [DEBUG] Primus LD Path: /usr/lib/primus:/usr/lib32/primus
    [ 485.536972] [DEBUG]Using auto-detected bridge virtualgl
    [ 485.537190] [INFO]Response: No - error: [XORG] (EE) NVIDIA(0): Failed to initialize the NVIDIA GPU at PCI:1:0:0. Please
    [ 485.537204] [ERROR]Cannot access secondary GPU - error: [XORG] (EE) NVIDIA(0): Failed to initialize the NVIDIA GPU at PCI:1:0:0. Please
    [ 485.537209] [DEBUG]Socket closed.
    [ 485.537223] [ERROR]Aborting because fallback start is disabled.
    [ 485.537229] [DEBUG]Killing all remaining processes.
    As seen, it says "Failed to initialize the NVIDIA GPU". I have tried different solutions found from these forums and several other places but none of them have worked - the problem remains same. Does anyone have idea how I could fix this? I read somewhere else that there could be issues with newest nvidia drivers - is this possible?
    bumblebee.conf:
    # Configuration file for Bumblebee. Values should **not** be put between quotes
    ## Server options. Any change made in this section will need a server restart
    # to take effect.
    [bumblebeed]
    # The secondary Xorg server DISPLAY number
    VirtualDisplay=:8
    # Should the unused Xorg server be kept running? Set this to true if waiting
    # for X to be ready is too long and don't need power management at all.
    KeepUnusedXServer=false
    # The name of the Bumbleblee server group name (GID name)
    ServerGroup=bumblebee
    # Card power state at exit. Set to false if the card shoud be ON when Bumblebee
    # server exits.
    TurnCardOffAtExit=false
    # The default behavior of '-f' option on optirun. If set to "true", '-f' will
    # be ignored.
    NoEcoModeOverride=false
    # The Driver used by Bumblebee server. If this value is not set (or empty),
    # auto-detection is performed. The available drivers are nvidia and nouveau
    # (See also the driver-specific sections below)
    Driver=
    # Directory with a dummy config file to pass as a -configdir to secondary X
    XorgConfDir=/etc/bumblebee/xorg.conf.d
    ## Client options. Will take effect on the next optirun executed.
    [optirun]
    # Acceleration/ rendering bridge, possible values are auto, virtualgl and
    # primus.
    Bridge=auto
    # The method used for VirtualGL to transport frames between X servers.
    # Possible values are proxy, jpeg, rgb, xv and yuv.
    VGLTransport=proxy
    # List of paths which are searched for the primus libGL.so.1 when using
    # the primus bridge
    PrimusLibraryPath=/usr/lib/primus:/usr/lib32/primus
    # Should the program run under optirun even if Bumblebee server or nvidia card
    # is not available?
    AllowFallbackToIGC=false
    # Driver-specific settings are grouped under [driver-NAME]. The sections are
    # parsed if the Driver setting in [bumblebeed] is set to NAME (or if auto-
    # detection resolves to NAME).
    # PMMethod: method to use for saving power by disabling the nvidia card, valid
    # values are: auto - automatically detect which PM method to use
    # bbswitch - new in BB 3, recommended if available
    # switcheroo - vga_switcheroo method, use at your own risk
    # none - disable PM completely
    # https://github.com/Bumblebee-Project/Bumblebee/wiki/Comparison-of-PM-methods
    ## Section with nvidia driver specific options, only parsed if Driver=nvidia
    [driver-nvidia]
    # Module name to load, defaults to Driver if empty or unset
    KernelDriver=nvidia
    PMMethod=auto
    # colon-separated path to the nvidia libraries
    LibraryPath=/usr/lib/nvidia:/usr/lib32/nvidia
    # comma-separated path of the directory containing nvidia_drv.so and the
    # default Xorg modules path
    XorgModulePath=/usr/lib/nvidia/xorg/,/usr/lib/xorg/modules
    XorgConfFile=/etc/bumblebee/xorg.conf.nvidia
    ## Section with nouveau driver specific options, only parsed if Driver=nouveau
    [driver-nouveau]
    KernelDriver=nouveau
    PMMethod=auto
    XorgConfFile=/etc/bumblebee/xorg.conf.nouveau
    xorg.conf.nvidia
    Section "ServerLayout"
    Identifier "Layout0"
    Option "AutoAddDevices" "false"
    Option "AutoAddGPU" "false"
    Option "UseDisplayDevice" "none"
    EndSection
    Section "Device"
    Identifier "DiscreteNvidia"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    # If the X server does not automatically detect your VGA device,
    # you can manually set it here.
    # To get the BusID prop, run `lspci | egrep 'VGA|3D'` and input the data
    # as you see in the commented example.
    # This Setting may be needed in some platforms with more than one
    # nvidia card, which may confuse the proprietary driver (e.g.,
    # trying to take ownership of the wrong device). Also needed on Ubuntu 13.04.
    BusID "PCI:01:00:0"
    # Setting ProbeAllGpus to false prevents the new proprietary driver
    # instance spawned to try to control the integrated graphics card,
    # which is already being managed outside bumblebee.
    # This option doesn't hurt and it is required on platforms running
    # more than one nvidia graphics card with the proprietary driver.
    # (E.g. Macbook Pro pre-2010 with nVidia 9400M + 9600M GT).
    # If this option is not set, the new Xorg may blacken the screen and
    # render it unusable (unless you have some way to run killall Xorg).
    Option "ProbeAllGpus" "false"
    Option "NoLogo" "true"
    Option "UseEDID" "false"
    Option "UseDisplayDevice" "none"
    EndSection
    Thank you in advance!
    Last edited by Exitium (2013-12-18 11:29:54)

    Hi!
    Exactly the same issue here. Notebook -> Thinkpad W530
    Currently running on:
    linux 3.11.3-1
    nvidia 325.15-8
    nvidia-utils 325.15-1
    bbswitch 0.7-14
    Error:
    username@hostname ~ $ optirun -vv nvidia-settings
    [  839.449203] [DEBUG]Reading file: /etc/bumblebee/bumblebee.conf
    [  839.449495] [INFO]Configured driver: nvidia
    [  839.449729] [DEBUG]optirun version 3.2.1 starting...
    [  839.449774] [DEBUG]Active configuration:
    [  839.449817] [DEBUG] bumblebeed config file: /etc/bumblebee/bumblebee.conf
    [  839.449836] [DEBUG] X display: :8
    [  839.449856] [DEBUG] LD_LIBRARY_PATH: /usr/lib/nvidia:/usr/lib32/nvidia
    [  839.449875] [DEBUG] Socket path: /var/run/bumblebee.socket
    [  839.449890] [DEBUG] Accel/display bridge: auto
    [  839.449909] [DEBUG] VGL Compression: proxy
    [  839.449936] [DEBUG] VGLrun extra options:
    [  839.449953] [DEBUG] Primus LD Path: /usr/lib/primus:/usr/lib32/primus
    [  839.449996] [DEBUG]Using auto-detected bridge virtualgl
    [  839.450294] [INFO]Response: No - error: [XORG] (EE) NVIDIA(0): Failed to initialize the NVIDIA GPU at PCI:1:0:0.  Please
    [  839.450344] [ERROR]Cannot access secondary GPU - error: [XORG] (EE) NVIDIA(0): Failed to initialize the NVIDIA GPU at PCI:1:0:0.  Please
    [  839.450373] [DEBUG]Socket closed.
    [  839.450398] [ERROR]Aborting because fallback start is disabled.
    [  839.450419] [DEBUG]Killing all remaining processes.
    dmesg output:
    [   81.162604] bbswitch: enabling discrete graphics
    [   81.396637] pci 0000:01:00.0: power state changed by ACPI to D0
    [   81.396663] thinkpad_acpi: EC reports that Thermal Table has changed
    [   81.483200] nvidia: module license 'NVIDIA' taints kernel.
    [   81.483205] Disabling lock debugging due to kernel taint
    [   81.488096] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=none
    [   81.488289] [drm] Initialized nvidia-drm 0.0.0 20130102 for 0000:01:00.0 on minor 1
    [   81.488294] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  325.15  Wed Jul 31 18:50:56 PDT 2013
    [   81.665938] nvidia 0000:01:00.0: irq 50 for MSI/MSI-X
    [   81.670434] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   81.670528] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   81.670594] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   81.670659] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   81.670723] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   81.670960] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   81.671192] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   81.671258] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.879826] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.905471] NVRM: GPU at 0000:01:00.0 has fallen off the bus.
    [   85.905479] NVRM: os_pci_init_handle: invalid context!
    [   85.905481] NVRM: os_pci_init_handle: invalid context!
    [   85.905486] NVRM: GPU at 0000:01:00.0 has fallen off the bus.
    [   85.905490] NVRM: os_pci_init_handle: invalid context!
    [   85.905491] NVRM: os_pci_init_handle: invalid context!
    [   85.930135] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.930442] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.930719] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.930990] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.931258] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.931526] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.931794] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.932062] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.932329] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.932595] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.932862] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.933129] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.933396] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.933662] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.933942] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.934197] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.934452] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.934706] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.934960] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.935215] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.935469] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.935722] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.935976] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20130517/nsarguments-95)
    [   85.940508] NVRM: RmInitAdapter failed! (0x25:0x28:1157)
    [   85.940517] NVRM: rm_init_adapter(0) failed
    xorg.conf.nvidia:
    Section "ServerLayout"
        Identifier  "Layout0"
        Option      "AutoAddDevices" "false"
        Option      "AutoAddGPU" "false"
    EndSection
    Section "Device"
        Identifier  "DiscreteNvidia"
        Driver      "nvidia"
        VendorName  "NVIDIA Corporation"
    #   If the X server does not automatically detect your VGA device,
    #   you can manually set it here.
    #   To get the BusID prop, run `lspci | egrep 'VGA|3D'` and input the data
    #   as you see in the commented example.
    #   This Setting may be needed in some platforms with more than one
    #   nvidia card, which may confuse the proprietary driver (e.g.,
    #   trying to take ownership of the wrong device). Also needed on Ubuntu 13.04.
        BusID "PCI:01:00:0"
    #   Setting ProbeAllGpus to false prevents the new proprietary driver
    #   instance spawned to try to control the integrated graphics card,
    #   which is already being managed outside bumblebee.
    #   This option doesn't hurt and it is required on platforms running
    #   more than one nvidia graphics card with the proprietary driver.
    #   (E.g. Macbook Pro pre-2010 with nVidia 9400M + 9600M GT).
    #   If this option is not set, the new Xorg may blacken the screen and
    #   render it unusable (unless you have some way to run killall Xorg).
        Option "ProbeAllGpus" "false"
        Option "NoLogo" "true"
        Option "UseEDID" "false"
        Option "UseDisplayDevice" "none"
    EndSection
    bumblebee.conf:
    # Configuration file for Bumblebee. Values should **not** be put between quotes
    ## Server options. Any change made in this section will need a server restart
    # to take effect.
    [bumblebeed]
    # The secondary Xorg server DISPLAY number
    VirtualDisplay=:8
    # Should the unused Xorg server be kept running? Set this to true if waiting
    # for X to be ready is too long and don't need power management at all.
    KeepUnusedXServer=false
    # The name of the Bumbleblee server group name (GID name)
    ServerGroup=bumblebee
    # Card power state at exit. Set to false if the card shoud be ON when Bumblebee
    # server exits.
    TurnCardOffAtExit=false
    # The default behavior of '-f' option on optirun. If set to "true", '-f' will
    # be ignored.
    NoEcoModeOverride=false
    # The Driver used by Bumblebee server. If this value is not set (or empty),
    # auto-detection is performed. The available drivers are nvidia and nouveau
    # (See also the driver-specific sections below)
    Driver=nvidia
    # Directory with a dummy config file to pass as a -configdir to secondary X
    XorgConfDir=/etc/bumblebee/xorg.conf.d
    ## Client options. Will take effect on the next optirun executed.
    [optirun]
    # Acceleration/ rendering bridge, possible values are auto, virtualgl and
    # primus.
    Bridge=auto
    # The method used for VirtualGL to transport frames between X servers.
    # Possible values are proxy, jpeg, rgb, xv and yuv.
    VGLTransport=proxy
    # List of paths which are searched for the primus libGL.so.1 when using
    # the primus bridge
    PrimusLibraryPath=/usr/lib/primus:/usr/lib32/primus
    # Should the program run under optirun even if Bumblebee server or nvidia card
    # is not available?
    AllowFallbackToIGC=false
    # Driver-specific settings are grouped under [driver-NAME]. The sections are
    # parsed if the Driver setting in [bumblebeed] is set to NAME (or if auto-
    # detection resolves to NAME).
    # PMMethod: method to use for saving power by disabling the nvidia card, valid
    # values are: auto - automatically detect which PM method to use
    #         bbswitch - new in BB 3, recommended if available
    #       switcheroo - vga_switcheroo method, use at your own risk
    #             none - disable PM completely
    # https://github.com/Bumblebee-Project/Bu … PM-methods
    ## Section with nvidia driver specific options, only parsed if Driver=nvidia
    [driver-nvidia]
    # Module name to load, defaults to Driver if empty or unset
    KernelDriver=nvidia
    PMMethod=auto
    # colon-separated path to the nvidia libraries
    LibraryPath=/usr/lib/nvidia:/usr/lib32/nvidia
    # comma-separated path of the directory containing nvidia_drv.so and the
    # default Xorg modules path
    XorgModulePath=/usr/lib/nvidia/xorg/,/usr/lib/xorg/modules
    XorgConfFile=/etc/bumblebee/xorg.conf.nvidia
    ## Section with nouveau driver specific options, only parsed if Driver=nouveau
    [driver-nouveau]
    KernelDriver=nouveau
    PMMethod=auto
    XorgConfFile=/etc/bumblebee/xorg.conf.nouveau

  • [Bumblebee]Failed to initialize the NVIDIA GPU at PCI:1:0:0.

    Hi!
    I've instaled Arch about a month ago and now wanted to check my nvidia card using Bumblebee, but have some errors…
    [wicu@arch:~]$ optirun -vv minecraft
    [ 4859.259278] [DEBUG]Reading file: /etc/bumblebee/bumblebee.conf
    [ 4859.404191] [DEBUG]optirun version 3.0.1 starting...
    [ 4859.404220] [DEBUG]Active configuration:
    [ 4859.404226] [DEBUG] bumblebeed config file: /etc/bumblebee/bumblebee.conf
    [ 4859.404242] [DEBUG] X display: :8
    [ 4859.404254] [DEBUG] LD_LIBRARY_PATH: /usr/lib/nvidia-bumblebee:/usr/lib32/nvidia-bumblebee
    [ 4859.404265] [DEBUG] Socket path: /var/run/bumblebee.socket
    [ 4859.404276] [DEBUG] VGL Compression: proxy
    [ 4859.536971] [INFO]Response: No - error: [XORG] (EE) NVIDIA(0): Failed to initialize the NVIDIA GPU at PCI:1:0:0. Please
    [ 4859.537027] [ERROR]Cannot access secondary GPU - error: [XORG] (EE) NVIDIA(0): Failed to initialize the NVIDIA GPU at PCI:1:0:0. Please
    [ 4859.537053] [DEBUG]Socket closed.
    [ 4859.537086] [ERROR]Aborting because fallback start is disabled.
    [ 4859.537094] [DEBUG]Killing all remaining processes.
    [wicu@arch:~]$ sudo journalctl // here is only part when I tried use bumblebee
    Nov 26 17:48:43 arch kernel: NVRM: failed to copy vbios to system memory.
    Nov 26 17:48:43 arch bumblebeed[303]: [ 4139.238670] [WARN][XORG] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    Nov 26 17:48:43 arch bumblebeed[303]: [ 4139.238729] [WARN][XORG] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    Nov 26 17:48:43 arch bumblebeed[303]: [ 4139.238765] [WARN][XORG] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    Nov 26 17:48:43 arch bumblebeed[303]: [ 4139.238819] [ERROR][XORG] (EE) NVIDIA(0): Failed to initialize the NVIDIA GPU at PCI:1:0:0. Please
    Nov 26 17:48:43 arch bumblebeed[303]: [ 4139.238826] [ERROR][XORG] (EE) NVIDIA(0): check your system's kernel log for additional error
    Nov 26 17:48:43 arch bumblebeed[303]: [ 4139.238830] [ERROR][XORG] (EE) NVIDIA(0): messages and refer to Chapter 8: Common Problems in the
    Nov 26 17:48:43 arch bumblebeed[303]: [ 4139.238835] [ERROR][XORG] (EE) NVIDIA(0): README for additional information.
    Nov 26 17:48:43 arch bumblebeed[303]: [ 4139.238841] [ERROR][XORG] (EE) NVIDIA(0): Failed to initialize the NVIDIA graphics device!
    Nov 26 17:48:43 arch bumblebeed[303]: [ 4139.238847] [ERROR][XORG] (EE) NVIDIA(0): Failing initialization of X screen 0
    Nov 26 17:48:43 arch bumblebeed[303]: [ 4139.238853] [ERROR][XORG] (EE) Screen(s) found, but none have a usable configuration.
    Nov 26 17:48:43 arch bumblebeed[303]: [ 4139.238858] [ERROR][XORG] (EE)
    Nov 26 17:48:43 arch bumblebeed[303]: [ 4139.238863] [ERROR][XORG] (EE) Please also check the log file at "/var/log/Xorg.8.log" for additional information.
    Nov 26 17:48:43 arch bumblebeed[303]: [ 4139.238868] [ERROR][XORG] (EE)
    Nov 26 17:48:43 arch bumblebeed[303]: [ 4139.238873] [ERROR]X did not start properly
    Nov 26 17:48:43 arch kernel: NVRM: RmInitAdapter failed! (0x30:0xffffffff:739)
    Nov 26 17:48:43 arch kernel: NVRM: rm_init_adapter(0) failed
    // xorg log
    [ 4859.510]
    X.Org X Server 1.13.0
    Release Date: 2012-09-05
    [ 4859.511] X Protocol Version 11, Revision 0
    [ 4859.511] Build Operating System: Linux 3.6.3-1-ARCH x86_64
    [ 4859.511] Current Operating System: Linux arch 3.6.7-1-ARCH #1 SMP PREEMPT Sun Nov 18 10:11:22 CET 2012 x86_64
    [ 4859.511] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=70a6cff9-bcf7-42eb-9ba1-73953e023617 ro quiet
    [ 4859.511] Build Date: 08 November 2012 07:09:29PM
    [ 4859.511]
    [ 4859.511] Current version of pixman: 0.28.0
    [ 4859.511] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 4859.511] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 4859.511] (==) Log file: "/var/log/Xorg.8.log", Time: Mon Nov 26 18:00:43 2012
    [ 4859.511] (++) Using config file: "/etc/bumblebee/xorg.conf.nvidia"
    [ 4859.511] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 4859.511] (==) ServerLayout "Layout0"
    [ 4859.512] (==) No screen section available. Using defaults.
    [ 4859.512] (**) |-->Screen "Default Screen Section" (0)
    [ 4859.512] (**) | |-->Monitor "<default monitor>"
    [ 4859.512] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 4859.512] (**) | |-->Device "Device1"
    [ 4859.512] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 4859.512] (**) Option "AutoAddDevices" "false"
    [ 4859.512] (**) Not automatically adding devices
    [ 4859.512] (==) Automatically enabling devices
    [ 4859.512] (==) Automatically adding GPU devices
    [ 4859.512] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 4859.512] Entry deleted from font path.
    [ 4859.512] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 4859.512] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 4859.512] Entry deleted from font path.
    [ 4859.512] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 4859.512] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
    [ 4859.512] (++) ModulePath set to "/usr/lib/nvidia-bumblebee/xorg/,/usr/lib/xorg/modules"
    [ 4859.512] (==) |-->Input Device "<default pointer>"
    [ 4859.512] (==) |-->Input Device "<default keyboard>"
    [ 4859.512] (==) The core pointer device wasn't specified explicitly in the layout.
    Using the default mouse configuration.
    [ 4859.512] (==) The core keyboard device wasn't specified explicitly in the layout.
    Using the default keyboard configuration.
    [ 4859.512] (II) Loader magic: 0x7fcc40
    [ 4859.512] (II) Module ABI versions:
    [ 4859.512] X.Org ANSI C Emulation: 0.4
    [ 4859.513] X.Org Video Driver: 13.1
    [ 4859.513] X.Org XInput driver : 18.0
    [ 4859.513] X.Org Server Extension : 7.0
    [ 4859.513] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 4859.513] setversion 1.4 failed
    [ 4859.516] (--) PCI:*(0:1:0:0) 10de:0de9:17aa:3901 rev 161, Mem @ 0xd2000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00003000/128, BIOS @ 0x????????/524288
    [ 4859.516] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 4859.516] Initializing built-in extension Generic Event Extension
    [ 4859.516] Initializing built-in extension SHAPE
    [ 4859.516] Initializing built-in extension MIT-SHM
    [ 4859.516] Initializing built-in extension XInputExtension
    [ 4859.516] Initializing built-in extension XTEST
    [ 4859.516] Initializing built-in extension BIG-REQUESTS
    [ 4859.516] Initializing built-in extension SYNC
    [ 4859.516] Initializing built-in extension XKEYBOARD
    [ 4859.516] Initializing built-in extension XC-MISC
    [ 4859.516] Initializing built-in extension SECURITY
    [ 4859.516] Initializing built-in extension XINERAMA
    [ 4859.516] Initializing built-in extension XFIXES
    [ 4859.516] Initializing built-in extension RENDER
    [ 4859.516] Initializing built-in extension RANDR
    [ 4859.516] Initializing built-in extension COMPOSITE
    [ 4859.516] Initializing built-in extension DAMAGE
    [ 4859.516] Initializing built-in extension MIT-SCREEN-SAVER
    [ 4859.516] Initializing built-in extension DOUBLE-BUFFER
    [ 4859.516] Initializing built-in extension RECORD
    [ 4859.516] Initializing built-in extension DPMS
    [ 4859.516] Initializing built-in extension X-Resource
    [ 4859.516] Initializing built-in extension XVideo
    [ 4859.516] Initializing built-in extension XVideo-MotionCompensation
    [ 4859.516] Initializing built-in extension XFree86-VidModeExtension
    [ 4859.516] Initializing built-in extension XFree86-DGA
    [ 4859.516] Initializing built-in extension XFree86-DRI
    [ 4859.516] Initializing built-in extension DRI2
    [ 4859.516] (II) LoadModule: "glx"
    [ 4859.516] (II) Loading /usr/lib/nvidia-bumblebee/xorg/modules/extensions/libglx.so
    [ 4859.526] (II) Module glx: vendor="NVIDIA Corporation"
    [ 4859.526] compiled for 4.0.2, module version = 1.0.0
    [ 4859.526] Module class: X.Org Server Extension
    [ 4859.526] (II) NVIDIA GLX Module 310.19 Thu Nov 8 01:12:43 PST 2012
    [ 4859.526] Loading extension GLX
    [ 4859.526] (II) LoadModule: "nvidia"
    [ 4859.526] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 4859.526] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 4859.526] compiled for 4.0.2, module version = 1.0.0
    [ 4859.526] Module class: X.Org Video Driver
    [ 4859.526] (II) LoadModule: "mouse"
    [ 4859.527] (II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
    [ 4859.527] (II) Module mouse: vendor="X.Org Foundation"
    [ 4859.527] compiled for 1.13.0, module version = 1.8.1
    [ 4859.527] Module class: X.Org XInput Driver
    [ 4859.527] ABI class: X.Org XInput driver, version 18.0
    [ 4859.527] (II) LoadModule: "kbd"
    [ 4859.527] (WW) Warning, couldn't open module kbd
    [ 4859.527] (II) UnloadModule: "kbd"
    [ 4859.527] (II) Unloading kbd
    [ 4859.527] (EE) Failed to load module "kbd" (module does not exist, 0)
    [ 4859.527] (II) NVIDIA dlloader X Driver 310.19 Thu Nov 8 00:53:33 PST 2012
    [ 4859.527] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 4859.527] (--) using VT number 7
    [ 4859.527] (II) Loading sub module "wfb"
    [ 4859.527] (II) LoadModule: "wfb"
    [ 4859.527] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 4859.527] (II) Module wfb: vendor="X.Org Foundation"
    [ 4859.527] compiled for 1.13.0, module version = 1.0.0
    [ 4859.527] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 4859.527] (II) Loading sub module "ramdac"
    [ 4859.527] (II) LoadModule: "ramdac"
    [ 4859.527] (II) Module "ramdac" already built-in
    [ 4859.527] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 4859.527] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 4859.527] (==) NVIDIA(0): RGB weight 888
    [ 4859.527] (==) NVIDIA(0): Default visual is TrueColor
    [ 4859.527] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 4859.527] (**) NVIDIA(0): Option "NoLogo" "true"
    [ 4859.528] (**) NVIDIA(0): Option "UseEDID" "false"
    [ 4859.528] (**) NVIDIA(0): Option "ConnectedMonitor" "DFP"
    [ 4859.528] (**) NVIDIA(0): Enabling 2D acceleration
    [ 4859.528] (**) NVIDIA(0): ConnectedMonitor string: "DFP"
    [ 4859.528] (**) NVIDIA(0): Ignoring EDIDs
    [ 4859.534] (EE) NVIDIA(0): Failed to initialize the NVIDIA GPU at PCI:1:0:0. Please
    [ 4859.534] (EE) NVIDIA(0): check your system's kernel log for additional error
    [ 4859.534] (EE) NVIDIA(0): messages and refer to Chapter 8: Common Problems in the
    [ 4859.534] (EE) NVIDIA(0): README for additional information.
    [ 4859.534] (EE) NVIDIA(0): Failed to initialize the NVIDIA graphics device!
    [ 4859.534] (EE) NVIDIA(0): Failing initialization of X screen 0
    [ 4859.534] (II) UnloadModule: "nvidia"
    [ 4859.534] (II) UnloadSubModule: "wfb"
    [ 4859.534] (EE) Screen(s) found, but none have a usable configuration.
    [ 4859.534]
    Fatal server error:
    [ 4859.534] no screens found
    [ 4859.534] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 4859.534] (EE) Please also check the log file at "/var/log/Xorg.8.log" for additional information.
    [ 4859.534] (EE)
    [ 4859.534] Server terminated with error (1). Closing log file.
    [wicu@arch:~]$ lspci | grep VGA
    3:00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
    14:01:00.0 VGA compatible controller: NVIDIA Corporation GF108 [GeForce GT 630M] (rev a1)
    [wicu@arch:~]$ primusrun minecraft
    Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 9: reading configurations from ~/.fonts.conf is deprecated.
    asdf
    Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 9: reading configurations from ~/.fonts.conf is deprecated.
    Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 9: reading configurations from ~/.fonts.conf is deprecated.
    27 achievements
    208 recipes
    Setting user: Druedain, -4246576297828159265
    primus: fatal: failure contacting bumblebee daemon
    [18:05:39 - wicu@arch:~]$ primusrun minecraft
    Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 9: reading configurations from ~/.fonts.conf is deprecated.
    asdf
    Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 9: reading configurations from ~/.fonts.conf is deprecated.
    27 achievements
    208 recipes
    Setting user: Druedain, -7896572405277476304
    primus: fatal: failure contacting bumblebee daemon
    [wicu@arch:~]$ systemctl | grep bumblebee
    35:bumblebeed.service

    [wicu@arch:~]$ dmesg | grep nvidia
    782:[ 6.776816] nvidia: module license 'NVIDIA' taints kernel.
    784:[ 6.784411] nvidia 0000:01:00.0: enabling device (0006 -> 0007)
    [wicu@arch:~]$ cat /etc/bumblebee/bumblebee.conf
    # Configuration file for Bumblebee. Values should **not** be put between quotes
    ## Server options. Any change made in this section will need a server restart
    # to take effect.
    [bumblebeed]
    # The secondary Xorg server DISPLAY number
    VirtualDisplay=:8
    # Should the unused Xorg server be kept running? Set this to true if waiting
    # for X to be ready is too long and don't need power management at all.
    KeepUnusedXServer=false
    # The name of the Bumbleblee server group name (GID name)
    ServerGroup=bumblebee
    # Card power state at exit. Set to false if the card shoud be ON when Bumblebee
    # server exits.
    TurnCardOffAtExit=false
    # The default behavior of '-f' option on optirun. If set to "true", '-f' will
    # be ignored.
    NoEcoModeOverride=false
    # The Driver used by Bumblebee server. If this value is not set (or empty),
    # auto-detection is performed. The available drivers are nvidia and nouveau
    # (See also the driver-specific sections below)
    Driver=
    ## Client options. Will take effect on the next optirun executed.
    [optirun]
    # The method used for VirtualGL to transport frames between X servers.
    # Possible values are proxy, jpeg, rgb, xv and yuv.
    VGLTransport=proxy
    # Should the program run under optirun even if Bumblebee server or nvidia card
    # is not available?
    AllowFallbackToIGC=false
    # Driver-specific settings are grouped under [driver-NAME]. The sections are
    # parsed if the Driver setting in [bumblebeed] is set to NAME (or if auto-
    # detection resolves to NAME).
    # PMMethod: method to use for saving power by disabling the nvidia card, valid
    # values are: auto - automatically detect which PM method to use
    # bbswitch - new in BB 3, recommended if available
    # switcheroo - vga_switcheroo method, use at your own risk
    # none - disable PM completely
    # https://github.com/Bumblebee-Project/Bumblebee/wiki/Comparison-of-PM-methods
    ## Section with nvidia driver specific options, only parsed if Driver=nvidia
    [driver-nvidia]
    # Module name to load, defaults to Driver if empty or unset
    KernelDriver=nvidia
    Module=nvidia
    PMMethod=auto
    # colon-separated path to the nvidia libraries
    LibraryPath=/usr/lib/nvidia-bumblebee:/usr/lib32/nvidia-bumblebee
    # comma-separated path of the directory containing nvidia_drv.so and the
    # default Xorg modules path
    XorgModulePath=/usr/lib/nvidia-bumblebee/xorg/,/usr/lib/xorg/modules
    XorgConfFile=/etc/bumblebee/xorg.conf.nvidia
    ## Section with nouveau driver specific options, only parsed if Driver=nouveau
    [driver-nouveau]
    KernelDriver=nouveau
    PMMethod=auto
    XorgConfFile=/etc/bumblebee/xorg.conf.nouveau
    [wicu@arch:~]$ cat /etc/bumblebee/xorg.conf.nvidia
    Section "ServerLayout"
    Identifier "Layout0"
    Option "AutoAddDevices" "false"
    EndSection
    Section "Device"
    Identifier "Device1"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    Option "NoLogo" "true"
    Option "UseEDID" "false"
    Option "ConnectedMonitor" "DFP"
    EndSection

  • Xorg Problem - Failed to initialize the NVIDIA graphics device!

    Hello.
    I've encountered a problem while installing my Xorg server, which I'd like to use with KDE.
    Here's the track of my xorg installation:
    # sudo pacman -Syu
    # sudo pacman -S xorg
    (my graphic card is vVidia GeForce 8600 GT)
    # sudo pacman -S nvidia-96xx nvidia-96xx-utils
    # sudo nvidia-xconfig
    (that's where I wanted to check if I did everything right)
    #sudo startx
    Xorg started loading and after a few secs it printed such output:
    NVIDIA: could not open the devie file /dev/nvidia0 (Input/output error).
    (EE) NVIDIA(0): Failed to initialize the NVIDIA graphics device PCI:4:0:0.
    (EE) NVIDIA(0): Please see the COMMON PROBLEMS section in the README for additional information.
    (EE) NVIDIA(0): Failed to initialize the NVIDIA graphics device!
    (EE) NVIDIA(0): *** Aborting ***
    (EE) Screen(s) found, but none have a usabe configuration.
    Fatal server error:
    no screens found
    giving up.
    xinit: Connection refused (errno 111): unable to connect to X server
    xinit: No such process (errno3): Server error.
    What should I do?

    matnik wrote:(my graphic card is vVidia GeForce 8600 GT)
    # sudo pacman -S nvidia-96xx nvidia-96xx-utils
    # sudo nvidia-xconfig
    1. wrong driver. the 96xx driver is for horrible old hardware, like the gf4. Install 'nvidia' and 'nvidia-utils' instead.
    2. don't use nvidia-xconfig, it's not needed.
    3. reboot after installing the driver if you havn't disabled kms already.

  • Acrobat plug-ins PPKLite.api, HTML2PDF.api fail to initialize & file reducing plug-in not available

    Trying to figure out why in last 2 wks I've been getting error messages when I open a PDF doc with Acrobat 7.0.9 professional. Initially 2 pop-ups saying error loading plug-ins PPKLite.api and HTML2PDF.api & they "failed to initialize. I can click OK & clear those error messages & proceed with what I'm doing, so they have just been an annoyance. Today I tried to reduce the size of a file, & got an error saying some of he required plug-ins are "not available. Some functions features may be disabled" - and it didn't reduce the file size. I need to be able to reduce PDF files on a regular basis. What can I do to fix both these annoyances & my file reducing plug-in problem?

    Had the same problem with Acrobat 6.0 Pro.
    Start with a test, Hold down the Shift key while starting Acrobat (from the time you double-click the icon, until it is initalized and ready to go).
    This starts Acrobat without ANY plug-ins.
    If this works without errors, go to this link and install all the updates, starting with the lowest. Select repair, if prompted, in the event the patch is already installed, or just cancel and continue working your way from lowest to highest revision, until your version is current.
    http://www.adobe.com/support/downloads/product.jsp?platform=Windows&product=1
    For 6.0.0 I used (in order):
    Ac60PrP1.exe
    Acro-Reader_6.0.2_Update.exe
    Acro-Reader_6.0.3_Update.exe
    Acro-Reader_6.0.4_Update.exe
    Acro-Reader_6.0.5_Update.exe
    Acro-Reader_6.0.6_Update.exe

  • The BPM Workspace is loading and failing to initialize the directory.xml

    Hi BPM Specialists,
    I installed BPM along with SOA suit in Windows XP box. Now I am getting failing to initialize directory.xml error and the workspace is not getting loaded.I am not able to locate a directory.xml file in my installed directory. Please let me know what needs to be done.Thanks a lot in adavance.
    Initializing PAPI services...
    <May 3, 2011 1:10:23 PM IST> <Error> <oracle.bpm.common> <BEA-000000> <directory configuration runtime fails to initilize with resource: ..\config\directory.xml
    java.lang.IllegalStateException: directory configuration runtime fails to initilize with resource: ..\config\directory.xml
    at fuego.directory.DirectoryConfigurationManager.getDirectoryConfiguration(DirectoryConfigurationManager.java:335)
    at fuego.directory.DirectoryConfigurationManager.getDirectoryConfigType(DirectoryConfigurationManager.java:313)
    at fuego.directory.provider.Factory.getDirectoryFactory(Factory.java:216)
    at fuego.directory.Directory.startAnonymousSession(Directory.java:211)
    at fuego.papi.impl.ProcessServiceFactoryImpl.obtainSchemaId(ProcessServiceFactoryImpl.java:193)
    at fuego.papi.impl.ProcessServiceFactoryImpl.create(ProcessServiceFactoryImpl.java:75)
    at fuego.papi.impl.ProcessServiceFactoryImpl.create(ProcessServiceFactoryImpl.java:63)
    at fuego.papi.ProcessService.create(ProcessService.java:335)
    at oracle.bpm.workspace.adf.model.common.ADFWorkspaceEnvironment.initPAPI(ADFWorkspaceEnvironment.java:66)
    at oracle.bpm.workspace.model.common.WorkspaceEnvironment.initialize(WorkspaceEnvironment.java:113)
    at oracle.bpm.workspace.model.common.WorkspaceEnvironment.<init>(WorkspaceEnvironment.java:85)
    at oracle.bpm.workspace.adf.model.common.ADFWorkspaceEnvironment.<init>(ADFWorkspaceEnvironment.java:37)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at oracle.bpm.web.WebEnvironment.initialize(WebEnvironment.java:80)
    at oracle.bpm.workspace.adf.ADFWorkspaceContextListener.contextInitialized(ADFWorkspaceContextListener.java:51)
    at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3153)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1508)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
    at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    >
    java.lang.IllegalStateException: directory configuration runtime fails to initilize with resource: ..\config\directory.xml
    at fuego.directory.DirectoryConfigurationManager.getDirectoryConfiguration(DirectoryConfigurationManager.java:335)
    at fuego.directory.DirectoryConfigurationManager.getDirectoryConfigType(DirectoryConfigurationManager.java:313)
    at fuego.directory.provider.Factory.getDirectoryFactory(Factory.java:216)
    at fuego.directory.Directory.startAnonymousSession(Directory.java:211)
    at fuego.papi.impl.ProcessServiceFactoryImpl.obtainSchemaId(ProcessServiceFactoryImpl.java:193)
    at fuego.papi.impl.ProcessServiceFactoryImpl.create(ProcessServiceFactoryImpl.java:75)
    at fuego.papi.impl.ProcessServiceFactoryImpl.create(ProcessServiceFactoryImpl.java:63)
    at fuego.papi.ProcessService.create(ProcessService.java:335)
    at oracle.bpm.workspace.adf.model.common.ADFWorkspaceEnvironment.initPAPI(ADFWorkspaceEnvironment.java:66)
    at oracle.bpm.workspace.model.common.WorkspaceEnvironment.initialize(WorkspaceEnvironment.java:113)
    at oracle.bpm.workspace.model.common.WorkspaceEnvironment.<init>(WorkspaceEnvironment.java:85)
    at oracle.bpm.workspace.adf.model.common.ADFWorkspaceEnvironment.<init>(ADFWorkspaceEnvironment.java:37)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at oracle.bpm.web.WebEnvironment.initialize(WebEnvironment.java:80)
    at oracle.bpm.workspace.adf.ADFWorkspaceContextListener.contextInitialized(ADFWorkspaceContextListener.java:51)
    at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3153)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1508)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
    at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    java.lang.reflect.InvocationTargetException
    <May 3, 2011 1:10:23 PM IST> <Error> <oracle.bpm.common> <BEA-000000> <WorkSpace failed on Startup.>
    <May 3, 2011 1:10:23 PM IST> <Warning> <HTTP> <BEA-101162> <User defined listener oracle.bpm.workspace.adf.ADFWorkspaceContextListener failed: oracle.bpm.lang.exception.ProgramException: WorkSpaceWorkSpace failed on Startup..
    oracle.bpm.lang.exception.ProgramException: WorkSpaceWorkSpace failed on Startup.
    at oracle.bpm.lang.exception.ProgramException.wrap(ProgramException.java:54)
    at oracle.bpm.workspace.adf.ADFWorkspaceContextListener.contextInitialized(ADFWorkspaceContextListener.java:55)
    at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    Truncated. see log file for complete stacktrace
    Caused By: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at oracle.bpm.web.WebEnvironment.initialize(WebEnvironment.java:80)
    Truncated. see log file for complete stacktrace
    Caused By: java.lang.RuntimeException: Critical Error.
    Detail:
    directory configuration runtime fails to initilize with resource: ..\config\directory.xml

    Thanks a lot for you reply.
    I have installed OBPM 11g along with SOA suit.So whenever I am trying to restart the WL server, the log is showing the error where it is not able to initialize the directory.xml.
    Could you please let me know what else can be done?

Maybe you are looking for