Struts 2 - SEVERE: Error configuring application listener of class mailread

Struts 2 - SEVERE: Error configuring application listener of class mailreader2.ApplicationListener
Ol�
Hi
All
I'm getting this erro: when I run my app in struts 2, but I don't know what is going on ?
Someone can help me
What is going on?
Thanks
SEVERE: Error configuring application listener of class mailreader2.ApplicationListener
java.lang.ClassNotFoundException: mailreader2.ApplicationListener
     at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1358)
     at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1204)
     at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3773)
     at org.apache.catalina.core.StandardContext.start(StandardContext.java:4337)
     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)
Feb 1, 2008 10:46:31 AM org.apache.catalina.core.StandardContext listenerStart
SEVERE: Skipped installing application listeners due to previous error(s)
Feb 1, 2008 10:46:31 AM org.apache.catalina.core.StandardContext start
SEVERE: Error listenerStart
Edited by: NetoJose on Feb 1, 2008 5:33 AM

I think it's not a jar it's a java class on my package take a look, now i don�t know why the problem?
Look the erro :
Struts 2 - SEVERE: Error configuring application listener of class mailreader2.ApplicationListener
this is my package and a java class:
mailreader2.ApplicationListener
package mailreader2;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.struts.apps.mailreader.dao.impl.memory.MemoryUserDatabase;
import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import java.io.*;
public final class ApplicationListener implements ServletContextListener {
* <p>Appication scope attribute key under which the in-memory version of
* our database is stored.</p>
public static final String DATABASE_KEY = "database";
* <p>Application scope attribute key under which the valid selection
* items for the protocol property is stored.</p>
public static final String PROTOCOLS_KEY = "protocols";
// ------------------------------------------------------ Instance Variables
* <p>The <code>ServletContext</code> for this web application.</p>
private ServletContext context = null;
* The {@link MemoryUserDatabase} object we construct and make available.
private MemoryUserDatabase database = null;
* <p>Logging output for this plug in instance.</p>
private Log log = LogFactory.getLog(this.getClass());
// ------------------------------------------------------------- Properties
* <p>The web application resource path of our persistent database storage
* file.</p>
private String pathname = "/WEB-INF/database.xml";
* <p>Return the application resource path to the database.</p>
* @return application resource path path to the database
public String getPathname() {
return (this.pathname);
* <p>Set the application resource path to the database.</p>
* @param pathname to the database
public void setPathname(String pathname) {
this.pathname = pathname;
// ------------------------------------------ ServletContextListener Methods
* <p>Gracefully shut down this database, releasing any resources that
* were allocated at initialization.</p>
* @param event ServletContextEvent to process
public void contextDestroyed(ServletContextEvent event) {
log.info("Finalizing memory database plug in");
if (database != null) {
try {
database.close();
} catch (Exception e) {
log.error("Closing memory database", e);
context.removeAttribute(DATABASE_KEY);
context.removeAttribute(PROTOCOLS_KEY);
database = null;
context = null;
* <p>Initialize and load our initial database from persistent
* storage.</p>
* @param event The context initialization event
public void contextInitialized(ServletContextEvent event) {
log.info("Initializing memory database plug in from '" +
pathname + "'");
// Remember our associated ServletContext
this.context = event.getServletContext();
// Construct a new database and make it available
database = new MemoryUserDatabase();
try {
String path = calculatePath();
if (log.isDebugEnabled()) {
log.debug(" Loading database from '" + path + "'");
database.setPathname(path);
database.open();
} catch (Exception e) {
log.error("Opening memory database", e);
throw new IllegalStateException("Cannot load database from '" +
pathname + "': " + e);
context.setAttribute(DATABASE_KEY, database);
// -------------------------------------------------------- Private Methods
* <p>Calculate and return an absolute pathname to the XML file to contain
* our persistent storage information.</p>
* @throws Exception if an input/output error occurs
private String calculatePath() throws Exception {
// Can we access the database via file I/O?
String path = context.getRealPath(pathname);
if (path != null) {
return (path);
// Does a copy of this file already exist in our temporary directory
File dir = (File)
context.getAttribute("javax.servlet.context.tempdir");
File file = new File(dir, "struts-example-database.xml");
if (file.exists()) {
return (file.getAbsolutePath());
// Copy the static resource to a temporary file and return its path
InputStream is =
context.getResourceAsStream(pathname);
BufferedInputStream bis = new BufferedInputStream(is, 1024);
FileOutputStream os =
new FileOutputStream(file);
BufferedOutputStream bos = new BufferedOutputStream(os, 1024);
byte buffer[] = new byte[1024];
while (true) {
int n = bis.read(buffer);
if (n <= 0) {
break;
bos.write(buffer, 0, n);
bos.close();
bis.close();
return (file.getAbsolutePath());
Edited by: NetoJose on Feb 1, 2008 7:25 AM

Similar Messages

  • Several Errors thrown when updating document class: 1046 3594 3590

    1046: Type was not found or was not a compile-time constant: FullScreenEvent.
    Warning: 3594: getStackTrace is not a recognized method of the dynamic class Error.
    Warning: 3590: void used where a Boolean value was expected.  The expression will be type coerced to Boolean.
    Does anyone have any experience with these errors being thrown?
    package {
         import flash.display.*;
         import FluidLayout.*;
         import flash.display.Sprite;
         import flash.display.StageAlign;
         import flash.display.StageScaleMode;
         import flash.events.Event;
         import gs.*;
         import gs.easing.*;
         import fl.motion.easing.*;
         import com.greensock.*;
         import flash.events.MouseEvent;
         public class Website extends MovieClip {
              public function Website() {
                   /* Set the Scale Mode of the Stage */
                   stage.scaleMode=StageScaleMode.NO_SCALE;
                   stage.align=StageAlign.TOP_LEFT;
                   /* Add the symbols to stage 
                               var bg = new Background(); 
                               addChild(bg); 
                   var top = new top();
                   addChild(top);
                   var toprightoption = new toprightoption();
                   addChild(toprightoption);
                   //var middle = new Middle(); 
                   //addChild(middle); 
                   var btmrightfooter = new btmrightfooter();
                   addChild(btmrightfooter);
                   /* Apply the alignment to the background  
                                 var bgParam = { 
                                     x:0, 
                                     y:0, 
                                    offsetX: 0, 
                                      offsetY: 0 
                                 new FluidObject(bg,bgParam); 
                   /* Apply the alignment to the top */
                   var topParam = { 
                                      x:0, 
                                     y:0, 
                                      offsetX:0, 
                                    offsetY:0 
                   new FluidObject(top,topParam);
                   /* Apply the alignment to the toprightoption */
                   var toprightoptionParam = { 
                                   x:1, 
                                   y:0, 
                                     offsetX: -toprightoption.width - 20, 
                                    offsetY: 20 
                   new FluidObject(toprightoption,toprightoptionParam);
                   /* Apply the alignment to the content
                                var middleParam = { 
                                    x:0.5, 
                                   y:0.5, 
                                    offsetX: -middle.width/2, 
                                    offsetY: -middle.height/2 
                                new FluidObject(middle,middleParam); 
                   /* Apply the alignment to the btmrightfooter */
                   var btmrightfooterParam = { 
                                    x:1, 
                                    y:1, 
                                    offsetX: -btmrightfooter.width - 10, 
                                    offsetY: -btmrightfooter.height -10 
                   new FluidObject(btmrightfooter,btmrightfooterParam);
         private var currentlyShowing:MovieClip=null;
              public function showModalContent(clip:MovieClip):void {
                   if (currentlyShowing!=null) {
                        removeChild(currentlyShowing);
                   currentlyShowing=clip;
                   addChild(currentlyShowing);
              public function removeModalContent():void {
                   if (currentlyShowing!=null) {
                        removeChild(currentlyShowing);
                        currentlyShowing=null;

    1.  import the fullscreenevent.
    2.  click file/publish settings/flash and tick "permit debugging" to see which lines are generating the other two errors.

  • Tutorial HelloWorld - StandardContext[/hello-jaxrpc]: Error configuring app

    Hi,
    I was trying to run the HelloWorld example as given at the URL -
    http://java.sun.com/webservices/docs/1.0/tutorial/doc/JAXRPC3.html#63872
    All the commands...
    ant compile-server
    ant setup-web-inf
    ant package
    ant process-war
    ant deploy
    ...are successfully completed. To verify that the service has been
    successfully deployed, I opened a browser window and specified the
    service endpoint's URL:
    http://localhost:8080/hello-jaxrpc/hello
    At this URL ...we find the error
    HTTP Status 404 - /hello-jaxrpc/hello
    type Status report
    message /hello-jaxrpc/hello
    description The requested resource (/hello-jaxrpc/hello) is not
    available.
    Then I opened the TomCat Manager
    http://localhost:8080/manager/html/list and noticed that the
    /hello-jaxrpc application status is stopped. I try to start it, but it
    gives a "Message: FAIL - Application at context path /hello-jaxrpc
    could not ..."
    Can anyone help me what might be wrong !
    Thanks a ton,
    Krishna
    PS: I cheked the log file (localhost_log.2002-10-28.txt) and found the
    below...
    2002-10-28 07:47:47 HTMLManager: start: Starting web application at
    '/hello-jaxrpc'
    2002-10-28 07:47:47 StandardHost[localhost]: standardHost.start
    /hello-jaxrpc
    2002-10-28 07:47:47 WebappLoader[hello-jaxrpc]: Deploying class
    repositories to work directory C:\Program Files\Apache Group\Tomcat
    4.1\work\Standalone\localhost\hello-jaxrpc
    2002-10-28 07:47:47 WebappLoader[hello-jaxrpc]: Deploy class files
    /WEB-INF/classes to C:\Program Files\Apache Group\Tomcat
    4.1\work\Standalone\localhost\hello-jaxrpc\WEB-INF\classes
    2002-10-28 07:47:47 StandardManager[hello-jaxrpc]: Seeding random
    number generator class java.security.SecureRandom
    2002-10-28 07:47:47 StandardManager[hello-jaxrpc]: Seeding of random
    number generator has been completed
    2002-10-28 07:47:47 StandardContext[hello-jaxrpc]: Error configuring
    application listener of class
    com.sun.xml.rpc.server.http.JAXRPCContextListener
    java.lang.ClassNotFoundException:
    com.sun.xml.rpc.server.http.JAXRPCContextListener
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1428)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1274)
         at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3217)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:3524)
         at org.apache.catalina.core.StandardHostDeployer.start(StandardHostDeployer.java:458)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:872)
         at org.apache.catalina.servlets.ManagerServlet.start(ManagerServlet.java:1014)
         at org.apache.catalina.servlets.HTMLManagerServlet.start(HTMLManagerServlet.java:379)
         at org.apache.catalina.servlets.HTMLManagerServlet.doGet(HTMLManagerServlet.java:149)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:527)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2396)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:405)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:380)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:508)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:533)
         at java.lang.Thread.run(Thread.java:484)
    2002-10-28 07:47:47 StandardContext[hello-jaxrpc]: Skipped installing
    application listeners due to previous error(s)
    2002-10-28 07:47:47 StandardContext[hello-jaxrpc]: Context startup
    failed due to previous errors

    I read the msg at
    http://forum.java.sun.com/thread.jsp?forum=331&thread=301419
    and I copied the following jars from <jwsdp>/common/lib to CATALINA-HOME/common/lib:
    jaxrpc-api.jar
    jaxrpc-ri.jar
    saaj-api.jar
    saaj-ri.jar
    activation.jar
    soap.jar
    mail.jar
    Now a different kind of error is found in the log of tomcat as shown below...
    2002-10-30 12:18:43 Manager: deploy: Deploying web application at '/hello-jaxrpc'
    2002-10-30 12:18:43 Manager: Uploading WAR file to D:\Tomcat 4.1\work\Standalone\localhost\manager\hello-jaxrpc.war
    2002-10-30 12:18:43 Manager: Extracting XML file to D:\Tomcat 4.1\work\Standalone\localhost\manager\hello-jaxrpc.xml
    2002-10-30 12:18:43 StandardHost[localhost]: Installing web application at context path /hello-jaxrpc from URL jar:file:D:\Tomcat 4.1\work\Standalone\localhost\manager\hello-jaxrpc.war!/
    2002-10-30 12:18:43 WebappLoader[hello-jaxrpc]: Deploying class repositories to work directory D:\Tomcat 4.1\work\Standalone\localhost\hello-jaxrpc
    2002-10-30 12:18:44 WebappLoader[hello-jaxrpc]: Deploy class files /WEB-INF/classes to D:\Tomcat 4.1\work\Standalone\localhost\hello-jaxrpc\WEB-INF\classes
    2002-10-30 12:18:44 StandardManager[hello-jaxrpc]: Seeding random number generator class java.security.SecureRandom
    2002-10-30 12:18:44 StandardManager[hello-jaxrpc]: Seeding of random number generator has been completed
    2002-10-30 12:18:44 StandardContext[hello-jaxrpc]: Exception sending context initialized event to listener instance of class com.sun.xml.rpc.server.http.JAXRPCContextListener
    java.lang.NoClassDefFoundError: javax/xml/transform/Source
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:195)
         at com.sun.xml.rpc.server.http.JAXRPCRuntimeInfoParser.loadClass(JAXRPCRuntimeInfoParser.java:150)
         at com.sun.xml.rpc.server.http.JAXRPCRuntimeInfoParser.parseEndpoints(JAXRPCRuntimeInfoParser.java:59)
         at com.sun.xml.rpc.server.http.JAXRPCRuntimeInfoParser.parse(JAXRPCRuntimeInfoParser.java:31)
         at com.sun.xml.rpc.server.http.JAXRPCContextListener.contextInitialized(JAXRPCContextListener.java:60)
         at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3250)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:3524)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:821)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:579)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:257)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:772)
         at org.apache.catalina.servlets.ManagerServlet.deploy(ManagerServlet.java:558)
         at org.apache.catalina.servlets.ManagerServlet.doPut(ManagerServlet.java:407)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    etc...etc...

  • Error while creating DBConsole -- Error configuring central management

    Dear All,
    MY DB Oracle 11gR1 on Linux is running fine, however there is a problem in Oracle Enterprise Manager Console.
    I dropped and re-create dbconsole using:
    emca -config all db -repos create
    These are the messages I got after creating it.
    Feb 10, 2010 10:31:26 AM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Feb 10, 2010 10:41:28 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Repository successfully created
    Feb 10, 2010 10:41:41 AM oracle.sysman.emcp.EMReposConfig uploadConfigDataToRepository
    INFO: Uploading configuration data to EM repository (this may take a while) ...
    Feb 10, 2010 10:43:48 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Uploaded configuration data successfully
    Feb 10, 2010 10:43:53 AM oracle.sysman.emcp.util.CentralAgentUtil registerWithCentralAgents
    INFO: Registering target(s) with central agent(s) (this may take a while)...
    Feb 10, 2010 10:43:57 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /Oracle/app/oracle/product/11.1.0/db_1/bin/emctl config agent addcentralagent /Oracle/app/oracle/product/11.1.0/db_1 /Oracle/app/oracle/product/11.1.0/db_1
    Feb 10, 2010 10:43:57 AM oracle.sysman.emcp.EMAgentConfig performConfiguration
    WARNING: Error registering database targets with the central agent(s).
    Feb 10, 2010 10:43:57 AM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error configuring central management. This target will not be centrally managed
    Refer to the log file at /Oracle/app/oracle/cfgtoollogs/emca/bssdevpl/emca_2010_02_10_10_25_26.log for more details.
    Could not complete the configuration. Refer to the log file at /Oracle/app/oracle/cfgtoollogs/emca/bssdevpl/emca_2010_02_10_10_25_26.log for more details.
    If anyone can help me getting through this error and creating dbconsole.
    Thanks,
    Imran

    CONFIG: isLocalNodeDone: T localNode: null
    10:31:26 oracle.sysman.emcp.EMDBPreConfig copyAgentTimeStampFile
    CONFIG: File: /path/bss.com_bssdevpl/sysman/emd/agntstmp.txt:bss.com does not exists.
    10:31:26 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: bssdevpl, oracleHome: /path, and user: SYS
    10:31:26 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    10:31:26 oracle.sysman.emcp.EMReposConfig createRepository
    CONFIG: Spooling to /Oracle/app/oracle/cfgtoollogs/emca/bssdevpl/emca_repos_create_2010_02_10_10_31_26.log
    10:31:26 oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    10:41:28 oracle.sysman.emcp.EMReposConfig invoke
    INFO: Repository successfully created
    10:41:28 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter EMAIL_ADDRESS.
    10:41:28 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MAIL_SERVER_NAME.
    10:41:28 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MAIL_SERVER_SENDER_NAME.
    10:41:28 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MAIL_SERVER_SENDER_ADDR.
    10:41:28 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: bssdevpl, oracleHome: /path, and user: SYS
    10:41:29 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    10:41:29 oracle.sysman.emcp.EMReposConfig unlockAccounts
    CONFIG: Unlocking dbsnmp and sysman
    10:41:29 oracle.sysman.emcp.EMReposConfig invoke
    CONFIG: Successfully unlocked relevant accounts
    10:41:29 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: bssdevpl, oracleHome: /path, and user: SYSMAN
    10:41:29 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    10:41:36 oracle.sysman.emcp.EMReposConfig createOutOfBoxJobs
    CONFIG: Finished executing emreposoutofbox.sql
    10:41:36 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: bssdevpl, oracleHome: /path, and user: SYSMAN
    10:41:38 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    10:41:38 oracle.sysman.emcp.EMReposConfig createOutOfBoxJobs
    CONFIG: Submitting dbms job: /path/sysman/admin/emdrep/sql/core/latest/admin/admin_submit_dbms_jobs.sql
    10:41:38 oracle.sysman.emcp.EMReposConfig createOutOfBoxJobs
    CONFIG: Successfully submitted dbms job
    10:41:38 oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
    CONFIG: Unlocking mgmt view user account
    10:41:38 oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
    CONFIG: view user sql: declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end;
    10:41:38 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Starting execution: /path/sysman/admin/scripts/emca/emcaDbUtil /path/perl/lib:/path/perl/lib/site_perl:/path/sysman/admin/scripts:/path/bin: /path/perl/bin/perl /path/sysman/admin/scripts/emca/emcaDbUtil.pl /path bssdevpl SYS SYSDBA declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end; 1 SYSMAN_PWD
    10:41:41 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Exit value of 0
    10:41:41 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Execution of /path/sysman/admin/scripts/emca/emcaDbUtil /path/perl/lib:/path/perl/lib/site_perl:/path/sysman/admin/scripts:/path/bin: /path/perl/bin/perl /path/sysman/admin/scripts/emca/emcaDbUtil.pl /path bssdevpl SYS SYSDBA declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end; 1 SYSMAN_PWD completed successfully
    10:41:41 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Arguments passed /path bssdevpl SYS SYSDBA declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end; 1 SYSMAN_PWD
    Connecting to database bssdevpl in home /path with user "SYS" role "SYSDBA".
    connected to database.
    sql to execute declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end;
    noOfParams to bind: 1.
    sql execute successfully.
    10:41:41 oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
    CONFIG: Unlocked mgmt_view account
    10:41:41 oracle.sysman.emcp.EMReposConfig invoke
    CONFIG: Successfully unlocked mgmt_view account
    10:41:41 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    10:41:41 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: bssdevpl, oracleHome: /path, and user: SYS
    10:41:41 oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    10:41:41 oracle.sysman.emcp.ParamsManager checkListenerStatusForDBControl
    CONFIG: Passed listener validation check.Listener is up and running.
    10:41:41 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    10:41:41 oracle.sysman.emcp.EMReposConfig uploadConfigDataToRepository
    INFO: Uploading configuration data to EM repository (this may take a while) ...
    10:43:48 oracle.sysman.emcp.EMReposConfig invoke
    INFO: Uploaded configuration data successfully
    10:43:48 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    10:43:48 oracle.sysman.emcp.EMDBCConfig updateEmomsProps
    CONFIG: Updating file /path/sysman/config/emoms.properties ...
    10:43:48 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    10:43:48 oracle.sysman.emcp.util.FileUtil _copyFile
    10:43:49 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    10:43:49 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MAIL_SERVER_SENDER_NAME.
    10:43:49 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter EMAIL_ADDRESS.
    10:43:49 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MAIL_SERVER_NAME.
    10:43:49 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    10:43:49 oracle.sysman.emcp.EMAgentConfig updateEmdProps
    CONFIG: Updating file /path/sysman/config/emd.properties ...
    10:43:49 oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /path/sysman/config/emd.properties.emca to /path/sysman/config/emd.properties
    10:43:49 oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /path/sysman/config/emd.properties.emca.util.tmp to /path/sysman/config/emd.properties
    10:43:49 oracle.sysman.emcp.EMAgentConfig updateAgentConfigFiles
    CONFIG: Updating file /path/sysman/config/emd.properties ...
    10:43:49 oracle.sysman.emcp.EMAgentConfig updateTargets
    CONFIG: value for use102tgt: F
    10:43:49 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LISTENER_OH.
    10:43:49 oracle.sysman.emcp.ParamsManager getListenerHome
    CONFIG: LISTENER_OH not set. Using ORACLE_HOME as listener's home.
    10:43:49 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    10:43:49 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    10:43:49 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LISTENER.
    10:43:49 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LISTENER_OH.
    10:43:49 oracle.sysman.emcp.ParamsManager getListenerHome
    CONFIG: LISTENER_OH not set. Using ORACLE_HOME as listener's home.
    10:43:49 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LISTENER_OH.
    10:43:49 oracle.sysman.emcp.ParamsManager getListenerHome
    CONFIG: LISTENER_OH not set. Using ORACLE_HOME as listener's home.
    10:43:49 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    10:43:50 oracle.sysman.emcp.ParamsManager getLocalListener
    CONFIG: Found listener named: LISTENER
    10:43:50 oracle.sysman.emcp.EMAgentConfig updateAgentConfigFiles
    CONFIG: Updating file /path/sysman/emd/targets.xml ...
    10:43:50 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    10:43:50 oracle.sysman.emcp.EMAgentConfig instantiateEMConfigFiles
    CONFIG: Local host name: bss.com
    10:43:50 oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: T localNode: null
    10:43:50 oracle.sysman.emcp.util.PlatformInterface addEnvVarToList
    CONFIG: Value for env var 'DISPLAY' is '', discarding the same
    10:43:50 oracle.sysman.emcp.util.PlatformInterface addEnvVarToList
    CONFIG: Value for env var 'TZ' is '', discarding the same
    10:43:50 oracle.sysman.emcp.util.PlatformInterface addEnvVarToList
    CONFIG: Value for env var 'ORACLE_HOSTNAME' is '', discarding the same
    10:43:50 oracle.sysman.emcp.util.PlatformInterface getSortedEnvArray
    CONFIG: New Env List: [CLASSPATH=/path/jlib/emca.jar:/path/jlib/srvm.jar:/path/jlib/srvmasm.jar:/path/jlib/emConfigInstall.jar:/path/jlib/ldapjclnt11.jar:/path/jlib/ldap.jar:/path/jlib/share.jar:/path/jlib/srvmhas.jar:/path/jlib/netcfg.jar:/path/jlib/http_client.jar:/path/lib/http_client.jar:/path/lib/xmlparserv2.jar:/path/assistants/jlib/assistantsCommon.jar:/path/sysman/jlib/emCORE.jar:/path/sysman/jlib/emagentSDK.jar:/path/oui/jlib/OraInstaller.jar:/path/oui/jlib/OraPrereq.jar:/path/inventory/prereqs/oui/OraPrereqChecks.jar:/path/oui/jlib/OraPrereqChecks.jar:, DYLD_LIBRARY_PATH=/path/lib32:/path/lib:/path/perl/lib, G_BROKEN_FILENAMES=1, HISTSIZE=1000, HOME=/home/oracle, HOSTNAME=bss-ora-dev, INPUTRC=/etc/inputrc, KDEDIR=/usr, LANG=en_US.UTF-8, LD_LIBRARY_PATH=/path/jdk/jre/lib/i386/client:/path/jdk/jre/lib/i386:/path/jdk/jre/../lib/i386:/path/lib32:/path/lib:/path/perl/lib, LESSOPEN=|/usr/bin/lesspipe.sh %s, LIBPATH=/path/lib32:/path/lib:/path/perl/lib, LOGNAME=oracle, LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:, MAIL=/var/spool/mail/oracle, NEED_EXIT_CODE=1, NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, ORACLE_HOME=/path, ORACLE_SID=bssdevpl, PATH=/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/oracle/bin:/path/bin, PWD=/home/oracle, SHELL=/bin/bash, SHLIB_PATH=/path/lib32:/path/lib:/path/perl/lib, SHLVL=2, SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass, TERM=xterm, USER=oracle, XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, _=/path/jdk/jre/bin/java]
    10:43:50 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Starting execution: /path/bin/emctl deploy dbconsole /path/bss.com_bssdevpl bss.com:3938 bss.com bssdevpl
    10:43:53 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Exit value of 0
    10:43:53 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Execution of /path/bin/emctl deploy dbconsole /path/bss.com_bssdevpl bss.com:3938 bss.com bssdevpl completed successfully
    10:43:53 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Creating shared install...
    Source location: /path
    Destination (shared install) : /path/bss.com_bssdevpl
    DeployMode : dbconsole
    Creating directories...
    Setting console properties ...
    Setting log and trace files locations for Console ...
    Setting log and trace files locations for Agent ...
    10:43:53 oracle.sysman.emcp.EMAgentConfig updateDBControlPort
    CONFIG: Setting https port as: -1
    10:43:53 oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /path/bss.com_bssdevpl/sysman/config/emoms.properties.emca.util.tmp to /path/bss.com_bssdevpl/sysman/config/emoms.properties
    10:43:53 oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /path/bss.com_bssdevpl/sysman/config/emd.properties.emca.util.tmp to /path/bss.com_bssdevpl/sysman/config/emd.properties
    10:43:53 oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /path/bss.com_bssdevpl/sysman/config/emd.properties.emca.util.tmp to /path/bss.com_bssdevpl/sysman/config/emd.properties
    10:43:53 oracle.sysman.emcp.EMAgentConfig getCustomTargetName
    CONFIG: targetsXML exists: /path/sysman/emd/targets.xml
    10:43:53 oracle.sysman.emcp.EMAgentConfig getCustomTargetName
    CONFIG: customTarget for oracle_database on node bss.com sid bssdevpl : bssdevpl
    10:43:53 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CUSTOM_ORACLE_DB_TARGET value: bssdevpl
    10:43:53 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LISTENER.
    10:43:53 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LISTENER_OH.
    10:43:53 oracle.sysman.emcp.ParamsManager getListenerHome
    CONFIG: LISTENER_OH not set. Using ORACLE_HOME as listener's home.
    10:43:53 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LISTENER_OH.
    10:43:53 oracle.sysman.emcp.ParamsManager getListenerHome
    CONFIG: LISTENER_OH not set. Using ORACLE_HOME as listener's home.
    10:43:53 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    10:43:53 oracle.sysman.emcp.ParamsManager getLocalListener
    CONFIG: Found listener named: LISTENER
    10:43:53 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter LISTENER_OH.
    10:43:53 oracle.sysman.emcp.ParamsManager getListenerHome
    CONFIG: LISTENER_OH not set. Using ORACLE_HOME as listener's home.
    10:43:53 oracle.sysman.emcp.EMAgentConfig getCustomTargetName
    CONFIG: targetsXML exists: /path/sysman/emd/targets.xml
    10:43:53 oracle.sysman.emcp.EMAgentConfig getCustomTargetName
    CONFIG: customTarget for oracle_listener on node bss.com sid null : LISTENER_bss.com
    10:43:53 oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: CUSTOM_LSNR_TARGET value: LISTENER_bss.com
    10:43:53 oracle.sysman.emcp.util.PlatformInterface getEnvProps
    CONFIG: Returning env array from cache
    10:43:53 oracle.sysman.emcp.util.PlatformInterface getSortedEnvArray
    CONFIG: New Env List: [CLASSPATH=/path/jlib/emca.jar:/path/jlib/srvm.jar:/path/jlib/srvmasm.jar:/path/jlib/emConfigInstall.jar:/path/jlib/ldapjclnt11.jar:/path/jlib/ldap.jar:/path/jlib/share.jar:/path/jlib/srvmhas.jar:/path/jlib/netcfg.jar:/path/jlib/http_client.jar:/path/lib/http_client.jar:/path/lib/xmlparserv2.jar:/path/assistants/jlib/assistantsCommon.jar:/path/sysman/jlib/emCORE.jar:/path/sysman/jlib/emagentSDK.jar:/path/oui/jlib/OraInstaller.jar:/path/oui/jlib/OraPrereq.jar:/path/inventory/prereqs/oui/OraPrereqChecks.jar:/path/oui/jlib/OraPrereqChecks.jar:, DYLD_LIBRARY_PATH=/path/lib32:/path/lib:/path/perl/lib, G_BROKEN_FILENAMES=1, HISTSIZE=1000, HOME=/home/oracle, HOSTNAME=bss-ora-dev, INPUTRC=/etc/inputrc, KDEDIR=/usr, LANG=en_US.UTF-8, LD_LIBRARY_PATH=/path/lib32:/path/lib:/path/perl/lib:null, LESSOPEN=|/usr/bin/lesspipe.sh %s, LIBPATH=/path/lib32:/path/lib:/path/perl/lib, LOGNAME=oracle, LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:, MAIL=/var/spool/mail/oracle, NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, ORACLE_HOME=/path, ORACLE_SID=bssdevpl, PATH=/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/oracle/bin:/path/bin, PERL5LIB=/path/perl/lib:/path/perl/lib/site_perl:/path/sysman/admin/scripts:/path/bin:, PWD=/home/oracle, SHELL=/bin/bash, SHLIB_PATH=/path/lib32:/path/lib:/path/perl/lib, SHLVL=2, SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass, TERM=xterm, USER=oracle, XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, _=/path/jdk/jre/bin/java]
    10:43:53 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Starting execution: /path/perl/bin/perl /path/bin/targetdeploy.pl -d bssdevpl -n LISTENER_bss.com /path/bss.com_bssdevpl bss.com bssdevpl
    10:43:53 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Exit value of 0
    10:43:53 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Execution of /path/perl/bin/perl /path/bin/targetdeploy.pl -d bssdevpl -n LISTENER_bss.com /path/bss.com_bssdevpl bss.com bssdevpl completed successfully
    10:43:53 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Creating targets.xml in state directories...
    Source location: /path
    Destination : /path/bss.com_bssdevpl
    Creating directories...
    Creating targets.xml...
    Done.
    10:43:53 oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file /path/oraInst.loc to /path/bss.com_bssdevpl/oraInst.loc
    10:43:53 oracle.sysman.emcp.EMAgentConfig createAgentTimeStampFile
    CONFIG: Creating agntstmp.txt file. oh: /path stateDir: /path/bss.com_bssdevpl host: bss.com
    10:43:53 oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    10:43:53 oracle.sysman.emcp.EMAgentConfig createAgentTimeStampFile
    CONFIG: File: /path/sysman/emd/agntstmp.txt.bssdevpl does not exists
    10:43:53 oracle.sysman.emcp.EMAgentConfig instantiateEMConfigFiles
    CONFIG: Successfully deployed state dirs for bss.com
    10:43:53 oracle.sysman.emcp.EMAgentConfig performConfiguration
    CONFIG: Successfully updated agent config files
    10:43:53 oracle.sysman.emcp.util.CentralAgentUtil registerWithCentralAgents
    INFO: Registering target(s) with central agent(s) (this may take a while)...
    10:43:53 oracle.sysman.emcp.util.PlatformInterface addEnvVarToList
    CONFIG: Value for env var 'DISPLAY' is '', discarding the same
    10:43:53 oracle.sysman.emcp.util.PlatformInterface addEnvVarToList
    CONFIG: Value for env var 'TZ' is '', discarding the same
    10:43:53 oracle.sysman.emcp.util.PlatformInterface addEnvVarToList
    CONFIG: Value for env var 'ORACLE_HOSTNAME' is '', discarding the same
    10:43:53 oracle.sysman.emcp.util.PlatformInterface getEnvProps
    CONFIG: Returning env array from cache
    10:43:53 oracle.sysman.emcp.util.PlatformInterface getSortedEnvArray
    CONFIG: New Env List: [CLASSPATH=/path/jlib/emca.jar:/path/jlib/srvm.jar:/path/jlib/srvmasm.jar:/path/jlib/emConfigInstall.jar:/path/jlib/ldapjclnt11.jar:/path/jlib/ldap.jar:/path/jlib/share.jar:/path/jlib/srvmhas.jar:/path/jlib/netcfg.jar:/path/jlib/http_client.jar:/path/lib/http_client.jar:/path/lib/xmlparserv2.jar:/path/assistants/jlib/assistantsCommon.jar:/path/sysman/jlib/emCORE.jar:/path/sysman/jlib/emagentSDK.jar:/path/oui/jlib/OraInstaller.jar:/path/oui/jlib/OraPrereq.jar:/path/inventory/prereqs/oui/OraPrereqChecks.jar:/path/oui/jlib/OraPrereqChecks.jar:, DYLD_LIBRARY_PATH=/path/lib32:/path/lib:/path/perl/lib, G_BROKEN_FILENAMES=1, HISTSIZE=1000, HOME=/home/oracle, HOSTNAME=bss-ora-dev, INPUTRC=/etc/inputrc, KDEDIR=/usr, LANG=en_US.UTF-8, LD_LIBRARY_PATH=/path/jdk/jre/lib/i386/client:/path/jdk/jre/lib/i386:/path/jdk/jre/../lib/i386:/path/lib32:/path/lib:/path/perl/lib, LESSOPEN=|/usr/bin/lesspipe.sh %s, LIBPATH=/path/lib32:/path/lib:/path/perl/lib, LOGNAME=oracle, LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:, MAIL=/var/spool/mail/oracle, NEED_EXIT_CODE=1, NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, ORACLE_HOME=/path, ORACLE_SID=bssdevpl, PATH=/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/oracle/bin:/path/bin, PWD=/home/oracle, SHELL=/bin/bash, SHLIB_PATH=/path/lib32:/path/lib:/path/perl/lib, SHLVL=2, SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass, TERM=xterm, USER=oracle, XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, _=/path/jdk/jre/bin/java]
    10:43:53 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Starting execution: /path/bin/emctl config agent addcentralagent /path /path
    10:43:57 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Exit value of 1
    10:43:57 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Oracle Enterprise Manager 11g Database Control Release 11.1.0.6.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    0 [main] ERROR emSDK.config - Warning: one of following could not be found:/path/bin/emtgtctl or /path/bss.com_bssdevpl/bin/emtgtctl
    7 [main] ERROR emSDK.config - oracle.sysman.emSDK.conf.CentralHomeAdditionException: emtgtctl could not be found in the bin directory of either the local home at /path or the central home at /path/bss.com_bssdevpl
    oracle.sysman.emSDK.conf.CentralHomeAdditionException: emtgtctl could not be found in the bin directory of either the local home at /path or the central home at /path/bss.com_bssdevpl
         at oracle.sysman.emSDK.conf.TargetInstaller.addCentralAgentHome(TargetInstaller.java:1931)
         at oracle.sysman.emSDK.conf.TargetInstaller.main(TargetInstaller.java:3167)
    10:43:57 oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: emtgtctl could not be found in the bin directory of either the local home at /path or the central home at /path/bss.com_bssdevpl
    10:43:57 oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /path/bin/emctl config agent addcentralagent /path /path
    10:43:57 oracle.sysman.emcp.util.CentralAgentUtil registerWithCentralAgents
    CONFIG: Error registering with /path
    10:43:57 oracle.sysman.emcp.EMAgentConfig performConfiguration
    WARNING: Error registering database targets with the central agent(s).
    10:43:57 oracle.sysman.emcp.EMConfig perform
    SEVERE: Error configuring central management. This target will not be centrally managed
    Refer to the log file at /Oracle/app/oracle/cfgtoollogs/emca/bssdevpl/emca_2010_02_10_10_25_26.log for more details.
    10:43:57 oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error configuring central management. This target will not be centrally managed
         at oracle.sysman.emcp.EMAgentConfig.performConfiguration(EMAgentConfig.java:1303)
         at oracle.sysman.emcp.EMAgentConfig.invoke(EMAgentConfig.java:239)
         at oracle.sysman.emcp.EMAgentConfig.invoke(EMAgentConfig.java:217)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:225)
         at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:534)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1214)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:518)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:467)

  • 10g EA - JSF Toturial - Error instantiating application

    I worked throught the first portion of
    Build J2EE Applications Using JDeveloper 10g and JSF
    http://www.oracle.com/technology/obe/obe1013jdev/JSFapplications/BuildJ2EEAppsWithJSF.htm
    Went to Run the welcome.jsp page and got the following message.
    05/11/11 11:27:50 [SEVERE]: Error instantiating application at file:/C:/jdevstudio1013ea1/jdev/system/oracle.j2ee.10.1.3.34.12/embedded-oc4j/applications/bc4j.ear: Unable to get ApplicationConfig for bc4j : Unable to find/read file META-INF/application.xml in C:\jdevstudio1013ea1\jdev\system\oracle.j2ee.10.1.3.34.12\embedded-oc4j\applications\bc4j (META-INF/application.xml)
    Project compiled fine.
    This is the rest of the log. happened before error
    Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    **** Unable to obtain password from principals.xml. Using default.
    C:\jdevstudio1013ea1\jdev\system\oracle.j2ee.10.1.3.34.12\embedded-oc4j\config>
    C:\jdevstudio1013ea1\jdk\bin\javaw.exe -ojvm -classpath C:\jdevstudio1013ea1\j2ee\home\oc4j.jar;C:\jdevstudio1013ea1\jdev\lib\jdev-oc4j-embedded.jar -Dhttp.proxyHost=rgismiscom -Dhttp.proxyPort=80 -Dhttp.nonProxyHosts=172.*|*.rgis.com|localhost|127.0.0.1 -Dhttps.proxyHost=rgismiscom -Dhttps.proxyPort=80 -Dhttps.nonProxyHosts=172.*|*.rgis.com|localhost|127.0.0.1 -Xverify:none -DcheckForUpdates=adminClientOnly -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false oracle.oc4j.loader.boot.BootStrap -config C:\jdevstudio1013ea1\jdev\system\oracle.j2ee.10.1.3.34.12\embedded-oc4j\config\server.xml
    [waiting for the server to complete its initialization...]

    I do not have the file. Here is what I have
    Model -> Application Sources -> hr.model -> employee.java
    Model -> Application Sources -> hr.model -> Employees.java
    Model -> Application Sources -> hr.model -> login.java
    View -> Application sources -> mypakage -> DataBindings.cpx
    View -> Application sources -> Web Content -> css -> Blaf.css
    View -> Application sources -> Web Content -> web-INF -> Faces-config.xml
    View -> Application sources -> Web Content -> web-INF -> web.xml
    View -> Application sources -> Web Content -> web-INF\lib -> adf-faces-impl.jar
    View -> Application sources -> Web Content -> web-INF\lib -> custComps.jar
    View -> Application sources -> Web Content -> web-INF\lib -> jsf-impl.jar
    View -> Application sources -> Web Content -> Hello.jsp
    View -> Application sources -> Web Content -> Welcome.jsp

  • File does not Upload !   Error in the listener class com.sap.ip.portal...

    Hello.
    Recently, I Add a New Server Node on Java Central Instance.
    And Java Program Upload on Portal, then following error occured.
    Error in the listener class com.sap.ip.portal.admin.portalanywhere.QueryHandler during the process of
    handleTopic
    Original server node can upload successfully.
    But, An error happens in New Additional node.
    Please tell me way to resolve the error.
    Regards.
    Edited by: Masashi Fujita on Dec 24, 2008 5:29 AM
    Edited by: Masashi Fujita on Dec 25, 2008 7:20 AM

    Hi Masashi Fujita,
    Check this Link for Uploading and Downloading files using Web Dynpro Java.
    [Uploading and Downloading Files in Web Dynpro Java|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00062266-3aa9-2910-d485-f1088c3a4d71]
    [Upload Files Using Web Service in Web Dynpro Java Application|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0d9336b-b4cf-2910-bdbf-b00d89bd2929]
    [Uploading and Downloading Files in Web Dynpro Tables|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b0e10426-77ca-2910-7eb5-d7d8982cb83f]
    Thanks & Regards,
    Sharma Kvbk.

  • Configure application express listener

    I am following the instrctions in the users guide 'installing oracle application express listner'
    while configuring the listener
    i get following errors, my input for host is localhost
    port:8080 (i tried 1521 also because it was already filled in by default
    and sid orcl (my local database installed on same machine)
    Request could not be processed due to error:
    Wed Jul 04 08:02:54 EDT 2012
    IO Error: Got minus one from a read call
    Request could not be processed due to error:
    Wed Jul 04 08:04:03 EDT 2012
    IO Error: The Network Adapter could not establish the connection
    Please advise me what should be my parameters while configuring basic connection tab on the Application Express Listener screen.
    thank you
    j

    Hello j,
    i get following errors, my input for host is localhost
    port:8080 (i tried 1521 also because it was already filled in by default
    and sid orcl (my local database installed on same machine)- localhost would be correct if your database listener is on the same machine
    - port 8080 is probably wrong, as this is usually the port for your application server (e.g. APEX Listener in Standalone Mode)
    - port 1521 should be right, but is possibly blocked by your firewall
    - sid orcl is possibly wrong, because it sounds to much like the default sid which is usually changed during the installation
    Please check which port your database listener is actually using for database connections by running
    lsnrctl statusIf the ports you find there are not on the firewalls whitelist yet, you'll have to add them there.
    For further questions please provide some more information about your environment, e.g. what OS are you on and how did you deploy your APEX Listener (Standalone Mode or which JEE Container?), etc.
    -Udo

  • Trying to install itunes on win 8.1.  keep getting error apple application support not found.  asks me to uninstall and install itunes.  i tried several times and keep getting same error.

    trying to install itunes on win 8.1.  keep getting error apple application support not found.  asks me to uninstall and install itunes.  i tried several times and keep getting same error.

    With the Error 2, let's try a standalone Apple Application Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of the issue.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR suitable for your PC (there's a 32-bit Windows version and a 64-bit Windows version):
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleApplicationSupport.msi to do a standalone AAS install.
    Does it install properly for you? If so, see if iTunes will launch without the error now.
    If instead you get an error message during the install, let us know what it says. (Precise text, please.)

  • Several errors during system preparation / basic configuration

    Hello,
    during the basic configuration I get stuck in the process step configure automatically -> setup bw.
    In the slg1 I can see several errors where I don't know if they are related to my bw problem or other probleme. Maybe someone can give me a hint how to solve the issue.
    @5C\QError@     2011/11/10 16:58:07 : DIAGTPL/CONFIG/HANDLER=CL_DIAGLS_ABAP_INST_TECH_SY Item does not exist
    @5C\QError@     Product system DUM has no active standalone product version     @35\QLong text exists@
    @5C\QError@     No detected product instances available for technical system C21     @35\QLong text exists@
    in the Solman_setup I have the problem that
    ESR: Extractor setup is not sucessful!
    Cube 0SM_BPMRH is not active and will now be activated automatically
    System status failed for system
    Could someone please help me to solve some of the problems?
    Thanks a lot, Vanessa

    Hello Vanessa,
    I wouldn't recommend looking at SLG1 at all times and try to find solutions for it, since Solution Manager deals with a huge landscape and in most cases some warning is thrown in the logs for any reason.
    For example, the "CL_DIAGLS_ABAP_INST_TECH_SY Item does not exist" and "no active standalone product version @35\QLong text exists@" can be due to systems coming from SLD to the LMDB with no correct definition. If SLD is not passing this information, it is 99% because the system is not well defined there. Hence it is just a warning.
    Now if you see something in SLG1 and indeed you have issues in this diagnostics system, it must be investigated.
    For your BI problem:
    Please execute the steps as described in section "3.2.1 Activation of
    Info Cube from BI Content" in the Setup BPA Guide.
    1430754 Business Process Analytics: Setup guide
    (https://websmp101.sap-ag.de/~sapdownload/011000358700001210492010E/Setu
    p_Guide_BP_Analytics.pdf)
    Furthermore, I strongly recommend that, for Solution Manager 7.1, you make sure you have the latest SP in ABAP and JAVA. Now we are at ST400 SP03  and LM-SERVICE SP03 patch level 1.
    You must not forward to the next steps if you have a step yellow, red or with Update checked.
    Best regards,
    Guilherme

  • SharePoint 2013 - Server Error in '/' Application - This operation can be performed only on a computer that is joined to a server farm by users who have permissions in SQL Server to read from the configuration database

    Hi
    After I ran SharePoint configuration wizard successfully to upgrade to SharePoint 2013 / SP1.
    I can open Central Administration site just fine.
    but now when I open any Site collection,  I got this error.
    Server Error in '/' Application
    This operation can be performed only on a computer that is joined to a server farm by users who have permissions in SQL Server to read from the configuration database. To connect this server to the server farm, use the SharePoint Products Configuration
    Wizard, located on the Start menu in Microsoft SharePoint 2010 Products
    I have restarted all the servers:  SQL server, WFE and APP servers but still cann't get this resolve.
    Services on all servers are running,  IIS - application pools are running.
    Can someone help with where that could be a problem or if there is a solution.
    Thanks in advance for your comments or advices.
    Swanl

    Please verify the followings:
    Make sure that from the SharePoint front end and application servers that you can ping your SQL server.
    Make sure that your Farm account has permission to the configuration database.
    Lastly verify that your database didn't for some reasons go into recovery mode.
    once everything is fine and you are still having issues, restart the SQL host service on the SQL server.
    Once the service is restarted you will need to reboot Central Admin and then your front end servers.
    In addition, as you built your farm inside the firewall, please disable the firwall, or create rules for SQL Server service in the firwall on SQL server.
    More information about creating rules in firewall, please refer to the following posts: http://social.technet.microsoft.com/Forums/en-US/c5d4d0d0-9a3b-4431-8150-17ccfbc6fb82/can-not-create-data-source-to-an-sql-server http://www.mssqltips.com/sqlservertip/1929/configure-windows-firewall-to-work-with-sql-server/
    Here is a similar post for you to take a look at: http://social.technet.microsoft.com/Forums/en-US/ea54e26c-1728-48d4-b2c5-2a3376a1082c/this-operation-can-be-performed-only-on-a-computer-that-is-joined-to-a-server-farm-by-users-who-have?forum=sharepointgeneral 
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • [svn:bz-trunk] 8910: Bug: LCDS-936 - Should have better error message in servlet log if server in services-config .xml is configured to use wrong class.

    Revision: 8910
    Author:   [email protected]
    Date:     2009-07-29 14:22:26 -0700 (Wed, 29 Jul 2009)
    Log Message:
    Bug: LCDS-936 - Should have better error message in servlet log if server in services-config.xml is configured to use wrong class.
    QA: Yes
    Doc: No
    Checkintests: Pass
    Ticket Links:
        http://bugs.adobe.com/jira/browse/LCDS-936
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/MessageBrokerServlet.java

    After many hard working days.i finally found the error cause,i needed to make weblogic datasource also ADF doesnt work on internet explorer browser,it works on safary.hope it helps somebody

  • Just updated to 3.6.8. Now can't navigate reliably. Frequently get this error message: "Server Error in '/' Application. Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies th

    Just updated to 3.6.8. Now can't navigate reliably. Frequently get this error message: "Server Error in '/' Application. Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster." Pending fix of this glitch, is there a way to go back to previous version of Firefox that worked perfectly well?
    == URL of affected sites ==
    http://www.americanleather.com/ComfortSleeper/Madison.aspx?page=2

    Hi JH,
    According to your description, my understanding is that you got an error when you deleted  columns in SharePoint 2010.
    Please add the following string in <system.web> section of your web.config file :
    <pages validateRequest="false" enableEventValidation="false" viewStateEncryptionMode ="Never" />
    Note: before changing web.config, please make a backup for the file.
    Here are some similar posts for you to take a look at:
    http://forums.asp.net/p/1355367/2778642.aspx
    http://forums.asp.net/t/1166634.aspx
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • I cannot download ADOBE Flash. The error message is FAILED from Firefox. The other error message is "CANNOT CONFIGURE APPLICATION." Any suggestions?

    ADOBE 12.exe downloaded. FLASH will download but won't install. The error message is "CANNOT CONFIGURE
    APPLICATION."

    You can try to run the Flash installer as Administrator.
    Latest Flash player versions here:
    *http://www.adobe.com/special/products/flashplayer/fp_distribution3.html

  • Error deploying application in integrated weblogic server

    Could somebody help me why i'm not able to deploy this application.thanks
    [Waiting for the domain to finish building...]
    [01:43:49 PM] Creating IntegratedWebLogicServer Domain...
    [01:46:15 PM] IntegratedWebLogicServer Domain processing completed successfully.
    *** Using HTTP port 7101 ***
    *** Using SSL port 7102 ***
    C:\Oracle\Middleware\Oracle_Home\jdeveloper\jdev\bin\jdev\system12.1.2.0.40.66.68\DefaultDomain\bin\startWebLogic.cmd
    [Starting IntegratedWebLogicServer.]
    [waiting for the server to complete its initialization...]
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=512m
    CLASSPATH=C:\Demo\oracle_common\modules\oracle.jdbc_11.2.0\ojdbc6dms.jar;C:\Demo\ORACLE~1\jdk\lib\tools.jar;C:\Demo\wlserver\server\lib\weblogic_sp.jar;C:\Demo\wlserver\server\lib\weblogic.jar;C:\Demo\wlserver\server\lib\webservices.jar;C:\Demo\oracle_common\modules\org.apache.ant_1.7.1/lib/ant-all.jar;C:\Demo\oracle_common\modules\net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar;C:\Demo\wlserver\modules\features\oracle.wls.common.nodemanager_1.0.0.0.jar;C:\Demo\oracle_common\modules\internal\features\jrf_wlsFmw_oracle.jrf.wls.classpath_12.1.2.jar;C:\Demo\oracle_common\modules\com.oracle.cie.config-wls-online_8.0.0.0.jar;C:\Demo\wlserver\common\derby\lib\derbynet.jar;C:\Demo\wlserver\common\derby\lib\derbyclient.jar;C:\Demo\wlserver\common\derby\lib\derby.jar;C:\Demo\wlserver\server\lib\xqrl.jar
    PATH=;C:\Demo\wlserver\server\native\win\x64;C:\Demo\wlserver\server\bin;C:\Demo\oracle_common\modules\org.apache.ant_1.7.1\bin;C:\Demo\ORACLE~1\jdk\jre\bin;C:\Demo\ORACLE~1\jdk\bin;C:\oraclexe\app\oracle\product\112~1.0\server\bin;C:\Windows\System32;C:\Windows;C:\Windows\System32\wbem;C:\Windows\System32\WINDOW~1\v1.0\;C:\PROGRA~1\Broadcom\BROADC~1.11\Driver;C:\PROGRA~1\WIDCOMM\BLUETO~1\;C:\PROGRA~1\WIDCOMM\BLUETO~1\syswow64;C:\PROGRA~1\Java\JDK17~1.0_4\bin;C:\Demo\wlserver\server\native\win\x64\oci920_8
    *  To start WebLogic Server, use a username and   *
    *  password assigned to an admin-level user.  For *
    *  server administration, use the WebLogic Server *
    *  console at http:\\hostname:port\console        *
    starting weblogic with Java version:
    java version "1.7.0_15"
    Java(TM) SE Runtime Environment (build 1.7.0_15-b33)
    Java HotSpot(TM) 64-Bit Server VM (build 23.7-b01, mixed mode)
    Starting WLS with line:
    C:\Demo\ORACLE~1\jdk\bin\java -client   -Xms256m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=C:\Demo\wlserver\server\lib\weblogic.policy -Djavax.net.ssl.trustStore=C:\Users\FELISB~1\AppData\Local\Temp\trustStore3111730393237733986.jks -Doracle.jdeveloper.adrs=true -Dweblogic.nodemanager.ServiceEnabled=true  -Xverify:none -Djava.endorsed.dirs=C:\Demo\ORACLE~1\jdk\jre\lib\endorsed;C:\Demo\oracle_common\modules\endorsed -Djava.protocol.handler.pkgs="oracle.mds.net.protocol" -Dopss.version=12.1.2 -Digf.arisidbeans.carmlloc=C:\Oracle\MIDDLE~1\ORACLE~1\JDEVEL~1\jdev\bin\jdev\SYSTEM~1.68\DEFAUL~1\config\fmwconfig\carml -Digf.arisidstack.home=C:\Oracle\MIDDLE~1\ORACLE~1\JDEVEL~1\jdev\bin\jdev\SYSTEM~1.68\DEFAUL~1\config\fmwconfig\arisidprovider -Doracle.security.jps.config=C:\Oracle\MIDDLE~1\ORACLE~1\JDEVEL~1\jdev\bin\jdev\SYSTEM~1.68\DEFAUL~1\config\fmwconfig\jps-config.xml -Doracle.deployed.app.dir=C:\Oracle\MIDDLE~1\ORACLE~1\JDEVEL~1\jdev\bin\jdev\SYSTEM~1.68\DEFAUL~1\servers\DefaultServer\tmp\_WL_user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirectory=C:\Demo\oracle_common\modules\oracle.ossoiap_12.1.2,C:\Demo\oracle_common\modules\oracle.oamprovider_12.1.2,C:\Demo\oracle_common\modules\oracle.jps_12.1.2 -Doracle.mds.filestore.preferred=true -Dweblogic.jdbc.remoteEnabled=false -Dcommon.components.home=C:\Demo\oracle_common -Djrf.version=12.1.2 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=C:\Oracle\MIDDLE~1\ORACLE~1\JDEVEL~1\jdev\bin\jdev\SYSTEM~1.68\DEFAUL~1 -Doracle.server.config.dir=C:\Oracle\MIDDLE~1\ORACLE~1\JDEVEL~1\jdev\bin\jdev\SYSTEM~1.68\DEFAUL~1\config\fmwconfig\servers\DefaultServer -Doracle.domain.config.dir=C:\Oracle\MIDDLE~1\ORACLE~1\JDEVEL~1\jdev\bin\jdev\SYSTEM~1.68\DEFAUL~1\config\fmwconfig  -da -Dwls.home=C:\Demo\wlserver\server -Dweblogic.home=C:\Demo\wlserver\server  -Djps.app.credential.overwrite.allowed=true -Djavax.management.builder.initial=weblogic.management.jmx.mbeanserver.WLSMBeanServerBuilder    -Djava.util.logging.manager=oracle.core.ojdl.logging.ODLLogManager  weblogic.Server
    <Dec 2, 2013 1:46:20 PM CET> <Info> <Security> <BEA-090905> <Disabling the CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true.>
    <Dec 2, 2013 1:46:20 PM CET> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true.>
    <Dec 2, 2013 1:46:20 PM CET> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 23.7-b01 from Oracle Corporation.>
    <Dec 2, 2013 1:46:21 PM CET> <Info> <Management> <BEA-141107> <Version: WebLogic Server 12.1.2.0.0  Fri Jun 7 15:16:15 PDT 2013 1530982 WLS_12.1.2.0.0_GENERIC_130607.1100>
    <Dec 2, 2013 1:46:22 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING.>
    <Dec 2, 2013 1:46:22 PM CET> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool.>
    <Dec 2, 2013 1:46:23 PM CET> <Notice> <Log Management> <BEA-170019> <The server log file C:\Oracle\Middleware\Oracle_Home\jdeveloper\jdev\bin\jdev\system12.1.2.0.40.66.68\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    Dec 02, 2013 1:46:24 PM oracle.security.jps.JpsStartup start
    INFO: Jps started.
    Dec 02, 2013 1:46:29 PM oracle.security.jps.internal.idstore.util.LibOvdUtil pushLdapNamesToLibOvd
    INFO: Pushed ldap name and types info to libOvd. Ldaps : DefaultAuthenticator:idstore.ldap.provideridstore.ldap.
    <Dec 2, 2013 1:46:31 PM CET> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    2013-12-02 13:46:34.580/16.143 Oracle Coherence 12.1.2.0.0 <Info> (thread=[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Loaded operational configuration from "jar:file:/C:/Demo/coherence/lib/coherence.jar!/tangosol-coherence.xml"
    2013-12-02 13:46:34.650/16.213 Oracle Coherence 12.1.2.0.0 <Info> (thread=[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Loaded operational overrides from "jar:file:/C:/Demo/coherence/lib/coherence.jar!/tangosol-coherence-override-dev.xml"
    2013-12-02 13:46:34.654/16.217 Oracle Coherence 12.1.2.0.0 <D5> (thread=[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "/tangosol-coherence-override.xml" is not specified
    2013-12-02 13:46:34.659/16.222 Oracle Coherence 12.1.2.0.0 <D5> (thread=[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "cache-factory-config.xml" is not specified
    2013-12-02 13:46:34.662/16.225 Oracle Coherence 12.1.2.0.0 <D5> (thread=[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "cache-factory-builder-config.xml" is not specified
    2013-12-02 13:46:34.664/16.227 Oracle Coherence 12.1.2.0.0 <D5> (thread=[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    Oracle Coherence Version 12.1.2.0.0 Build 44396
    Grid Edition: Development mode
    Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
    Dec 02, 2013 1:46:38 PM oracle.ods.virtualization.engine.util.VDELogger info
    INFO: Notification sent for Mapping config object reloaded
    Dec 02, 2013 1:46:38 PM oracle.ods.virtualization.engine.util.VDELogger info
    INFO: Notification sent for Mapping config object reloaded
    <Dec 2, 2013 1:46:56 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY.>
    <Dec 2, 2013 1:46:56 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING.>
    <Dec 2, 2013 1:47:32 PM CET> <Warning> <oracle.adf.share.logging.internal.perf.SensorTable> <BEA-000000> <Detected that sensors created in an invalid ADFContext were later visible in a valid ADFContext.  The sensors should be created in a valid ADFContext.  Please enable finest logging for more information.>
    <Dec 2, 2013 1:47:50 PM CET> <Notice> <Log Management> <BEA-170027> <The server has successfully established a connection with the Domain level Diagnostic Service.>
    <Dec 2, 2013 1:47:51 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN.>
    <Dec 2, 2013 1:47:51 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING.>
    <Dec 2, 2013 1:47:51 PM CET> <Notice> <Security> <BEA-090171> <Loading the identity certificate and private key stored under the alias DemoIdentity from the kss keystore file kss://system/demoidentity.>
    <Dec 2, 2013 1:47:54 PM CET> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the kss keystore file kss://system/trust.>
    <Dec 2, 2013 1:47:54 PM CET> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure" is now listening on 127.0.0.1:7102 for protocols iiops, t3s, ldaps, https.>
    <Dec 2, 2013 1:47:54 PM CET> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Dec 2, 2013 1:47:54 PM CET> <Notice> <WebLogicServer> <BEA-000331> <Started the WebLogic Server Administration Server "DefaultServer" for domain "DefaultDomain" running in development mode.>
    <Dec 2, 2013 1:47:54 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING.>
    <Dec 2, 2013 1:47:54 PM CET> <Notice> <WebLogicServer> <BEA-000360> <The server started in RUNNING mode.>
    IntegratedWebLogicServer startup time: 101626 ms.
    [IntegratedWebLogicServer started.]
    [Running application HRSystem on IntegratedWebLogicServer...]
    [01:47:58 PM] Web Module ViewControllerWebApp.war recognized in project ViewController.jpr
    [01:47:59 PM] ----  Deployment started.  ----
    [01:47:59 PM] Target platform is  (Weblogic 12.x).
    [01:48:01 PM] Retrieving existing application information
    [01:48:01 PM] Running dependency analysis...
    [01:48:01 PM] Deploying 2 profiles...
    [01:48:04 PM] Wrote Web Application Module to C:\Oracle\Middleware\Oracle_Home\jdeveloper\jdev\bin\jdev\system12.1.2.0.40.66.68\o.j2ee\drs\HRSystem\ViewControllerWebApp.war
    [01:48:05 PM] Wrote Enterprise Application Module to C:\Oracle\Middleware\Oracle_Home\jdeveloper\jdev\bin\jdev\system12.1.2.0.40.66.68\o.j2ee\drs\HRSystem
    [01:48:06 PM] Deploying Application...
    <Dec 2, 2013 1:48:07 PM CET> <Warning> <Application Client> <BEA-2162200> <No Main-Class defined in the manifest file of Java Module: empty.jar. This module will be treated as a utility JAR and subsequent initialization steps will be skipped.>
    <Dec 2, 2013 1:48:18 PM CET> <Warning> <HTTP> <BEA-101384> <WLServlet annotation is deprecated, please use servlet 3.0 annotation instead. App:HRSystem@ViewController, Class:oracle.adfinternal.view.faces.activedata.AdsServlet>
    [01:48:41 PM] Application Deployed Successfully.
    [01:48:41 PM] The following URL context root(s) were defined and can be used as a starting point to test your application:
    [01:48:41 PM] http://localhost:7101/ViewController
    [01:48:42 PM] Elapsed time for deployment:  43 seconds
    [01:48:42 PM] ----  Deployment finished.  ----
    Run startup time: 42793 ms.
    [Application HRSystem running on IntegratedWebLogicServer]
    Target URL -- http://localhost:7101/ViewController/faces/DeptEmpPage.jsf
    <Dec 2, 2013 1:48:52 PM CET> <Warning> <org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl> <BEA-000000> <Apache Trinidad is running with time-stamp checking enabled. This should not be used in a production environment. See the org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION property in WEB-INF/web.xml>
    <Dec 2, 2013 1:48:53 PM CET> <Warning> <org.apache.myfaces.trinidadinternal.skin.SkinStyleSheetParserUtils> <BEA-000000> <The skin selector AFIndexedIcon is not a Skin Icon Object since it does not have a content attribute. If you created this selector, please rename it to end with "style" instead of "icon" so that the Skinning Framework will treat it as a style, not an icon.>
    <Dec 2, 2013 1:48:54 PM CET> <Error> <javax.enterprise.resource.webcontainer.jsf.application> <BEA-000000> <Error Rendering View[/DeptEmpPage.jsf]
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      Truncated. see log file for complete stacktrace
    >
    <Dec 2, 2013 1:48:54 PM CET> <Error> <oracle.adfinternal.controller.application.AdfcExceptionHandler> <ADFC-50018> <ADFc: No exception handler was found for an application exception.
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader.getLibraryPartitionURI(PartitionResourceLoader.java:300)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._getLibraryPartitionURL(DocumentRenderer.java:3266)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderLibraryPartitionForFeature(DocumentRenderer.java:3172)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderBootstrapLibrary(DocumentRenderer.java:3096)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderScriptDependencies(DocumentRenderer.java:2113)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1265)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1578)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:1085)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782)
      at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:102)
      at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:338)
      at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125)
      at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288)
      at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:170)
      at oracle.adfinternal.view.faces.lifecycle.ResponseRenderManager.runRenderView(ResponseRenderManager.java:52)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:1104)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:389)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:255)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3367)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3333)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)
    >
    <Dec 2, 2013 1:48:54 PM CET> <Warning> <oracle.adfinternal.view.faces.context.RichExceptionHandler> <BEA-000000> <ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase RENDER_RESPONSE 6
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader.getLibraryPartitionURI(PartitionResourceLoader.java:300)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._getLibraryPartitionURL(DocumentRenderer.java:3266)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderLibraryPartitionForFeature(DocumentRenderer.java:3172)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderBootstrapLibrary(DocumentRenderer.java:3096)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderScriptDependencies(DocumentRenderer.java:2113)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1265)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1578)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:1085)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782)
      at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:102)
      at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:338)
      at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125)
      at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288)
      at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:170)
      at oracle.adfinternal.view.faces.lifecycle.ResponseRenderManager.runRenderView(ResponseRenderManager.java:52)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:1104)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:389)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:255)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3367)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3333)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)
    >
    <Dec 2, 2013 1:48:54 PM CET> <Error> <HTTP> <BEA-101020> <[ServletContext@1406583780[app:HRSystem module:ViewController path:null spec-version:3.0]] Servlet failed with an Exception
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      Truncated. see log file for complete stacktrace
    >
    <Dec 2, 2013 1:48:54 PM CET> <Notice> <Diagnostics> <BEA-320068> <Watch "UncheckedException" in module "Module-FMWDFW" with severity "Notice" on server "DefaultServer" has triggered at Dec 2, 2013 1:48:54 PM CET. Notification details:
    WatchRuleType: Log
    WatchRule: (SEVERITY = 'Error') AND ((MSGID = 'WL-101020') OR (MSGID = 'WL-101017') OR (MSGID = 'WL-000802') OR (MSGID = 'BEA-101020') OR (MSGID = 'BEA-101017') OR (MSGID = 'BEA-000802'))
    WatchData: DATE = Dec 2, 2013 1:48:54 PM CET SERVER = DefaultServer MESSAGE = [ServletContext@1406583780[app:HRSystem module:ViewController path:null spec-version:3.0]] Servlet failed with an Exception
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader.getLibraryPartitionURI(PartitionResourceLoader.java:300)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._getLibraryPartitionURL(DocumentRenderer.java:3266)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderLibraryPartitionForFeature(DocumentRenderer.java:3172)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderBootstrapLibrary(DocumentRenderer.java:3096)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderScriptDependencies(DocumentRenderer.java:2113)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1265)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1578)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:1085)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782)
      at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:102)
      at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:338)
      at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125)
      at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288)
      at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:170)
      at oracle.adfinternal.view.faces.lifecycle.ResponseRenderManager.runRenderView(ResponseRenderManager.java:52)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:1104)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:389)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:255)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3367)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3333)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)
    SUBSYSTEM = HTTP USERID = <WLS Kernel> SEVERITY = Error THREAD = [ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)' MSGID = BEA-101020 MACHINE = felisberto-PC TXID =  CONTEXTID = f520e918-d81c-464e-ab7a-521df9b44e56-00000021 TIMESTAMP = 1385988534568 
    WatchAlarmType: AutomaticReset
    WatchAlarmResetPeriod: 30000
    >
    <Dec 2, 2013 1:48:58 PM CET> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,249 during the configured idle timeout of 5 seconds.>
    <Dec 2, 2013 1:49:00 PM CET> <Emergency> <oracle.dfw.incident> <BEA-000000> <incident 1 created with problem key "DFW-99998 [java.lang.IllegalArgumentException][oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum][HRSystem]">
    <Dec 2, 2013 1:49:17 PM CET> <Error> <javax.enterprise.resource.webcontainer.jsf.application> <BEA-000000> <Error Rendering View[/DeptEmpPage.jsf]
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      Truncated. see log file for complete stacktrace
    >
    <Dec 2, 2013 1:49:17 PM CET> <Error> <oracle.adfinternal.controller.application.AdfcExceptionHandler> <ADFC-50018> <ADFc: No exception handler was found for an application exception.
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader.getLibraryPartitionURI(PartitionResourceLoader.java:300)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._getLibraryPartitionURL(DocumentRenderer.java:3266)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderLibraryPartitionForFeature(DocumentRenderer.java:3172)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderBootstrapLibrary(DocumentRenderer.java:3096)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderScriptDependencies(DocumentRenderer.java:2113)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderHead(DocumentRenderer.java:980)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1235)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1578)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:1085)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782)
      at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:102)
      at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:338)
      at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125)
      at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288)
      at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:170)
      at oracle.adfinternal.view.faces.lifecycle.ResponseRenderManager.runRenderView(ResponseRenderManager.java:52)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:1104)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:389)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:255)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3367)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3333)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)
    >
    <Dec 2, 2013 1:49:17 PM CET> <Warning> <oracle.adfinternal.view.faces.context.RichExceptionHandler> <BEA-000000> <ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase RENDER_RESPONSE 6
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader.getLibraryPartitionURI(PartitionResourceLoader.java:300)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._getLibraryPartitionURL(DocumentRenderer.java:3266)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderLibraryPartitionForFeature(DocumentRenderer.java:3172)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderBootstrapLibrary(DocumentRenderer.java:3096)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderScriptDependencies(DocumentRenderer.java:2113)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderHead(DocumentRenderer.java:980)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1235)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1578)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:1085)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782)
      at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:102)
      at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:338)
      at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125)
      at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288)
      at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:170)
      at oracle.adfinternal.view.faces.lifecycle.ResponseRenderManager.runRenderView(ResponseRenderManager.java:52)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:1104)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:389)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:255)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:478)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:303)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:208)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:225)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3367)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3333)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2220)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)
    >
    <Dec 2, 2013 1:49:17 PM CET> <Error> <HTTP> <BEA-101020> <[ServletContext@1406583780[app:HRSystem module:ViewController path:null spec-version:3.0]] Servlet failed with an Exception
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      Truncated. see log file for complete stacktrace
    >
    <Dec 2, 2013 1:49:23 PM CET> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:57,296 during the configured idle timeout of 5 seconds.>
    <Dec 2, 2013 1:59:08 PM CET> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:58,190 during the configured idle timeout of 5 seconds.>
    <Dec 2, 2013 1:59:08 PM CET> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:58,192 during the configured idle timeout of 5 seconds.>
    <Dec 2, 2013 1:59:08 PM CET> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:58,189 during the configured idle timeout of 5 seconds.>
    <Dec 2, 2013 1:59:08 PM CET> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:58,193 during the configured idle timeout of 5 seconds.>
    <Dec 2, 2013 1:59:08 PM CET> <Warning> <Socket> <BEA-000449> <Closing the socket, as no data read from it on 127.0.0.1:58,191 during the configured idle timeout of 5 seconds.>
    [Running application HRSystem on IntegratedWebLogicServer...]
    [02:02:27 PM] Web Module ViewControllerWebApp.war recognized in project ViewController.jpr
    [Another instance of application HRSystem is running on the server.  JDeveloper will redeploy the application.]
    [02:02:27 PM] ----  Deployment started.  ----
    [02:02:27 PM] Target platform is  (Weblogic 12.x).
    [02:02:28 PM] Retrieving existing application information
    [02:02:28 PM] Running dependency analysis...
    [02:02:28 PM] Deploying 2 profiles...
    [02:02:28 PM] Wrote Web Application Module to C:\Oracle\Middleware\Oracle_Home\jdeveloper\jdev\bin\jdev\system12.1.2.0.40.66.68\o.j2ee\drs\HRSystem\ViewControllerWebApp.war
    [02:02:28 PM] Wrote Enterprise Application Module to C:\Oracle\Middleware\Oracle_Home\jdeveloper\jdev\bin\jdev\system12.1.2.0.40.66.68\o.j2ee\drs\HRSystem
    [02:02:28 PM] Application will not be redeployed
    [02:02:28 PM] The following URL context root(s) were defined and can be used as a starting point to test your application:
    [02:02:28 PM] http://localhost:7101/ViewController
    [02:02:29 PM] Elapsed time for deployment:  1 second
    [02:02:29 PM] ----  Deployment finished.  ----
    Run startup time: 1101 ms.
    [Application HRSystem running on IntegratedWebLogicServer]
    Target URL -- http://localhost:7101/ViewController/faces/DeptEmpPage.jsf
    <Dec 2, 2013 2:02:33 PM CET> <Error> <javax.enterprise.resource.webcontainer.jsf.application> <BEA-000000> <Error Rendering View[/DeptEmpPage.jsf]
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      Truncated. see log file for complete stacktrace
    >
    <Dec 2, 2013 2:02:33 PM CET> <Error> <oracle.adfinternal.controller.application.AdfcExceptionHandler> <ADFC-50018> <ADFc: No exception handler was found for an application exception.
    java.lang.IllegalArgumentException: No oracle.adfinternal.view.faces.partition.PartitionContext$AgentName enum constant for value "netscape".
      at org.apache.myfaces.trinidad.util.Enums.stringToEnum(Enums.java:107)
      at oracle.adfinternal.view.faces.partition.PartitionContext._stringToEnum(PartitionContext.java:592)
      at oracle.adfinternal.view.faces.partition.PartitionContext.access$000(PartitionContext.java:27)
      at oracle.adfinternal.view.faces.partition.PartitionContext$AgentName.valueOfDisplayName(PartitionContext.java:549)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader._getAgentName(PartitionResourceLoader.java:396)
      at oracle.adfinternal.view.resource.rich.PartitionResourceLoader.getLibraryPartitionURI(PartitionResourceLoader.java:300)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._getLibraryPartitionURL(DocumentRenderer.java:3266)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderLibraryPartitionForFeature(DocumentRenderer.java:3172)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderBootstrapLibrary(DocumentRenderer.java:3096)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderScriptDependencies(DocumentRenderer.java:2113)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._renderHead(DocumentRenderer.java:980)
      at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1235)
      at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1578)
      at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:511)
      at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:1085)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786)
      at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782)
      at oracle.adfinternal.view.faces.component.AdfViewRoot.encodeAll(AdfViewRoot.java:102)
      at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidad.view.ViewDeclarationLanguageWrapper.renderView(ViewDeclarationLanguageWrapper.java:101)
      at org.apache.myfaces.trinidadinternal.application.ViewDeclarationLanguageFactoryImpl$ChangeApplyingVDLWrapper.renderView(ViewDeclarationLanguageFactoryImpl.java:338)
      at com.sun.faces

    After many hard working days.i finally found the error cause,i needed to make weblogic datasource also ADF doesnt work on internet explorer browser,it works on safary.hope it helps somebody

  • Several errors of the form [drm:.... ] *ERROR*, especially checksum

    Hello to all,
    I am new to Arch Linux and not that experienced in Linux. But I want to learn more. In fact, I have learned a lot since I switched from Fedora to Arch.
    I will straight away go to my problem:
    As indicated in the subject, I have noticed several errors concerning [drm:....] this morning when I booted and checked my system with journalctl -b.
    I do not know how long these errors are there because I yesterday used journalctl for the first time.
    Here is the result of journalctl -b:
    -- Logs begin at Mi 2013-03-13 19:24:10 CET, end at Fr 2013-05-17 10:19:37 CEST. --
    Mai 17 08:07:45 Nathan systemd-journal[113]: Allowing runtime journal files to grow to 193.3M.
    Mai 17 08:07:45 Nathan kernel: Initializing cgroup subsys cpuset
    Mai 17 08:07:45 Nathan kernel: Initializing cgroup subsys cpu
    Mai 17 08:07:45 Nathan kernel: Linux version 3.9.2-1-ARCH (nobody@thomas) (gcc version 4.8.0 20130502 (prerelease) (GCC) ) #1 SMP PREEMPT Sat May 11 20:31:08 CEST 2013
    Mai 17 08:07:45 Nathan kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=65820d33-ca90-4ed3-9b9e-e26a75f9331f ro quiet
    Mai 17 08:07:45 Nathan kernel: e820: BIOS-provided physical RAM map:
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000008dfff] usable
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x000000000008e000-0x000000000008ffff] reserved
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x0000000000090000-0x000000000009fbff] usable
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x000000000009fc00-0x00000000000fffff] reserved
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x0000000040200000-0x000000008ad33fff] usable
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x000000008ad34000-0x000000008ad5efff] ACPI NVS
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x000000008ad5f000-0x000000008afa1fff] ACPI data
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x000000008afa2000-0x000000008affefff] reserved
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x000000008afff000-0x000000008affffff] ACPI data
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x000000008b000000-0x000000008f9fffff] reserved
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
    Mai 17 08:07:45 Nathan kernel: BIOS-e820: [mem 0x0000000100000000-0x000000016fdfffff] usable
    Mai 17 08:07:45 Nathan kernel: NX (Execute Disable) protection: active
    Mai 17 08:07:45 Nathan kernel: SMBIOS 2.4 present.
    Mai 17 08:07:45 Nathan kernel: DMI: Apple Inc. MacBookAir4,2/Mac-742912EFDBEE19B3, BIOS MBA41.88Z.0077.B0F.1201241549 01/24/2012
    Mai 17 08:07:45 Nathan kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Mai 17 08:07:45 Nathan kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Mai 17 08:07:45 Nathan kernel: No AGP bridge found
    Mai 17 08:07:45 Nathan kernel: e820: last_pfn = 0x16fe00 max_arch_pfn = 0x400000000
    Mai 17 08:07:45 Nathan kernel: MTRR default type: write-back
    Mai 17 08:07:45 Nathan kernel: MTRR fixed ranges enabled:
    Mai 17 08:07:45 Nathan kernel: 00000-9FFFF write-back
    Mai 17 08:07:45 Nathan kernel: A0000-BFFFF uncachable
    Mai 17 08:07:45 Nathan kernel: C0000-DFFFF write-protect
    Mai 17 08:07:45 Nathan kernel: E0000-FFFFF uncachable
    Mai 17 08:07:45 Nathan kernel: MTRR variable ranges enabled:
    Mai 17 08:07:45 Nathan kernel: 0 base 0C0000000 mask FC0000000 uncachable
    Mai 17 08:07:45 Nathan kernel: 1 base 0A0000000 mask FE0000000 uncachable
    Mai 17 08:07:45 Nathan kernel: 2 base 090000000 mask FF0000000 uncachable
    Mai 17 08:07:45 Nathan kernel: 3 base 08C000000 mask FFC000000 uncachable
    Mai 17 08:07:45 Nathan kernel: 4 base 08B800000 mask FFF800000 uncachable
    Mai 17 08:07:45 Nathan kernel: 5 disabled
    Mai 17 08:07:45 Nathan kernel: 6 disabled
    Mai 17 08:07:45 Nathan kernel: 7 disabled
    Mai 17 08:07:45 Nathan kernel: 8 disabled
    Mai 17 08:07:45 Nathan kernel: 9 disabled
    Mai 17 08:07:45 Nathan kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Mai 17 08:07:45 Nathan kernel: e820: last_pfn = 0x8ad34 max_arch_pfn = 0x400000000
    Mai 17 08:07:45 Nathan kernel: Scanning 1 areas for low memory corruption
    Mai 17 08:07:45 Nathan kernel: Base memory trampoline at [ffff880000099000] 99000 size 24576
    Mai 17 08:07:45 Nathan kernel: reserving inaccessible SNB gfx pages
    Mai 17 08:07:45 Nathan kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Mai 17 08:07:45 Nathan kernel: [mem 0x00000000-0x000fffff] page 4k
    Mai 17 08:07:45 Nathan kernel: BRK [0x01b30000, 0x01b30fff] PGTABLE
    Mai 17 08:07:45 Nathan kernel: BRK [0x01b31000, 0x01b31fff] PGTABLE
    Mai 17 08:07:45 Nathan kernel: BRK [0x01b32000, 0x01b32fff] PGTABLE
    Mai 17 08:07:45 Nathan kernel: init_memory_mapping: [mem 0x16fc00000-0x16fdfffff]
    Mai 17 08:07:45 Nathan kernel: [mem 0x16fc00000-0x16fdfffff] page 2M
    Mai 17 08:07:45 Nathan kernel: BRK [0x01b33000, 0x01b33fff] PGTABLE
    Mai 17 08:07:45 Nathan kernel: init_memory_mapping: [mem 0x16c000000-0x16fbfffff]
    Mai 17 08:07:45 Nathan kernel: [mem 0x16c000000-0x16fbfffff] page 2M
    Mai 17 08:07:45 Nathan kernel: init_memory_mapping: [mem 0x100000000-0x16bffffff]
    Mai 17 08:07:45 Nathan kernel: [mem 0x100000000-0x16bffffff] page 2M
    Mai 17 08:07:45 Nathan kernel: BRK [0x01b34000, 0x01b34fff] PGTABLE
    Mai 17 08:07:45 Nathan kernel: init_memory_mapping: [mem 0x00100000-0x1fffffff]
    Mai 17 08:07:45 Nathan kernel: [mem 0x00100000-0x001fffff] page 4k
    Mai 17 08:07:45 Nathan kernel: [mem 0x00200000-0x1fffffff] page 2M
    Mai 17 08:07:45 Nathan kernel: init_memory_mapping: [mem 0x20200000-0x3fffffff]
    Mai 17 08:07:45 Nathan kernel: [mem 0x20200000-0x3fffffff] page 2M
    Mai 17 08:07:45 Nathan kernel: init_memory_mapping: [mem 0x40200000-0x8ad33fff]
    Mai 17 08:07:45 Nathan kernel: [mem 0x40200000-0x8abfffff] page 2M
    Mai 17 08:07:45 Nathan kernel: [mem 0x8ac00000-0x8ad33fff] page 4k
    Mai 17 08:07:45 Nathan kernel: RAMDISK: [mem 0x37a56000-0x37d22fff]
    Mai 17 08:07:45 Nathan kernel: ACPI: RSDP 00000000000fe020 00024 (v02 APPLE )
    Mai 17 08:07:45 Nathan kernel: ACPI: XSDT 000000008ad8e1c0 000AC (v01 APPLE Apple00 00000060 01000013)
    Mai 17 08:07:45 Nathan kernel: ACPI: FACP 000000008ad8c000 000F4 (v04 APPLE Apple00 00000060 Loki 0000005F)
    Mai 17 08:07:45 Nathan kernel: ACPI: DSDT 000000008ad81000 05050 (v01 APPLE MacBookA 00040001 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: FACS 000000008ad3e000 00040
    Mai 17 08:07:45 Nathan kernel: ACPI: HPET 000000008ad8b000 00038 (v01 APPLE Apple00 00000001 Loki 0000005F)
    Mai 17 08:07:45 Nathan kernel: ACPI: APIC 000000008ad8a000 000BC (v02 APPLE Apple00 00000001 Loki 0000005F)
    Mai 17 08:07:45 Nathan kernel: ACPI: SBST 000000008ad88000 00030 (v01 APPLE Apple00 00000001 Loki 0000005F)
    Mai 17 08:07:45 Nathan kernel: ACPI: ECDT 000000008ad87000 00053 (v01 APPLE Apple00 00000001 Loki 0000005F)
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT 000000008ad7d000 00024 (v01 APPLE SmcDppt 00001000 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT 000000008ad7b000 006CA (v01 APPLE UsbSD 00001000 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT 000000008ad77000 00159 (v02 APPLE IGHda 00001000 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT 000000008ad73000 015EB (v02 APPLE SsdtIGPU 00001000 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT 000000008ad72000 00506 (v01 PmRef Cpu0Ist 00003000 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT 000000008ad71000 009B1 (v01 PmRef CpuPm 00003000 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT 000000008ad70000 00315 (v01 PmRef Cpu0Tst 00003000 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT 000000008ad6f000 0037A (v01 PmRef ApTst 00003000 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: MCFG 000000008ad89000 0003C (v01 APPLE Apple00 00000001 Loki 0000005F)
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT 000000008ad80000 000FA (v01 SataRe SataPri 00001000 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT 000000008ad7f000 000D0 (v01 SataRe SataSec 00001000 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT 000000008ad7e000 00032 (v01 Apple SsdtS3 00001000 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: Local APIC address 0xfee00000
    Mai 17 08:07:45 Nathan kernel: No NUMA configuration found
    Mai 17 08:07:45 Nathan kernel: Faking a node at [mem 0x0000000000000000-0x000000016fdfffff]
    Mai 17 08:07:45 Nathan kernel: Initmem setup node 0 [mem 0x00000000-0x16fdfffff]
    Mai 17 08:07:45 Nathan kernel: NODE_DATA [mem 0x16fdf8000-0x16fdfcfff]
    Mai 17 08:07:45 Nathan kernel: [ffffea0000000000-ffffea0005bfffff] PMD -> [ffff88016b400000-ffff88016f3fffff] on node 0
    Mai 17 08:07:45 Nathan kernel: Zone ranges:
    Mai 17 08:07:45 Nathan kernel: DMA [mem 0x00001000-0x00ffffff]
    Mai 17 08:07:45 Nathan kernel: DMA32 [mem 0x01000000-0xffffffff]
    Mai 17 08:07:45 Nathan kernel: Normal [mem 0x100000000-0x16fdfffff]
    Mai 17 08:07:45 Nathan kernel: Movable zone start for each node
    Mai 17 08:07:45 Nathan kernel: Early memory node ranges
    Mai 17 08:07:45 Nathan kernel: node 0: [mem 0x00001000-0x0008dfff]
    Mai 17 08:07:45 Nathan kernel: node 0: [mem 0x00090000-0x0009efff]
    Mai 17 08:07:45 Nathan kernel: node 0: [mem 0x00100000-0x1fffffff]
    Mai 17 08:07:45 Nathan kernel: node 0: [mem 0x20200000-0x3fffffff]
    Mai 17 08:07:45 Nathan kernel: node 0: [mem 0x40200000-0x8ad33fff]
    Mai 17 08:07:45 Nathan kernel: node 0: [mem 0x100000000-0x16fdfffff]
    Mai 17 08:07:45 Nathan kernel: On node 0 totalpages: 1025744
    Mai 17 08:07:45 Nathan kernel: DMA zone: 64 pages used for memmap
    Mai 17 08:07:45 Nathan kernel: DMA zone: 156 pages reserved
    Mai 17 08:07:45 Nathan kernel: DMA zone: 3996 pages, LIFO batch:0
    Mai 17 08:07:45 Nathan kernel: DMA32 zone: 8805 pages used for memmap
    Mai 17 08:07:45 Nathan kernel: DMA32 zone: 563508 pages, LIFO batch:31
    Mai 17 08:07:45 Nathan kernel: Normal zone: 7160 pages used for memmap
    Mai 17 08:07:45 Nathan kernel: Normal zone: 458240 pages, LIFO batch:31
    Mai 17 08:07:45 Nathan kernel: ACPI: PM-Timer IO Port: 0x408
    Mai 17 08:07:45 Nathan kernel: ACPI: Local APIC address 0xfee00000
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0xff] disabled)
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0xff] disabled)
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0xff] disabled)
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0xff] disabled)
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
    Mai 17 08:07:45 Nathan kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
    Mai 17 08:07:45 Nathan kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Mai 17 08:07:45 Nathan kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    Mai 17 08:07:45 Nathan kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Mai 17 08:07:45 Nathan kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Mai 17 08:07:45 Nathan kernel: ACPI: IRQ0 used by override.
    Mai 17 08:07:45 Nathan kernel: ACPI: IRQ2 used by override.
    Mai 17 08:07:45 Nathan kernel: ACPI: IRQ9 used by override.
    Mai 17 08:07:45 Nathan kernel: Using ACPI (MADT) for SMP configuration information
    Mai 17 08:07:45 Nathan kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Mai 17 08:07:45 Nathan kernel: smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    Mai 17 08:07:45 Nathan kernel: nr_irqs_gsi: 40
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 000000000008e000 - 0000000000090000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 0000000020000000 - 0000000020200000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 0000000040000000 - 0000000040200000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 000000008ad34000 - 000000008ad5f000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 000000008ad5f000 - 000000008afa2000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 000000008afa2000 - 000000008afff000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 000000008afff000 - 000000008b000000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 000000008b000000 - 000000008fa00000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 000000008fa00000 - 00000000e0000000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000fec01000 - 00000000fed00000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000fed00000 - 00000000fed04000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000fed04000 - 00000000fed10000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000fed10000 - 00000000fed14000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000fed14000 - 00000000fed18000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000fed18000 - 00000000fed1a000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000fee01000 - 00000000ff800000
    Mai 17 08:07:45 Nathan kernel: PM: Registered nosave memory: 00000000ff800000 - 0000000100000000
    Mai 17 08:07:45 Nathan kernel: e820: [mem 0x8fa00000-0xdfffffff] available for PCI devices
    Mai 17 08:07:45 Nathan kernel: Booting paravirtualized kernel on bare hardware
    Mai 17 08:07:45 Nathan kernel: setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    Mai 17 08:07:45 Nathan kernel: PERCPU: Embedded 28 pages/cpu @ffff88016fa00000 s85824 r8192 d20672 u262144
    Mai 17 08:07:45 Nathan kernel: pcpu-alloc: s85824 r8192 d20672 u262144 alloc=1*2097152
    Mai 17 08:07:45 Nathan kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Mai 17 08:07:45 Nathan kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 1009559
    Mai 17 08:07:45 Nathan kernel: Policy zone: Normal
    Mai 17 08:07:45 Nathan kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=65820d33-ca90-4ed3-9b9e-e26a75f9331f ro quiet
    Mai 17 08:07:45 Nathan kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Mai 17 08:07:45 Nathan kernel: __ex_table already sorted, skipping sort
    Mai 17 08:07:45 Nathan kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340
    Mai 17 08:07:45 Nathan kernel: Checking aperture...
    Mai 17 08:07:45 Nathan kernel: No AGP bridge found
    Mai 17 08:07:45 Nathan kernel: Calgary: detecting Calgary via BIOS EBDA area
    Mai 17 08:07:45 Nathan kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Mai 17 08:07:45 Nathan kernel: Memory: 3955240k/6027264k available (4981k kernel code, 1924288k absent, 147736k reserved, 3968k data, 1092k init)
    Mai 17 08:07:45 Nathan kernel: SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Mai 17 08:07:45 Nathan kernel: Preemptible hierarchical RCU implementation.
    Mai 17 08:07:45 Nathan kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Mai 17 08:07:45 Nathan kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Mai 17 08:07:45 Nathan kernel: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=8.
    Mai 17 08:07:45 Nathan kernel: NR_IRQS:4352 nr_irqs:744 16
    Mai 17 08:07:45 Nathan kernel: Console: colour dummy device 80x25
    Mai 17 08:07:45 Nathan kernel: console [tty0] enabled
    Mai 17 08:07:45 Nathan kernel: allocated 16777216 bytes of page_cgroup
    Mai 17 08:07:45 Nathan kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Mai 17 08:07:45 Nathan kernel: hpet clockevent registered
    Mai 17 08:07:45 Nathan kernel: tsc: Fast TSC calibration using PIT
    Mai 17 08:07:45 Nathan kernel: tsc: Detected 1699.863 MHz processor
    Mai 17 08:07:45 Nathan kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3401.38 BogoMIPS (lpj=5666210)
    Mai 17 08:07:45 Nathan kernel: pid_max: default: 32768 minimum: 301
    Mai 17 08:07:45 Nathan kernel: Security Framework initialized
    Mai 17 08:07:45 Nathan kernel: AppArmor: AppArmor disabled by boot time parameter
    Mai 17 08:07:45 Nathan kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Mai 17 08:07:45 Nathan kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Mai 17 08:07:45 Nathan kernel: Mount-cache hash table entries: 256
    Mai 17 08:07:45 Nathan kernel: Initializing cgroup subsys cpuacct
    Mai 17 08:07:45 Nathan kernel: Initializing cgroup subsys memory
    Mai 17 08:07:45 Nathan kernel: Initializing cgroup subsys devices
    Mai 17 08:07:45 Nathan kernel: Initializing cgroup subsys freezer
    Mai 17 08:07:45 Nathan kernel: Initializing cgroup subsys net_cls
    Mai 17 08:07:45 Nathan kernel: Initializing cgroup subsys blkio
    Mai 17 08:07:45 Nathan kernel: CPU: Physical Processor ID: 0
    Mai 17 08:07:45 Nathan kernel: CPU: Processor Core ID: 0
    Mai 17 08:07:45 Nathan kernel: mce: CPU supports 7 MCE banks
    Mai 17 08:07:45 Nathan kernel: CPU0: Thermal monitoring enabled (TM1)
    Mai 17 08:07:45 Nathan kernel: [117B blob data]
    Mai 17 08:07:45 Nathan kernel: Freeing SMP alternatives: 20k freed
    Mai 17 08:07:45 Nathan kernel: ACPI: Core revision 20130117
    Mai 17 08:07:45 Nathan kernel: ACPI: All ACPI Tables successfully acquired
    Mai 17 08:07:45 Nathan kernel: ftrace: allocating 19539 entries in 77 pages
    Mai 17 08:07:45 Nathan kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Mai 17 08:07:45 Nathan kernel: smpboot: CPU0: Intel(R) Core(TM) i5-2557M CPU @ 1.70GHz (fam: 06, model: 2a, stepping: 07)
    Mai 17 08:07:45 Nathan kernel: TSC deadline timer enabled
    Mai 17 08:07:45 Nathan kernel: Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, Intel PMU driver.
    Mai 17 08:07:45 Nathan kernel: perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
    Mai 17 08:07:45 Nathan kernel: ... version: 3
    Mai 17 08:07:45 Nathan kernel: ... bit width: 48
    Mai 17 08:07:45 Nathan kernel: ... generic registers: 4
    Mai 17 08:07:45 Nathan kernel: ... value mask: 0000ffffffffffff
    Mai 17 08:07:45 Nathan kernel: ... max period: 000000007fffffff
    Mai 17 08:07:45 Nathan kernel: ... fixed-purpose events: 3
    Mai 17 08:07:45 Nathan kernel: ... event mask: 000000070000000f
    Mai 17 08:07:45 Nathan kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Mai 17 08:07:45 Nathan kernel: smpboot: Booting Node 0, Processors #1 #2 #3
    Mai 17 08:07:45 Nathan kernel: Brought up 4 CPUs
    Mai 17 08:07:45 Nathan kernel: smpboot: Total of 4 processors activated (13604.52 BogoMIPS)
    Mai 17 08:07:45 Nathan kernel: devtmpfs: initialized
    Mai 17 08:07:45 Nathan kernel: PM: Registering ACPI NVS region [mem 0x8ad34000-0x8ad5efff] (176128 bytes)
    Mai 17 08:07:45 Nathan kernel: RTC time: 6:07:41, date: 05/17/13
    Mai 17 08:07:45 Nathan kernel: NET: Registered protocol family 16
    Mai 17 08:07:45 Nathan kernel: ACPI: bus type PCI registered
    Mai 17 08:07:45 Nathan kernel: PCI: MMCONFIG for domain 0000 [bus 00-97] at [mem 0xe0000000-0xe97fffff] (base 0xe0000000)
    Mai 17 08:07:45 Nathan kernel: PCI: MMCONFIG at [mem 0xe0000000-0xe97fffff] reserved in E820
    Mai 17 08:07:45 Nathan kernel: PCI: Using configuration type 1 for base access
    Mai 17 08:07:45 Nathan kernel: bio: create slab <bio-0> at 0
    Mai 17 08:07:45 Nathan kernel: ACPI: Added _OSI(Module Device)
    Mai 17 08:07:45 Nathan kernel: ACPI: Added _OSI(Processor Device)
    Mai 17 08:07:45 Nathan kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Mai 17 08:07:45 Nathan kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Mai 17 08:07:45 Nathan kernel: ACPI: EC: EC description table is found, configuring boot EC
    Mai 17 08:07:45 Nathan kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT 000000008ad39190 00781 (v01 PmRef Cpu0Cst 00003001 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: Dynamic OEM Table Load:
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT (null) 00781 (v01 PmRef Cpu0Cst 00003001 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT 000000008ad3a710 003A4 (v01 PmRef ApIst 00003000 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: Dynamic OEM Table Load:
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT (null) 003A4 (v01 PmRef ApIst 00003000 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT 000000008ad38d90 00119 (v01 PmRef ApCst 00003000 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: Dynamic OEM Table Load:
    Mai 17 08:07:45 Nathan kernel: ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20100915)
    Mai 17 08:07:45 Nathan kernel: ACPI: Interpreter enabled
    Mai 17 08:07:45 Nathan kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130117/hwxface-568)
    Mai 17 08:07:45 Nathan kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130117/hwxface-568)
    Mai 17 08:07:45 Nathan kernel: ACPI: (supports S0 S3 S4 S5)
    Mai 17 08:07:45 Nathan kernel: ACPI: Using IOAPIC for interrupt routing
    Mai 17 08:07:45 Nathan kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Mai 17 08:07:45 Nathan kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Mai 17 08:07:45 Nathan kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-97] only partially covers this bridge
    Mai 17 08:07:45 Nathan kernel: PCI host bridge to bus 0000:00
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:00: root bus resource [mem 0x8fa00000-0xfeafffff]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:02.0: reg 10: [mem 0xa0000000-0xa03fffff 64bit]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:02.0: reg 18: [mem 0x90000000-0x9fffffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:02.0: reg 20: [io 0x2000-0x203f]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:16.0: reg 10: [mem 0xa0607100-0xa060710f 64bit]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1a.0: [8086:1c2c] type 00 class 0x0c0300
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1a.0: reg 20: [io 0x2140-0x215f]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1a.7: [8086:1c2d] type 00 class 0x0c0320
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1a.7: reg 10: [mem 0xa0606c00-0xa0606fff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1a.7: System wakeup disabled by ACPI
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1b.0: reg 10: [mem 0xa0600000-0xa0603fff 64bit]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1b.0: System wakeup disabled by ACPI
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1c.1: System wakeup disabled by ACPI
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1d.0: [8086:1c27] type 00 class 0x0c0300
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1d.0: reg 20: [io 0x20e0-0x20ff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1d.7: [8086:1c26] type 00 class 0x0c0320
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1d.7: reg 10: [mem 0xa0606800-0xa0606bff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1d.7: System wakeup disabled by ACPI
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1f.0: [8086:1c4d] type 00 class 0x060100
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1f.2: [8086:1c01] type 00 class 0x01018f
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1f.2: reg 10: [io 0x2168-0x216f]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1f.2: reg 14: [io 0x217c-0x217f]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1f.2: reg 18: [io 0x2160-0x2167]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1f.2: reg 1c: [io 0x2178-0x217b]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1f.2: reg 20: [io 0x2060-0x206f]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1f.2: reg 24: [io 0xffe0-0xffef]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1f.3: reg 10: [mem 0xa0607000-0xa06070ff 64bit]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1f.3: reg 20: [io 0xefa0-0xefbf]
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: [8086:151a] type 01 class 0x060400
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: supports D1 D2
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:01.0: PCI bridge to [bus 03-97]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:01.0: bridge window [mem 0xa0700000-0xa49fffff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:01.0: bridge window [mem 0xa4a00000-0xa89fffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:00.0: [8086:151a] type 01 class 0x060400
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:00.0: supports D1 D2
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: [8086:151a] type 01 class 0x060400
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: supports D1 D2
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: PME# supported from D0 D1 D2 D3hot D3cold
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: [8086:151a] type 01 class 0x060400
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: supports D1 D2
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: PME# supported from D0 D1 D2 D3hot D3cold
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: PCI bridge to [bus 04-67]
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: bridge window [mem 0xa0700000-0xa09fffff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:05:00.0: [8086:151a] type 00 class 0x088000
    Mai 17 08:07:45 Nathan kernel: pci 0000:05:00.0: reg 10: [mem 0xa0700000-0xa073ffff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:05:00.0: reg 14: [mem 0xa0740000-0xa0740fff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:05:00.0: supports D1 D2
    Mai 17 08:07:45 Nathan kernel: pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:00.0: PCI bridge to [bus 05]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:00.0: bridge window [mem 0xa0700000-0xa07fffff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: PCI bridge to [bus 06-36]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: bridge window [mem 0xa0800000-0xa08fffff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: PCI bridge to [bus 37-67]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: bridge window [mem 0xa0900000-0xa09fffff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1c.0: bridge window [mem 0xa0500000-0xa05fffff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:02:00.0: [14e4:4353] type 00 class 0x028000
    Mai 17 08:07:45 Nathan kernel: pci 0000:02:00.0: reg 10: [mem 0xa0400000-0xa0403fff 64bit]
    Mai 17 08:07:45 Nathan kernel: pci 0000:02:00.0: supports D1 D2
    Mai 17 08:07:45 Nathan kernel: pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    Mai 17 08:07:45 Nathan kernel: pci 0000:02:00.0: System wakeup disabled by ACPI
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1c.1: bridge window [mem 0xa0400000-0xa04fffff]
    Mai 17 08:07:45 Nathan kernel: acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    Mai 17 08:07:45 Nathan kernel: acpi PNP0A08:00: ACPI _OSC control (0x19) granted
    Mai 17 08:07:45 Nathan kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    Mai 17 08:07:45 Nathan kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    Mai 17 08:07:45 Nathan kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    Mai 17 08:07:45 Nathan kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    Mai 17 08:07:45 Nathan kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    Mai 17 08:07:45 Nathan kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Mai 17 08:07:45 Nathan kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    Mai 17 08:07:45 Nathan kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    Mai 17 08:07:45 Nathan kernel: ACPI: Enabled 3 GPEs in block 00 to 3F
    Mai 17 08:07:45 Nathan kernel: acpi root: \_SB_.PCI0 notify handler is installed
    Mai 17 08:07:45 Nathan kernel: Found 1 acpi root devices
    Mai 17 08:07:45 Nathan kernel: ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    Mai 17 08:07:45 Nathan kernel: ACPI: No dock devices found.
    Mai 17 08:07:45 Nathan kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Mai 17 08:07:45 Nathan kernel: vgaarb: loaded
    Mai 17 08:07:45 Nathan kernel: vgaarb: bridge control possible 0000:00:02.0
    Mai 17 08:07:45 Nathan kernel: PCI: Using ACPI for IRQ routing
    Mai 17 08:07:45 Nathan kernel: PCI: pci_cache_line_size set to 64 bytes
    Mai 17 08:07:45 Nathan kernel: e820: reserve RAM buffer [mem 0x0008e000-0x0008ffff]
    Mai 17 08:07:45 Nathan kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    Mai 17 08:07:45 Nathan kernel: e820: reserve RAM buffer [mem 0x8ad34000-0x8bffffff]
    Mai 17 08:07:45 Nathan kernel: e820: reserve RAM buffer [mem 0x16fe00000-0x16fffffff]
    Mai 17 08:07:45 Nathan kernel: NetLabel: Initializing
    Mai 17 08:07:45 Nathan kernel: NetLabel: domain hash size = 128
    Mai 17 08:07:45 Nathan kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Mai 17 08:07:45 Nathan kernel: NetLabel: unlabeled traffic allowed by default
    Mai 17 08:07:45 Nathan kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    Mai 17 08:07:45 Nathan kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    Mai 17 08:07:45 Nathan kernel: Switching to clocksource hpet
    Mai 17 08:07:45 Nathan kernel: pnp: PnP ACPI init
    Mai 17 08:07:45 Nathan kernel: ACPI: bus type PNP registered
    Mai 17 08:07:45 Nathan kernel: pnp 00:00: [dma 4]
    Mai 17 08:07:45 Nathan kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    Mai 17 08:07:45 Nathan kernel: pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    Mai 17 08:07:45 Nathan kernel: system 00:02: [mem 0xfed00000-0xfed003ff] has been reserved
    Mai 17 08:07:45 Nathan kernel: system 00:02: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    Mai 17 08:07:45 Nathan kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    Mai 17 08:07:45 Nathan kernel: system 00:04: [io 0x1000-0x100f] has been reserved
    Mai 17 08:07:45 Nathan kernel: system 00:04: [io 0x0400-0x047f] has been reserved
    Mai 17 08:07:45 Nathan kernel: system 00:04: [io 0x0500-0x057f] has been reserved
    Mai 17 08:07:45 Nathan kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    Mai 17 08:07:45 Nathan kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    Mai 17 08:07:45 Nathan kernel: pnp 00:06: Plug and Play ACPI device, IDs APP0001 (active)
    Mai 17 08:07:45 Nathan kernel: system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Mai 17 08:07:45 Nathan kernel: system 00:07: [mem 0xfed10000-0xfed17fff] could not be reserved
    Mai 17 08:07:45 Nathan kernel: system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved
    Mai 17 08:07:45 Nathan kernel: system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved
    Mai 17 08:07:45 Nathan kernel: system 00:07: [mem 0xe0000000-0xefffffff] has been reserved
    Mai 17 08:07:45 Nathan kernel: system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved
    Mai 17 08:07:45 Nathan kernel: system 00:07: [mem 0xfed90000-0xfed93fff] has been reserved
    Mai 17 08:07:45 Nathan kernel: system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved
    Mai 17 08:07:45 Nathan kernel: system 00:07: [mem 0xff000000-0xffffffff] could not be reserved
    Mai 17 08:07:45 Nathan kernel: system 00:07: [mem 0xfee00000-0xfeefffff] could not be reserved
    Mai 17 08:07:45 Nathan kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    Mai 17 08:07:45 Nathan kernel: system 00:08: [mem 0x20000000-0x201fffff] has been reserved
    Mai 17 08:07:45 Nathan kernel: system 00:08: [mem 0x40000000-0x401fffff] has been reserved
    Mai 17 08:07:45 Nathan kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active)
    Mai 17 08:07:45 Nathan kernel: pnp: PnP ACPI: found 9 devices
    Mai 17 08:07:45 Nathan kernel: ACPI: bus type PNP unregistered
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: bridge window [io 0x1000-0x0fff] to [bus 06-36] add_size 1000
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06-36] add_size 200000
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: bridge window [io 0x1000-0x0fff] to [bus 37-67] add_size 1000
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 37-67] add_size 200000
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: bridge window [io 0x1000-0x0fff] to [bus 04-67] add_size 2000
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04-67] add_size 400000
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 400000
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 2000
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: BAR 15: assigned [mem 0xa4a00000-0xa4dfffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: BAR 13: can't assign io (size 0x2000)
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: BAR 15: assigned [mem 0xa4a00000-0xa4dfffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: BAR 13: can't assign io (size 0x2000)
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: BAR 15: assigned [mem 0xa4a00000-0xa4bfffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: BAR 15: assigned [mem 0xa4c00000-0xa4dfffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: BAR 13: can't assign io (size 0x1000)
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: BAR 13: can't assign io (size 0x1000)
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: BAR 15: assigned [mem 0xa4a00000-0xa4bfffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: BAR 13: can't assign io (size 0x1000)
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: BAR 15: assigned [mem 0xa4c00000-0xa4dfffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: BAR 13: can't assign io (size 0x1000)
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:00.0: PCI bridge to [bus 05]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:00.0: bridge window [mem 0xa0700000-0xa07fffff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: PCI bridge to [bus 06-36]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: bridge window [mem 0xa0800000-0xa08fffff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: bridge window [mem 0xa4c00000-0xa4dfffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: PCI bridge to [bus 37-67]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: bridge window [mem 0xa0900000-0xa09fffff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: bridge window [mem 0xa4a00000-0xa4bfffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: PCI bridge to [bus 04-67]
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: bridge window [mem 0xa0700000-0xa09fffff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:03:00.0: bridge window [mem 0xa4a00000-0xa4dfffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:01.0: PCI bridge to [bus 03-97]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:01.0: bridge window [mem 0xa0700000-0xa49fffff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:01.0: bridge window [mem 0xa4a00000-0xa89fffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1c.0: bridge window [mem 0xa0500000-0xa05fffff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1c.1: bridge window [mem 0xa0400000-0xa04fffff]
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:03.0: enabling device (0000 -> 0002)
    Mai 17 08:07:45 Nathan kernel: pci 0000:04:04.0: enabling device (0000 -> 0002)
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:1c.0: enabling device (0000 -> 0002)
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:00: resource 7 [mem 0x8fa00000-0xfeafffff]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:03: resource 0 [io 0x3000-0x3fff]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:03: resource 1 [mem 0xa0700000-0xa49fffff]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:03: resource 2 [mem 0xa4a00000-0xa89fffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:04: resource 1 [mem 0xa0700000-0xa09fffff]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:04: resource 2 [mem 0xa4a00000-0xa4dfffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:05: resource 1 [mem 0xa0700000-0xa07fffff]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:06: resource 1 [mem 0xa0800000-0xa08fffff]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:06: resource 2 [mem 0xa4c00000-0xa4dfffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:37: resource 1 [mem 0xa0900000-0xa09fffff]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:37: resource 2 [mem 0xa4a00000-0xa4bfffff 64bit pref]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:01: resource 1 [mem 0xa0500000-0xa05fffff]
    Mai 17 08:07:45 Nathan kernel: pci_bus 0000:02: resource 1 [mem 0xa0400000-0xa04fffff]
    Mai 17 08:07:45 Nathan kernel: NET: Registered protocol family 2
    Mai 17 08:07:45 Nathan kernel: TCP established hash table entries: 32768 (order: 7, 524288 bytes)
    Mai 17 08:07:45 Nathan kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    Mai 17 08:07:45 Nathan kernel: TCP: Hash tables configured (established 32768 bind 32768)
    Mai 17 08:07:45 Nathan kernel: TCP: reno registered
    Mai 17 08:07:45 Nathan kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    Mai 17 08:07:45 Nathan kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    Mai 17 08:07:45 Nathan kernel: NET: Registered protocol family 1
    Mai 17 08:07:45 Nathan kernel: pci 0000:00:02.0: Boot video device
    Mai 17 08:07:45 Nathan kernel: PCI: CLS 256 bytes, default 64
    Mai 17 08:07:45 Nathan kernel: Unpacking initramfs...
    Mai 17 08:07:45 Nathan kernel: Freeing initrd memory: 2868k freed
    Mai 17 08:07:45 Nathan kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Mai 17 08:07:45 Nathan kernel: software IO TLB [mem 0x86d34000-0x8ad34000] (64MB) mapped at [ffff880086d34000-ffff88008ad33fff]
    Mai 17 08:07:45 Nathan kernel: Scanning for low memory corruption every 60 seconds
    Mai 17 08:07:45 Nathan kernel: audit: initializing netlink socket (disabled)
    Mai 17 08:07:45 Nathan kernel: type=2000 audit(1368770861.326:1): initialized
    Mai 17 08:07:45 Nathan kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Mai 17 08:07:45 Nathan kernel: VFS: Disk quotas dquot_6.5.2
    Mai 17 08:07:45 Nathan kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Mai 17 08:07:45 Nathan kernel: msgmni has been set to 7730
    Mai 17 08:07:45 Nathan kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Mai 17 08:07:45 Nathan kernel: io scheduler noop registered
    Mai 17 08:07:45 Nathan kernel: io scheduler deadline registered
    Mai 17 08:07:45 Nathan kernel: io scheduler cfq registered (default)
    Mai 17 08:07:45 Nathan kernel: pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    Mai 17 08:07:45 Nathan kernel: pcieport 0000:03:00.0: irq 41 for MSI/MSI-X
    Mai 17 08:07:45 Nathan kernel: pcieport 0000:04:00.0: irq 42 for MSI/MSI-X
    Mai 17 08:07:45 Nathan kernel: pcieport 0000:04:03.0: irq 43 for MSI/MSI-X
    Mai 17 08:07:45 Nathan kernel: pcieport 0000:04:04.0: irq 44 for MSI/MSI-X
    Mai 17 08:07:45 Nathan kernel: vesafb: mode is 1024x768x32, linelength=4096, pages=0
    Mai 17 08:07:45 Nathan kernel: vesafb: scrolling: redraw
    Mai 17 08:07:45 Nathan kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Mai 17 08:07:45 Nathan kernel: vesafb: framebuffer at 0x90000000, mapped to 0xffffc9000a000000, using 3072k, total 3072k
    Mai 17 08:07:45 Nathan kernel: Console: switching to colour frame buffer device 128x48
    Mai 17 08:07:45 Nathan kernel: fb0: VESA VGA frame buffer device
    Mai 17 08:07:45 Nathan kernel: intel_idle: MWAIT substates: 0x21120
    Mai 17 08:07:45 Nathan kernel: intel_idle: v0.4 model 0x2A
    Mai 17 08:07:45 Nathan kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
    Mai 17 08:07:45 Nathan kernel: GHES: HEST is not enabled!
    Mai 17 08:07:45 Nathan kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Mai 17 08:07:45 Nathan kernel: Linux agpgart interface v0.103
    Mai 17 08:07:45 Nathan kernel: i8042: PNP: No PS/2 controller found. Probing ports directly.
    Mai 17 08:07:45 Nathan kernel: tsc: Refined TSC clocksource calibration: 1700.009 MHz
    Mai 17 08:07:45 Nathan kernel: Switching to clocksource tsc
    Mai 17 08:07:45 Nathan kernel: i8042: No controller found
    Mai 17 08:07:45 Nathan kernel: mousedev: PS/2 mouse device common for all mice
    Mai 17 08:07:45 Nathan kernel: rtc_cmos 00:05: RTC can wake from S4
    Mai 17 08:07:45 Nathan kernel: rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    Mai 17 08:07:45 Nathan kernel: rtc_cmos 00:05: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    Mai 17 08:07:45 Nathan kernel: Intel P-state driver initializing.
    Mai 17 08:07:45 Nathan kernel: Intel pstate controlling: cpu 0
    Mai 17 08:07:45 Nathan kernel: Intel pstate controlling: cpu 1
    Mai 17 08:07:45 Nathan kernel: Intel pstate controlling: cpu 2
    Mai 17 08:07:45 Nathan kernel: Intel pstate controlling: cpu 3
    Mai 17 08:07:45 Nathan kernel: cpuidle: using governor ladder
    Mai 17 08:07:45 Nathan kernel: cpuidle: using governor menu
    Mai 17 08:07:45 Nathan kernel: EFI Variables Facility v0.08 2004-May-17
    Mai 17 08:07:45 Nathan kernel: drop_monitor: Initializing network drop monitor service
    Mai 17 08:07:45 Nathan kernel: TCP: cubic registered
    Mai 17 08:07:45 Nathan kernel: NET: Registered protocol family 10
    Mai 17 08:07:45 Nathan kernel: NET: Registered protocol family 17
    Mai 17 08:07:45 Nathan kernel: Key type dns_resolver registered
    Mai 17 08:07:45 Nathan kernel: PM: Hibernation image not present or could not be loaded.
    Mai 17 08:07:45 Nathan kernel: registered taskstats version 1
    Mai 17 08:07:45 Nathan kernel: Magic number: 13:967:114
    Mai 17 08:07:45 Nathan kernel: Freeing unused kernel memory: 1092k freed
    Mai 17 08:07:45 Nathan kernel: Write protecting the kernel read-only data: 8192k
    Mai 17 08:07:45 Nathan kernel: Freeing unused kernel memory: 1152k freed
    Mai 17 08:07:45 Nathan kernel: Freeing unused kernel memory: 420k freed
    Mai 17 08:07:45 Nathan systemd-udevd[56]: starting version 203
    Mai 17 08:07:45 Nathan kernel: ACPI: bus type USB registered
    Mai 17 08:07:45 Nathan kernel: usbcore: registered new interface driver usbfs
    Mai 17 08:07:45 Nathan kernel: usbcore: registered new interface driver hub
    Mai 17 08:07:45 Nathan kernel: usbcore: registered new device driver usb
    Mai 17 08:07:45 Nathan kernel: SCSI subsystem initialized
    Mai 17 08:07:45 Nathan kernel: ACPI: bus type ATA registered
    Mai 17 08:07:45 Nathan kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Mai 17 08:07:45 Nathan kernel: libata version 3.00 loaded.
    Mai 17 08:07:45 Nathan kernel: ehci-pci: EHCI PCI platform driver
    Mai 17 08:07:45 Nathan kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Mai 17 08:07:45 Nathan kernel: ehci-pci 0000:00:1a.7: setting latency timer to 64
    Mai 17 08:07:45 Nathan kernel: ehci-pci 0000:00:1a.7: EHCI Host Controller
    Mai 17 08:07:45 Nathan kernel: ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
    Mai 17 08:07:45 Nathan kernel: ehci-pci 0000:00:1a.7: debug port 2
    Mai 17 08:07:45 Nathan kernel: ehci-pci 0000:00:1a.7: cache line size of 256 is not supported
    Mai 17 08:07:45 Nathan kernel: ehci-pci 0000:00:1a.7: irq 23, io mem 0xa0606c00
    Mai 17 08:07:45 Nathan kernel: ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    Mai 17 08:07:45 Nathan kernel: hub 1-0:1.0: USB hub found
    Mai 17 08:07:45 Nathan kernel: hub 1-0:1.0: 6 ports detected
    Mai 17 08:07:45 Nathan kernel: ehci-pci 0000:00:1d.7: setting latency timer to 64
    Mai 17 08:07:45 Nathan kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
    Mai 17 08:07:45 Nathan kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
    Mai 17 08:07:45 Nathan kernel: ehci-pci 0000:00:1d.7: debug port 2
    Mai 17 08:07:45 Nathan kernel: ehci-pci 0000:00:1d.7: cache line size of 256 is not supported
    Mai 17 08:07:45 Nathan kernel: ehci-pci 0000:00:1d.7: irq 22, io mem 0xa0606800
    Mai 17 08:07:45 Nathan kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Mai 17 08:07:45 Nathan kernel: hub 2-0:1.0: USB hub found
    Mai 17 08:07:45 Nathan kernel: hub 2-0:1.0: 8 ports detected
    Mai 17 08:07:45 Nathan kernel: ata_piix 0000:00:1f.2: version 2.13
    Mai 17 08:07:45 Nathan kernel: ata_piix 0000:00:1f.2: MAP [
    Mai 17 08:07:45 Nathan kernel: P0 P2 P1 P3 ]
    Mai 17 08:07:45 Nathan kernel: ata_piix 0000:00:1f.2: setting latency timer to 64
    Mai 17 08:07:45 Nathan kernel: scsi0 : ata_piix
    Mai 17 08:07:45 Nathan kernel: scsi1 : ata_piix
    Mai 17 08:07:45 Nathan kernel: ata1: SATA max UDMA/133 cmd 0x2168 ctl 0x217c bmdma 0x2060 irq 19
    Mai 17 08:07:45 Nathan kernel: ata2: SATA max UDMA/133 cmd 0x2160 ctl 0x2178 bmdma 0x2068 irq 19
    Mai 17 08:07:45 Nathan kernel: uhci_hcd 0000:00:1a.0: setting latency timer to 64
    Mai 17 08:07:45 Nathan kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
    Mai 17 08:07:45 Nathan kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    Mai 17 08:07:45 Nathan kernel: uhci_hcd 0000:00:1a.0: irq 21, io base 0x00002140
    Mai 17 08:07:45 Nathan kernel: hub 3-0:1.0: USB hub found
    Mai 17 08:07:45 Nathan kernel: hub 3-0:1.0: 2 ports detected
    Mai 17 08:07:45 Nathan kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
    Mai 17 08:07:45 Nathan kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Mai 17 08:07:45 Nathan kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
    Mai 17 08:07:45 Nathan kernel: uhci_hcd 0000:00:1d.0: irq 19, io base 0x000020e0
    Mai 17 08:07:45 Nathan kernel: hub 4-0:1.0: USB hub found
    Mai 17 08:07:45 Nathan kernel: hub 4-0:1.0: 2 ports detected
    Mai 17 08:07:45 Nathan kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
    Mai 17 08:07:45 Nathan kernel: hub 1-1:1.0: USB hub found
    Mai 17 08:07:45 Nathan kernel: hub 1-1:1.0: 3 ports detected
    Mai 17 08:07:45 Nathan kernel: usb 1-2: new high-speed USB device number 3 using ehci-pci
    Mai 17 08:07:45 Nathan kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
    Mai 17 08:07:45 Nathan kernel: hub 2-1:1.0: USB hub found
    Mai 17 08:07:45 Nathan kernel: hub 2-1:1.0: 2 ports detected
    Mai 17 08:07:45 Nathan kernel: usb 1-1.1: new full-speed USB device number 4 using ehci-pci
    Mai 17 08:07:45 Nathan kernel: hub 1-1.1:1.0: USB hub found
    Mai 17 08:07:45 Nathan kernel: hub 1-1.1:1.0: 3 ports detected
    Mai 17 08:07:45 Nathan kernel: usb 1-1.2: new full-speed USB device number 5 using ehci-pci
    Mai 17 08:07:45 Nathan kernel: ata2.00: failed to resume link (SControl 0)
    Mai 17 08:07:45 Nathan kernel: hidraw: raw HID events driver (C) Jiri Kosina
    Mai 17 08:07:45 Nathan kernel: usbcore: registered new interface driver usbhid
    Mai 17 08:07:45 Nathan kernel: usbhid: USB HID core driver
    Mai 17 08:07:45 Nathan kernel: input: Apple Inc. Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2:1.0/input/input0
    Mai 17 08:07:45 Nathan kernel: apple 0003:05AC:024D.0001: input,hidraw0: USB HID v1.11 Keyboard [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:1a.7-1.2/input0
    Mai 17 08:07:45 Nathan kernel: usb 2-1.1: new high-speed USB device number 3 using ehci-pci
    Mai 17 08:07:45 Nathan kernel: apple 0003:05AC:024D.0002: hidraw1: USB HID v1.11 Device [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:1a.7-1.2/input1
    Mai 17 08:07:45 Nathan kernel: Initializing USB Mass Storage driver...
    Mai 17 08:07:45 Nathan kernel: scsi2 : usb-storage 2-1.1:1.0
    Mai 17 08:07:45 Nathan kernel: usbcore: registered new interface driver usb-storage
    Mai 17 08:07:45 Nathan kernel: USB Mass Storage support registered.
    Mai 17 08:07:45 Nathan kernel: ata1.01: failed to resume link (SControl 0)
    Mai 17 08:07:45 Nathan kernel: usb 1-1.1.1: new full-speed USB device number 6 using ehci-pci
    Mai 17 08:07:45 Nathan kernel: ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Mai 17 08:07:45 Nathan kernel: ata1.01: SATA link down (SStatus 0 SControl 0)
    Mai 17 08:07:45 Nathan kernel: ata1.00: ATA-8: APPLE SSD SM128C, AXM09A1Q, max UDMA/133
    Mai 17 08:07:45 Nathan kernel: ata1.00: 236978176 sectors, multi 16: LBA48 NCQ (depth 0/32)
    Mai 17 08:07:45 Nathan kernel: usb 1-1.1.2: new full-speed USB device number 7 using ehci-pci
    Mai 17 08:07:45 Nathan kernel: ata1.00: configured for UDMA/133
    Mai 17 08:07:45 Nathan kernel: scsi 0:0:0:0: Direct-Access ATA APPLE SSD SM128C AXM0 PQ: 0 ANSI: 5
    Mai 17 08:07:45 Nathan kernel: usb 1-1.1.3: new full-speed USB device number 8 using ehci-pci
    Mai 17 08:07:45 Nathan kernel: ata2.01: failed to resume link (SControl 0)
    Mai 17 08:07:45 Nathan kernel: ata2.00: SATA link down (SStatus 0 SControl 0)
    Mai 17 08:07:45 Nathan kernel: ata2.01: SATA link down (SStatus 0 SControl 0)
    Mai 17 08:07:45 Nathan kernel: sd 0:0:0:0: [sda] 236978176 512-byte logical blocks: (121 GB/113 GiB)
    Mai 17 08:07:45 Nathan kernel: sd 0:0:0:0: [sda] Write Protect is off
    Mai 17 08:07:45 Nathan kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Mai 17 08:07:45 Nathan kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Mai 17 08:07:45 Nathan kernel: sda: sda1 sda2
    Mai 17 08:07:45 Nathan kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Mai 17 08:07:45 Nathan kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    Mai 17 08:07:45 Nathan systemd[1]: systemd 204 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    Mai 17 08:07:45 Nathan systemd[1]: Set hostname to <Nathan>.
    Mai 17 08:07:45 Nathan kernel: scsi 2:0:0:0: Direct-Access APPLE SD Card Reader 2.00 PQ: 0 ANSI: 0
    Mai 17 08:07:45 Nathan kernel: sd 2:0:0:0: [sdb] Attached SCSI removable disk
    Mai 17 08:07:45 Nathan systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    Mai 17 08:07:45 Nathan systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Mai 17 08:07:45 Nathan systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Mai 17 08:07:45 Nathan systemd[1]: Starting Remote File Systems.
    Mai 17 08:07:45 Nathan systemd[1]: Reached target Remote File Systems.
    Mai 17 08:07:45 Nathan systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Mai 17 08:07:45 Nathan systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Mai 17 08:07:45 Nathan systemd[1]: Starting Device-mapper event daemon FIFOs.
    Mai 17 08:07:45 Nathan systemd[1]: Listening on Device-mapper event daemon FIFOs.
    Mai 17 08:07:45 Nathan systemd[1]: Starting LVM2 metadata daemon socket.
    Mai 17 08:07:45 Nathan systemd[1]: Listening on LVM2 metadata daemon socket.
    Mai 17 08:07:45 Nathan systemd[1]: Starting Delayed Shutdown Socket.
    Mai 17 08:07:45 Nathan systemd[1]: Listening on Delayed Shutdown Socket.
    Mai 17 08:07:45 Nathan systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Mai 17 08:07:45 Nathan systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Mai 17 08:07:45 Nathan systemd[1]: Starting Encrypted Volumes.
    Mai 17 08:07:45 Nathan systemd[1]: Reached target Encrypted Volumes.
    Mai 17 08:07:45 Nathan systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Mai 17 08:07:45 Nathan systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Mai 17 08:07:45 Nathan systemd[1]: Starting Paths.
    Mai 17 08:07:45 Nathan systemd[1]: Reached target Paths.
    Mai 17 08:07:45 Nathan systemd[1]: Starting Journal Socket.
    Mai 17 08:07:45 Nathan systemd[1]: Listening on Journal Socket.
    Mai 17 08:07:45 Nathan systemd[1]: Mounting Debug File System...
    Mai 17 08:07:45 Nathan systemd[1]: Started Set Up Additional Binary Formats.
    Mai 17 08:07:45 Nathan systemd[1]: Starting Setup Virtual Console...
    Mai 17 08:07:45 Nathan systemd[1]: Starting Apply Kernel Variables...
    Mai 17 08:07:45 Nathan systemd[1]: Mounting Huge Pages File System...
    Mai 17 08:07:45 Nathan systemd[1]: Mounting POSIX Message Queue File System...
    Mai 17 08:07:45 Nathan systemd[1]: Starting Load Kernel Modules...
    Mai 17 08:07:45 Nathan systemd[1]: Starting Create static device nodes in /dev...
    Mai 17 08:07:45 Nathan systemd[1]: Starting Journal Service...
    Mai 17 08:07:45 Nathan systemd[1]: Started Journal Service.
    Mai 17 08:07:45 Nathan systemd[1]: Starting udev Kernel Socket.
    Mai 17 08:07:45 Nathan systemd[1]: Listening on udev Kernel Socket.
    Mai 17 08:07:45 Nathan systemd[1]: Starting udev Control Socket.
    Mai 17 08:07:45 Nathan systemd[1]: Listening on udev Control Socket.
    Mai 17 08:07:45 Nathan systemd[1]: Starting udev Coldplug all Devices...
    Mai 17 08:07:45 Nathan systemd[1]: Starting Swap.
    Mai 17 08:07:45 Nathan systemd[1]: Reached target Swap.
    Mai 17 08:07:45 Nathan systemd[1]: Started File System Check on Root Device.
    Mai 17 08:07:45 Nathan systemd[1]: Starting Remount Root and Kernel File Systems...
    Mai 17 08:07:45 Nathan systemd[1]: Mounting Temporary Directory...
    Mai 17 08:07:45 Nathan systemd[1]: Expecting device dev-disk-by\x2duuid-168d8e59\x2db7eb\x2d4af3\x2da286\x2dddb662307a59.device...
    Mai 17 08:07:45 Nathan kernel: cfg80211: Calling CRDA to update world regulatory domain
    Mai 17 08:07:45 Nathan systemd-udevd[120]: starting version 204
    Mai 17 08:07:45 Nathan kernel: lib80211: common routines for IEEE802.11 drivers
    Mai 17 08:07:45 Nathan kernel: lib80211_crypt: registered algorithm 'NULL'
    Mai 17 08:07:45 Nathan systemd-journal[113]: Journal started
    Mai 17 08:07:45 Nathan systemd-sysctl[108]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    Mai 17 08:07:45 Nathan systemd[1]: Started Apply Kernel Variables.
    Mai 17 08:07:45 Nathan systemd[1]: Started Create static device nodes in /dev.
    Mai 17 08:07:45 Nathan systemd[1]: Starting udev Kernel Device Manager...
    Mai 17 08:07:45 Nathan systemd[1]: Started udev Kernel Device Manager.
    Mai 17 08:07:45 Nathan systemd[1]: Started udev Coldplug all Devices.
    Mai 17 08:07:45 Nathan systemd[1]: Mounted Debug File System.
    Mai 17 08:07:45 Nathan systemd[1]: Mounted Temporary Directory.
    Mai 17 08:07:45 Nathan kernel: wl: module license 'Mixed/Proprietary' taints kernel.
    Mai 17 08:07:45 Nathan kernel: Disabling lock debugging due to kernel taint
    Mai 17 08:07:45 Nathan kernel: input: PC Speaker as /devices/platform/pcspkr/input/input1
    Mai 17 08:07:45 Nathan kernel: ACPI: Requesting acpi_cpufreq
    Mai 17 08:07:45 Nathan kernel: INFO @wl_cfg80211_attach : Registered CFG80211 phy
    Mai 17 08:07:45 Nathan kernel: ACPI: AC Adapter [ADP1] (on-line)
    Mai 17 08:07:45 Nathan kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
    Mai 17 08:07:45 Nathan kernel: ACPI: Lid Switch [LID0]
    Mai 17 08:07:45 Nathan kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
    Mai 17 08:07:45 Nathan kernel: ACPI: Power Button [PWRB]
    Mai 17 08:07:45 Nathan kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input4
    Mai 17 08:07:45 Nathan kernel: ACPI: Sleep Button [SLPB]
    Mai 17 08:07:45 Nathan systemd[1]: Mounted Huge Pages File System.
    Mai 17 08:07:45 Nathan systemd[1]: Mounted POSIX Message Queue File System.
    Mai 17 08:07:45 Nathan kernel: ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130117/utaddress-251)
    Mai 17 08:07:45 Nathan kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Mai 17 08:07:45 Nathan kernel: ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 1 (20130117/utaddress-251)
    Mai 17 08:07:45 Nathan kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Mai 17 08:07:45 Nathan kernel: ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130117/utaddress-251)
    Mai 17 08:07:45 Nathan kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Mai 17 08:07:45 Nathan kernel: ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130117/utaddress-251)
    Mai 17 08:07:45 Nathan kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Mai 17 08:07:45 Nathan kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
    Mai 17 08:07:45 Nathan kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    Mai 17 08:07:45 Nathan kernel: ACPI: Power Button [PWRF]
    Mai 17 08:07:45 Nathan systemd[1]: Started Remount Root and Kernel File Systems.
    Mai 17 08:07:45 Nathan systemd[1]: Starting Local File Systems (Pre).
    Mai 17 08:07:45 Nathan systemd[1]: Reached target Local File Systems (Pre).
    Mai 17 08:07:45 Nathan systemd[1]: Starting Load Random Seed...
    Mai 17 08:07:45 Nathan kernel: EXT4-fs (sda1): re-mounted. Opts: data=ordered
    Mai 17 08:07:45 Nathan systemd[1]: Started Load Random Seed.
    Mai 17 08:07:45 Nathan kernel: ACPI Warning: 0x000000000000efa0-0x000000000000efbf SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130117/utaddress-251)
    Mai 17 08:07:45 Nathan kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Mai 17 08:07:45 Nathan kernel: microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x1a
    Mai 17 08:07:45 Nathan systemd-modules-load[111]: Inserted module 'wl'
    Mai 17 08:07:45 Nathan systemd[1]: Started Load Kernel Modules.
    Mai 17 08:07:45 Nathan systemd[1]: Mounted FUSE Control File System.
    Mai 17 08:07:45 Nathan systemd[1]: Mounting Configuration File System...
    Mai 17 08:07:45 Nathan kernel: lib80211_crypt: registered algorithm 'TKIP'
    Mai 17 08:07:45 Nathan kernel: eth0: Broadcom BCM4353 802.11 Hybrid Wireless Controller 5.100.82.112
    Mai 17 08:07:45 Nathan kernel: [drm] Initialized drm 1.1.0 20060810
    Mai 17 08:07:45 Nathan kernel: mei 0000:00:16.0: setting latency timer to 64
    Mai 17 08:07:45 Nathan kernel: mei 0000:00:16.0: irq 45 for MSI/MSI-X
    Mai 17 08:07:45 Nathan systemd[1]: Mounted Configuration File System.
    Mai 17 08:07:45 Nathan kernel: microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x1a
    Mai 17 08:07:45 Nathan kernel: microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x1a
    Mai 17 08:07:45 Nathan kernel: microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x1a
    Mai 17 08:07:45 Nathan kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Mai 17 08:07:45 Nathan systemd[1]: Found device APPLE_SSD_SM128C.
    Mai 17 08:07:45 Nathan systemd[1]: Starting File System Check on /dev/disk/by-uuid/168d8e59-b7eb-4af3-a286-ddb662307a59...
    Mai 17 08:07:45 Nathan kernel: ACPI: Battery Slot [BAT0] (battery present)
    Mai 17 08:07:45 Nathan kernel: snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    Mai 17 08:07:45 Nathan systemd[1]: Started Setup Virtual Console.
    Mai 17 08:07:45 Nathan kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    Mai 17 08:07:45 Nathan kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    Mai 17 08:07:45 Nathan kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    Mai 17 08:07:45 Nathan kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    Mai 17

    ewaller wrote:For the record, drm and EDID both have to do with your display system and have nothing do to with networking.drm is Direct Rendering M...  Okay, I don't know what the M means.  (not to be confused with Digital Rights Management)
    EDID is Extended Display Identification Data, information stored about you display's capabilities and geometry that are read by the video driver so provide automatic configuration.  The checksum error meant that there were inconsistencies in the data read.  No idea why.
    Edit,
    Oh, and welcome to Arch
    Thank you for the info and for the welcome. I will read more about EDID and drm.
    WonderWoofy wrote:I would also like to extend a welcome to the Arch forums and community.
    With journalctl, you have certainly discovered a powerful debugging tool.  It will no doublt come in handy along your learning adventures here.
    I will admit being very impressed by your use of code tags in a first post as a new Arch Linux user.  Bravo sir!
    Thank you also for your welcome and your advises. I  saw from other posts that the people here use some special style of representing code, so I searched a bit and clicked here and there and clicked on the BBCode link below the 'Quick post'-window and voila found the help site of the forum.
    Unfortunately, the errors came back this morning:
    Mai 18 08:22:29 Nathan kernel: [drm:intel_dp_aux_wait_done] *ERROR* dp aux hw did not signal timeout (has irq: 1)!
    Mai 18 08:22:29 Nathan kernel: [drm:intel_dp_aux_wait_done] *ERROR* dp aux hw did not signal timeout (has irq: 1)!
    Mai 18 08:22:29 Nathan kernel: iTCO_vendor_support: vendor-support=0
    Mai 18 08:22:29 Nathan kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    Mai 18 08:22:29 Nathan kernel: iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
    Mai 18 08:22:29 Nathan systemd-udevd[139]: renamed network interface eth0 to wlp2s0
    Mai 18 08:22:29 Nathan systemd-sysctl[590]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    Mai 18 08:22:29 Nathan kernel: [drm:drm_edid_block_valid] *ERROR* EDID checksum is invalid, remainder is 250
    Mai 18 08:22:29 Nathan kernel: Raw EDID:
    Mai 18 08:22:29 Nathan kernel: 00 ff ff ff ff ff ff 00 10 df 9c 00 00 00 00 1a
    Mai 18 08:22:29 Nathan kernel: 15 01 04 95 1d 12 78 02 ef 05 97 57 54 92 27 22
    Mai 18 08:22:29 Nathan kernel: 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01 01
    Mai 18 08:22:29 Nathan kernel: 01 01 01 01 01 c2 23 a0 d4 50 84 1a 30 40 2a 36
    Mai 18 08:22:29 Nathan kernel: 00 1e b3 10 00 00 18 00 00 00 10 00 00 00 00 00
    Mai 18 08:22:29 Nathan kernel: iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
    Mai 18 08:22:29 Nathan systemd-udevd[139]: renamed network interface eth0 to wlp2s0
    Mai 18 08:22:29 Nathan systemd-sysctl[590]: Duplicate assignment of kernel/sysrq in file '/usr/lib/sysctl.d/50-default.conf', ignoring.
    Mai 18 08:22:29 Nathan kernel: [drm:drm_edid_block_valid] *ERROR* EDID checksum is invalid, remainder is 250
    Mai 18 08:22:29 Nathan kernel: Raw EDID:
    Mai 18 08:22:29 Nathan kernel: 00 ff ff ff ff ff ff 00 10 df 9c 00 00 00 00 1a
    Mai 18 08:22:29 Nathan kernel: 15 01 04 95 1d 12 78 02 ef 05 97 57 54 92 27 22
    Mai 18 08:22:29 Nathan kernel: 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01 01
    Mai 18 08:22:29 Nathan kernel: 01 01 01 01 01 c2 23 a0 d4 50 84 1a 30 40 2a 36
    Mai 18 08:22:29 Nathan kernel: 00 1e b3 10 00 00 18 00 00 00 10 00 00 00 00 00
    Mai 18 08:22:29 Nathan kernel: 00 00 00 00 00 00 00 00 00 00 00 00 fe 00 4c 50
    Mai 18 08:22:29 Nathan kernel: 31 33 33 57 50 31 2d 54 4a 41 33 00 00 00 fc 00
    Mai 18 08:22:29 Nathan kernel: 43 6f 6c 6f 72 20 4c 43 44 0a 20 20 20 00 7e 00
    Mai 18 08:22:29 Nathan kernel: usb 1-1.1.2: USB disconnect, device number 7
    Mai 18 08:22:29 Nathan kernel: [drm:intel_dp_aux_wait_done] *ERROR* dp aux hw did not signal timeout (has irq: 1)!
    Mai 18 08:22:29 Nathan systemd-logind[335]: Watching system buttons on /dev/input/event1 (Lid Switch)
    Mai 18 08:22:29 Nathan systemd-logind[335]: Watching system buttons on /dev/input/event2 (Power Button)
    Mai 18 08:22:29 Nathan systemd[1]: Starting Bluetooth.
    Mai 18 08:22:29 Nathan systemd[1]: Reached target Bluetooth.
    Mai 18 08:22:29 Nathan systemd-logind[335]: Watching system buttons on /dev/input/event3 (Sleep Button)
    Mai 18 08:22:29 Nathan systemd-logind[335]: Watching system buttons on /dev/input/event4 (Power Button)
    Mai 18 08:22:29 Nathan kernel: [drm:intel_dp_aux_wait_done] *ERROR* dp aux hw did not signal timeout (has irq: 1)!
    Mai 18 08:22:30 Nathan kernel: [drm:intel_dp_aux_wait_done] *ERROR* dp aux hw did not signal timeout (has irq: 1)!
    Mai 18 08:22:30 Nathan kernel: [drm:intel_dp_aux_wait_done] *ERROR* dp aux hw did not signal timeout (has irq: 1)!
    Mai 18 08:22:30 Nathan kernel: [drm:intel_dp_aux_wait_done] *ERROR* dp aux hw did not signal timeout (has irq: 1)!
    Mai 18 08:22:30 Nathan kernel: [drm:drm_edid_block_valid] *ERROR* EDID checksum is invalid, remainder is 8
    Mai 18 08:22:30 Nathan kernel: Raw EDID:
    Mai 18 08:22:30 Nathan kernel: 00 ff ff ff ff ff ff 00 06 10 df 9c 00 00 00 00
    Mai 18 08:22:30 Nathan kernel: 1a 15 01 04 95 1d 12 78 02 ef 05 97 57 54 92 27
    Mai 18 08:22:30 Nathan kernel: 22 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01
    Mai 18 08:22:30 Nathan kernel: 01 01 01 01 01 c2 23 a0 d4 50 84 1a 30 40 2a 36
    Mai 18 08:22:30 Nathan kernel: 00 1e b3 10 00 00 18 00 00 00 10 00 00 00 00 00
    Mai 18 08:22:30 Nathan kernel: 00 00 00 00 00 00 00 00 00 00 00 00 fe 00 4c 50
    Mai 18 08:22:30 Nathan kernel: 31 33 33 57 50 31 2d 54 4a 41 33 00 00 00 fc 00
    Mai 18 08:22:30 Nathan kernel: 43 6c 6f 72 20 4c 43 44 20 20 20 00 00 00 00 00
    I will search the net a bit and will report here what I have found on this issue.
    Edit,
    oh, and if someone here has an idea, I would be happy to 'hear' it.
    Last edited by Rhodan@Nathan (2013-05-18 08:20:22)

Maybe you are looking for

  • Cisco Jabber for Android on a Samsung Galaxy Xcover (GT-S5690)

    Hello there, Yesterday we installed the Cisco Jabber client for Android on the Samsung Galaxy Xcover (GT-S5690) phone. First we had some issue's with one-way voice, but suddenly this problem was occured. Another problem, which is still there, is when

  • Ringtone option not showing up.   what gives?

    I'm having a weird issue in the new version of iTunes where my laptop shows the Ringtone feature, but my desktop (with the same version of the software) does not. Though Ringtone shows up in the View Options on my laptop, it does not show up in View

  • Multiple IDOCs

    Hi, I am Doing Multiple IDocs to File Scenario. MATMAS05 I am using as the IDOC for Both. I am sending some data from From MATMAS05 idoc1 and some other data from MATMAS05 idoc2. Both should be equated by material Number. I followed IDOCs (Multiple T

  • XServe Running Tiger, not Server Version?

    Can we install the standard (non-server) version of Tiger on an XServe? We use to render video and run video at concerts and are having lots of render crashes under Final Cut as well as some tasks apparantly running in the background which is making

  • Swaps - Help with tunning.

    Hi experts I'am facin some problems with swaps My machine windows 2003 SQL 2005 with 48GB RAM. Any sugestion about Tunning Buffers ? THX Regards Below number of swaps : Nametab (NTAB)     0 Table definition             379.612 Field definition