Initializing Servlets after Weblogic starts

I have 2 separate ears, one handling the security and the other
          handling the business applications. The business app, on servlet
          initialization, calls the security servlet on port 7001 to login the
          default user. However, while WL is still starting up, the servlet
          fails to recognize the listener port 7001 and fails with a
          java.net.ConnectException saying it could not connect. This when the
          applications have been deployed and the server is being restarted.
          Is there any way to automatically initialize the servlet while the
          server is being brought up so that it initializes after the ports
          become available?
          Thanks in advance.
          

unfortunately no solution worked :-(
I tried re-depolyment of "ServiceBus_Console" in Environment/Deployments of WebLogic admin but did not help. I think i should have killed all nohup instances of server though.
I had to do the reinstall... :-(

Similar Messages

  • 404 error while invoking servlet in weblogic 6.0

              Hi,
              When I try to invoke a servlet from weblogic 6.0, I am getting
              404 error. I have copied the HelloWorldServlet class into defaultWebAppl_Server/WEB_INF/CLASSES
              directory and when I invoke the HelloWorldservlet, its giving file
              not found(404) error. I am doing exactly what has been given in
              the "quick start to servlets" in weblogic 6.0. I am using Windows
              NT.
              I have also another problem when I use java utils.dbping to test
              the connection to my oracle8.1.8, its giving licence file not found.
              Could some one help me out from this.
              Thanks in advance,
              Ramu
              

              Hi kumar,
              I have been keep trying to solve that. After some time Suddenly
              "Error 404" disappeared and instead "Error 500" came. Okay kumar,
              here is what I am doing...
              I have installed weblogic6.0(eval), oracle 8.1.6 on Windows NT4.0.
              I have installed oracle Enterprise edition from CD "ORACLE 8.1.6
              for NT".
              I installed the weblogic under D: drive.
              I did class path settings as given in documentation. But Iam not
              sure whether I need to do any other class path settings.
              I was able to run pet store application given in weblogic server.
              I went to "quick start" section and ran HelloWorld.jsp page from
              "DefaultWebApp_myServer" directory.
              I was not able to run servlet program as per given in the "quick
              start". I am getting
              "Error 500---Internal server error"
              The server encountered an unexpected condition which prevented
              it from fulfilling the request"
              I have modified the web.xml under WEB-INF of DefaultWebApp_myServer
              as per given in the quick start.
              Here is the quick start link For you reference(as what I talking
              about)
              http://edocs.beasys.com/wls/docs60/quickstart/quick_start.html
              In the web.xml, I have given <servlet-class> as just HelloWorldServlet,
              since I directly copied the file from some other examples directory.
              But still I am getting 500 error.
              Here is the url that I am invoking...Http://ramup:7001/quickStartServlet
              Coming to your oracle connection test, I did exactly what you said.
              kumar, I have executed the command
              "D:\bea\wlserver6.0\config\mydomain>java -classpath %classpath%;D:\bea
              utils.dbping ORACLE
              >scott tiger TestDB"
              Where TestDB is the database that I have created while installing,
              but I am not aware of the instance you said.
              Here is what I got after executing the command.
              --------*******-------Pasting the ms-dos command results----**-
              // This mode is superior, especially in serverside classes because
              // it avoids DriverManager calls are class synchronized, and will
              // bottleneck any other JDBC in the server, even already-running
              // connections, because all JDBC drivers use DriverManager.println()
              // to log info and exceptions, and that call is also class synchronized.
              // For repeated connecting, a single driver instance can be re-used.
              **** or ****
              Class.forName("weblogic.jdbc.oci.Driver").newInstance();
              java.sql.Connection conn =
              DriverManager.getConnection("jdbc:weblogic:oracle:TestDB", "scott",
              "tiger")
              **** or ****
              java.util.Properties props = new java.util.Properties();
              props.put("user", "scott");
              props.put("password", "tiger");
              props.put("server", "TestDB");
              Class.forName("weblogic.jdbc.oci.Driver").newInstance();
              java.sql.Connection conn =
              DriverManager.getConnection("jdbc:weblogic:oracle", props);
              D:\bea\wlserver6.0\config\mydomain>
              --------*******-------Pasting the ms-dos command results----**-
              I think I have connection to database, thanks for your suggestion.
              Kumar, I have not seen weblogic.properties file any where in D:\bea
              directory.
              Kumar, if you have some time can you jot down the classpath settings
              and path settings for executing SERVLETS/EJB programs.
              Thanks for helping me out..,
              Ramu
              Kumar Allamraju <[email protected]> wrote:
              >Assuming you registered the helloworld servlet in web.xml,
              >could you show me the url
              >that you typed in the browser window? :)
              >
              >
              >Regarding the dbping problem, make sure license.bea is
              >in the classpath
              >
              >ie.. java -classpath %classpath%;D:\bea utils.dbping ORACLE
              >scott tiger [instance-name]
              >
              >PS: I'm assuming WLS is installed in D:\bea directory.
              >
              >--
              >Kumar
              >
              >
              >Ramu wrote:
              >
              >> Hi,
              >>
              >> When I try to invoke a servlet from weblogic 6.0, I
              >am getting
              >> 404 error. I have copied the HelloWorldServlet class
              >into defaultWebAppl_Server/WEB_INF/CLASSES
              >> directory and when I invoke the HelloWorldservlet, its
              >giving file
              >> not found(404) error. I am doing exactly what has been
              >given in
              >> the "quick start to servlets" in weblogic 6.0. I am
              >using Windows
              >> NT.
              >>
              >> I have also another problem when I use java utils.dbping
              >to test
              >> the connection to my oracle8.1.8, its giving licence
              >file not found.
              >>
              >> Could some one help me out from this.
              >>
              >> Thanks in advance,
              >> Ramu
              >
              

  • OC4J's servlet and Weblogic's EJB problem

    Hi all,
    Is it possible to look up the weblogic.jndi.WLInitialContextFactory from servlet deployed into OC4J ?
    I copied weblogic.jar and MyEJB.jar to \j2ee\home\lib and re-started OC4J.
    When the servlet runs for the first time, I can see the following displayed:
    java.lang.InternalError: error initializing kernel
         at weblogic.kernel.Kernel.ensureInitialized(Kernel.java:86)
         at weblogic.jndi.WLInitialContextFactoryDelegate.<init>(WLInitialContextFactoryDelegate.java:166)
         at java.lang.Class.newInstance0(Native Method)
         at java.lang.Class.newInstance(Unknown Source)
         at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:147)
         at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
         at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
         at javax.naming.InitialContext.init(Unknown Source)
         at javax.naming.InitialContext.<init>(Unknown Source)
         at myServlet.doGet(myServlet.java:41)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:195)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:309)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:684)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:243)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    Next time servlet's response is as follows:
    500 Internal Server Error
    weblogic.common.internal.VersioningError: No WebLogic packages defined in CLASSPATH
         at weblogic.common.internal.VersionInfo.<init>(VersionInfo.java:39)
         at weblogic.common.internal.VersionInfo.initialize(VersionInfo.java:77)
         at weblogic.common.internal.VersionInfo.theOne(VersionInfo.java:63)
         at weblogic.rjvm.t3.T3JVMConnection.connect(T3JVMConnection.java:106)
         at weblogic.rjvm.t3.T3JVMConnection.createConnection(T3JVMConnection.java:164)
         at weblogic.rjvm.Protocol.createConnection(Protocol.java:206)
         at weblogic.rjvm.ConnectionManager.findOrCreateConnection(ConnectionManager.java:999)
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:285)
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:242)
         at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java:220)
         at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:188)
         at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:178)
         at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:149)
         at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:207)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:311)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:211)
         at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:149)
         at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
         at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
         at javax.naming.InitialContext.init(Unknown Source)
         at javax.naming.InitialContext.<init>(Unknown Source)
         at myServlet.doGet(myServlet.java:41)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:195)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:309)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:684)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:243)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    The 41th line of myServlet.java is as follows:
    Context jndiContext = new InitialContext(env);
    OC4J and Weblogic ara installed on the different computers.
    The same myServlet.class deployed into other Weblogic (installed on the same computer as OC4J) works correctly.
    What I did miss ?
    SY,
    Oleksandr Bozhyk

    yes....if you are using only hibernate3.jar and no other jars from hibernate then you need this jars for hibernate to work.
    antlr-2.7.6rc1.jar
    asm.jar
    asm-attrs.jar
    cglib-2.1.3.jar
    commons-collections-2.1.1.jar
    commons-logging-1.0.4.jar
    dom4j-1.6.1.jar
    ehcache-1.1.jar
    hibernate3.jar
    jaas.jar
    jaxen-1.1-beta-7.jar
    jdbc2_0-stdext.jar
    jta.jar
    log4j-1.2.11.jar
    ojdbc14.jar
    xerces-2.6.2.jar
    xml-apis.jar
    if you are missing any of those, hibernate won't work.
    You can check in MyEclipse which jars hibernate needs to run successfully. Just go under Window/Preferences, and there go under MyEclipse/Project Capabilities/Hibernate and select tab Hibernate 3.1 and under Library modules select Hibernate 3.1 Core Libraries, and you will see which jars hibernate need. ;)

  • How do I set the initial servlet pool size in WL 5.1

              In WL 4.5, I can set the initial servlet pool size using the
              weblogic.httpd.servlet.SingleThreadedModelPoolSize. I tried to set this property in WL 5.1, and get an "Found undeclared property..." message when booting WL. Is this feature still supported in WL 5.1? If so, how do I set it?
              Thankx
              

    It appears that pool size of 5 is hardcoded somewhere - no matter where you specify
              weblogic.httpd.servlet.SingleThreadedModelPoolSize, the following test servlet:
              import javax.servlet.*;
              import javax.servlet.http.*;
              public class SingleT extends HttpServlet implements SingleThreadModel {
              static int instanceCount = 0;
              public SingleT() {
              super();
              System.out.println("Instance " + (++instanceCount) + " created");
              always produces:
              Instance 1 created
              Wed Nov 01 11:15:36 PST 2000:<I> <ServletContext-General> SingleT: init
              Instance 2 created
              Wed Nov 01 11:15:36 PST 2000:<I> <ServletContext-General> SingleT: init
              Instance 3 created
              Wed Nov 01 11:15:36 PST 2000:<I> <ServletContext-General> SingleT: init
              Instance 4 created
              Wed Nov 01 11:15:36 PST 2000:<I> <ServletContext-General> SingleT: init
              Instance 5 created
              Wed Nov 01 11:15:36 PST 2000:<I> <ServletContext-General> SingleT: init
              Joe Trung <[email protected]> wrote:
              > Hi Huy,
              > There are lot of 'undeclared' stuffes if you move from 451 to 51.
              > However, if you run WLS with
              > '-Dweblogic.httpd.servlet.SingleThreadedModelPoolSize=10'
              > You will get what you want. I think BEA has moved this option to the <System props>, no more in its <config>
              > Joe
              > "Huy Pham" <[email protected]> wrote:
              >>
              >>In WL 4.5, I can set the initial servlet pool size using the
              >>weblogic.httpd.servlet.SingleThreadedModelPoolSize. I tried to set this property in WL 5.1, and get an "Found undeclared property..." message when booting WL. Is this feature still supported in WL 5.1? If so, how do I set it?
              >>
              >>Thankx
              Dimitri
              

  • Getting Servlet Exception while accessing servlets after deployment

    Hi,
    Iam getting a Servlet Exception while accessing servlets after deploying into weblogic 8.1
    Error 500--Internal Server Error
    javax.servlet.ServletException: [HTTP:101249][ServletContext(id=9599010,name=MyWeb,context-path=)]: Servlet class LoginServlet for servlet LoginServlet could not be loaded because the requested class was not found in the classpath F:\bea\weblogic81\samples\domains\examples\MyWeb\WEB-INF\classes;F:\bea\weblogic81\samples\domains\examples\.\examplesServer\.wlnotdelete\extract\examplesServer_MyWeb_MyWeb.
    java.lang.UnsupportedClassVersionError: LoginServlet (Unsupported major.minor version 49.0).
         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:834)
         at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:535)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:373)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:315)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6718)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    My Folder Structureis like this,
    F:\bea\weblogic81\samples\domains\examples\MyWeb
    MyWeb is the projectName
    F:\bea\weblogic81\samples\domains\examples\MyWeb\WEB-INF
    Inside WEB-INF, i have web.xml and weblogic.xml, and classes directory with servlet classes.
    Any help will be appreciated.
    Thanx in advance.
    Regards
    Ram

    Hi,
    Thanks for the reply.
    Yes you are correct, i compiled using jdk1.5.
    but my servlet code will not compile in jdk1.4 version since i used advanced vaector classes in that.
    Is there any settings like script file that need to be changed so that i can point to my jdk1.5 compiler rather than the default one pointed by weblogic.
    Thanks in advance
    Ram

  • Error 500 while deploying Servlets using Weblogic 5.1

              hi,
              i have followed all the intructions on how to run servlets in weblogic 5.1 server.
              till yesterday i have done nearly 10 servlets which worked perfectly. but today
              when i coded a new servlet and started running using internet explorer it gave
              "Error 500--Internal Server Error
              From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
              10.5.1 500 Internal Server Error
              The server encountered an unexpected condition which prevented it from fulfilling
              the request. "
              can u please give me the solution .
              regards,
              anitha
              

    how this newly coded servlet is different from the other servlets?
              Http 500 errror means some "internal error" happened while processing your request.
              Do you see any error messages or stack trace on the server console?
              Kumar
              Anitha wrote:
              > hi,
              >
              > i have followed all the intructions on how to run servlets in weblogic 5.1 server.
              > till yesterday i have done nearly 10 servlets which worked perfectly. but today
              > when i coded a new servlet and started running using internet explorer it gave
              >
              > "Error 500--Internal Server Error
              >
              > From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
              >
              > 10.5.1 500 Internal Server Error
              >
              > The server encountered an unexpected condition which prevented it from fulfilling
              > the request. "
              >
              > can u please give me the solution .
              >
              > regards,
              > anitha
              >
              >
              >
              

  • Monitor freezes after grub starts

    Hi,
    I'm with the following problem: when I start my computer, in a few seconds after I choose Arch Linux at the grub menu my monitor shows a lot of garbage that does not allow me to see what is going on with my computer.  So I don't even get the command line after I start my computer
    It's not a problem with my monitor because I can use the arch installation CD to get to the command line.
    I tried to use the second option from the grub menu, arch linux fallback, but I had the exactly same problem.
    I have no clue of how I can even start trying to solve this problem. The only thing that I could think of was to use the installation CD, mount /var/ and get the messages.log file. The file can be downloaded from:
    http://www.megaupload.com/?d=90BUSPQP
    Do you have any idea of how I can solve this problem?
    Thanks!

    Sorry... it didn't come to me that downloading from megaupload would be such a hassle. Thanks George.Harmony for letting me know.
    But the good thing is that the messages from my last boot does not go over the sending limits of this forum:
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys cpuset
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys cpu
    Jun 24 13:35:25 myhost kernel: Linux version 2.6.34-ARCH (thomas@evey) (gcc version 4.5.0 20100610 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Jun 19 00:07:49 CEST 2010
    Jun 24 13:35:25 myhost kernel: Command line: root=/dev/disk/by-uuid/85509a7d-94c3-49fe-a970-84ba9230c35e ro vga=773
    Jun 24 13:35:25 myhost kernel: BIOS-provided physical RAM map:
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 0000000000000000 - 000000000009c400 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 000000000009c400 - 00000000000a0000 (reserved)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 0000000000100000 - 00000000bf8a1000 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bf8a1000 - 00000000bf8a7000 (reserved)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bf8a7000 - 00000000bf9bb000 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bf9bb000 - 00000000bfa0f000 (reserved)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfa0f000 - 00000000bfb08000 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfb08000 - 00000000bfd0f000 (reserved)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfd0f000 - 00000000bfd18000 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfd18000 - 00000000bfd1f000 (reserved)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfd1f000 - 00000000bfd63000 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfd63000 - 00000000bfd9f000 (ACPI NVS)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfd9f000 - 00000000bfde4000 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfde4000 - 00000000bfdff000 (ACPI data)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 00000000bfdff000 - 00000000bfe00000 (usable)
    Jun 24 13:35:25 myhost kernel: BIOS-e820: 0000000100000000 - 0000000140000000 (usable)
    Jun 24 13:35:25 myhost kernel: NX (Execute Disable) protection: active
    Jun 24 13:35:25 myhost kernel: DMI present.
    Jun 24 13:35:25 myhost kernel: No AGP bridge found
    Jun 24 13:35:25 myhost kernel: last_pfn = 0x140000 max_arch_pfn = 0x400000000
    Jun 24 13:35:25 myhost kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jun 24 13:35:25 myhost kernel: last_pfn = 0xbfe00 max_arch_pfn = 0x400000000
    Jun 24 13:35:25 myhost kernel: Scanning 1 areas for low memory corruption
    Jun 24 13:35:25 myhost kernel: modified physical RAM map:
    Jun 24 13:35:25 myhost kernel: modified: 0000000000000000 - 0000000000010000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 0000000000010000 - 000000000009c400 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 000000000009c400 - 00000000000a0000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 00000000000d2000 - 00000000000d4000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 00000000000e0000 - 0000000000100000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 0000000000100000 - 00000000bf8a1000 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bf8a1000 - 00000000bf8a7000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bf8a7000 - 00000000bf9bb000 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bf9bb000 - 00000000bfa0f000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfa0f000 - 00000000bfb08000 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfb08000 - 00000000bfd0f000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfd0f000 - 00000000bfd18000 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfd18000 - 00000000bfd1f000 (reserved)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfd1f000 - 00000000bfd63000 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfd63000 - 00000000bfd9f000 (ACPI NVS)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfd9f000 - 00000000bfde4000 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfde4000 - 00000000bfdff000 (ACPI data)
    Jun 24 13:35:25 myhost kernel: modified: 00000000bfdff000 - 00000000bfe00000 (usable)
    Jun 24 13:35:25 myhost kernel: modified: 0000000100000000 - 0000000140000000 (usable)
    Jun 24 13:35:25 myhost kernel: found SMP MP-table at [ffff8800000f79c0] f79c0
    Jun 24 13:35:25 myhost kernel: init_memory_mapping: 0000000000000000-00000000bfe00000
    Jun 24 13:35:25 myhost kernel: init_memory_mapping: 0000000100000000-0000000140000000
    Jun 24 13:35:25 myhost kernel: RAMDISK: 37e59000 - 37ff0000
    Jun 24 13:35:25 myhost kernel: ACPI: RSDP 00000000000f7910 00024 (v02 PTLTD )
    Jun 24 13:35:25 myhost kernel: ACPI: XSDT 00000000bfdf7cd6 00074 (v01 DELL QA09 06040000 LTP 00000000)
    Jun 24 13:35:25 myhost kernel: ACPI: FACP 00000000bfde8000 000F4 (v03 INTEL CRESTLNE 06040000 ALAN 00000001)
    Jun 24 13:35:25 myhost kernel: ACPI: DSDT 00000000bfde9000 06E3C (v02 Intel CANTIGA 06040000 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: ACPI: FACS 00000000bfd9efc0 00040
    Jun 24 13:35:25 myhost kernel: ACPI: HPET 00000000bfdfed16 00038 (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    Jun 24 13:35:25 myhost kernel: ACPI: MCFG 00000000bfdfed4e 0003C (v01 INTEL CRESTLNE 06040000 LOHR 0000005A)
    Jun 24 13:35:25 myhost kernel: ACPI: APIC 00000000bfdfed8a 00068 (v01 PTLTD ? APIC 06040000 LTP 00000000)
    Jun 24 13:35:25 myhost kernel: ACPI: BOOT 00000000bfdfedf2 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
    Jun 24 13:35:25 myhost kernel: ACPI: SLIC 00000000bfdfee1a 00176 (v01 DELL QA09 06040000 LTP 00000000)
    Jun 24 13:35:25 myhost kernel: ACPI: OSFR 00000000bfdfef90 00070 (v01 DELL DELL 06040000 ASL 00000061)
    Jun 24 13:35:25 myhost kernel: ACPI: SSDT 00000000bfde7000 00655 (v01 PmRef CpuPm 00003000 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: ACPI: SSDT 00000000bfde6000 00259 (v01 PmRef Cpu0Tst 00003000 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: ACPI: SSDT 00000000bfde5000 0020F (v01 PmRef ApTst 00003000 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: Zone PFN ranges:
    Jun 24 13:35:25 myhost kernel: DMA 0x00000010 -> 0x00001000
    Jun 24 13:35:25 myhost kernel: DMA32 0x00001000 -> 0x00100000
    Jun 24 13:35:25 myhost kernel: Normal 0x00100000 -> 0x00140000
    Jun 24 13:35:25 myhost kernel: Movable zone start PFN for each node
    Jun 24 13:35:25 myhost kernel: early_node_map[9] active PFN ranges
    Jun 24 13:35:25 myhost kernel: 0: 0x00000010 -> 0x0000009c
    Jun 24 13:35:25 myhost kernel: 0: 0x00000100 -> 0x000bf8a1
    Jun 24 13:35:25 myhost kernel: 0: 0x000bf8a7 -> 0x000bf9bb
    Jun 24 13:35:25 myhost kernel: 0: 0x000bfa0f -> 0x000bfb08
    Jun 24 13:35:25 myhost kernel: 0: 0x000bfd0f -> 0x000bfd18
    Jun 24 13:35:25 myhost kernel: 0: 0x000bfd1f -> 0x000bfd63
    Jun 24 13:35:25 myhost kernel: 0: 0x000bfd9f -> 0x000bfde4
    Jun 24 13:35:25 myhost kernel: 0: 0x000bfdff -> 0x000bfe00
    Jun 24 13:35:25 myhost kernel: 0: 0x00100000 -> 0x00140000
    Jun 24 13:35:25 myhost kernel: ACPI: PM-Timer IO Port: 0x408
    Jun 24 13:35:25 myhost kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Jun 24 13:35:25 myhost kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Jun 24 13:35:25 myhost kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    Jun 24 13:35:25 myhost kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Jun 24 13:35:25 myhost kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Jun 24 13:35:25 myhost kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    Jun 24 13:35:25 myhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
    Jun 24 13:35:25 myhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Jun 24 13:35:25 myhost kernel: Using ACPI (MADT) for SMP configuration information
    Jun 24 13:35:25 myhost kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Jun 24 13:35:25 myhost kernel: SMP: Allowing 2 CPUs, 0 hotplug CPUs
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 000000000009c000 - 000000000009d000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 000000000009d000 - 00000000000a0000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000000d4000 - 00000000000e0000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000bf8a1000 - 00000000bf8a7000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000bf9bb000 - 00000000bfa0f000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000bfb08000 - 00000000bfd0f000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000bfd18000 - 00000000bfd1f000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000bfd63000 - 00000000bfd9f000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000bfde4000 - 00000000bfdff000
    Jun 24 13:35:25 myhost kernel: PM: Registered nosave memory: 00000000bfe00000 - 0000000100000000
    Jun 24 13:35:25 myhost kernel: Allocating PCI resources starting at bfe00000 (gap: bfe00000:40200000)
    Jun 24 13:35:25 myhost kernel: Booting paravirtualized kernel on bare hardware
    Jun 24 13:35:25 myhost kernel: setup_percpu: NR_CPUS:16 nr_cpumask_bits:16 nr_cpu_ids:2 nr_node_ids:1
    Jun 24 13:35:25 myhost kernel: PERCPU: Embedded 29 pages/cpu @ffff880001800000 s88104 r8192 d22488 u1048576
    Jun 24 13:35:25 myhost kernel: pcpu-alloc: s88104 r8192 d22488 u1048576 alloc=1*2097152
    Jun 24 13:35:25 myhost kernel: pcpu-alloc: [0] 0 1
    Jun 24 13:35:25 myhost kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1029325
    Jun 24 13:35:25 myhost kernel: Kernel command line: root=/dev/disk/by-uuid/85509a7d-94c3-49fe-a970-84ba9230c35e ro vga=773
    Jun 24 13:35:25 myhost kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jun 24 13:35:25 myhost kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Jun 24 13:35:25 myhost kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Jun 24 13:35:25 myhost kernel: xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
    Jun 24 13:35:25 myhost kernel: Checking aperture...
    Jun 24 13:35:25 myhost kernel: No AGP bridge found
    Jun 24 13:35:25 myhost kernel: Subtract (70 early reservations)
    Jun 24 13:35:25 myhost kernel: #1 [0001000000 - 00016e1178] TEXT DATA BSS
    Jun 24 13:35:25 myhost kernel: #2 [0037e59000 - 0037ff0000] RAMDISK
    Jun 24 13:35:25 myhost kernel: #3 [00016e2000 - 00016e21d4] BRK
    Jun 24 13:35:25 myhost kernel: #4 [00000f79d0 - 0000100000] BIOS reserved
    Jun 24 13:35:25 myhost kernel: #5 [00000f79c0 - 00000f79d0] MP-table mpf
    Jun 24 13:35:25 myhost kernel: #6 [000009c400 - 000009c971] BIOS reserved
    Jun 24 13:35:25 myhost kernel: #7 [000009cb2d - 00000f79c0] BIOS reserved
    Jun 24 13:35:25 myhost kernel: #8 [000009c971 - 000009cb2d] MP-table mpc
    Jun 24 13:35:25 myhost kernel: #9 [0000010000 - 0000012000] TRAMPOLINE
    Jun 24 13:35:25 myhost kernel: #10 [0000012000 - 0000016000] ACPI WAKEUP
    Jun 24 13:35:25 myhost kernel: #11 [0000016000 - 0000018000] PGTABLE
    Jun 24 13:35:25 myhost kernel: #12 [0000018000 - 0000019000] PGTABLE
    Jun 24 13:35:25 myhost kernel: #13 [00016e2200 - 00016e3200] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #14 [0000019000 - 0000019200] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #15 [0001ee4000 - 0001ee5000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #16 [0001ee5000 - 0001ee6000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #17 [0002000000 - 0005800000] MEMMAP 0
    Jun 24 13:35:25 myhost kernel: #18 [00016e3200 - 00016fb200] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #19 [00016fb200 - 0001713200] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #20 [0001713200 - 000172b200] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #21 [000172c000 - 000172d000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #22 [00016e1180 - 00016e11c1] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #23 [00016e1200 - 00016e1243] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #24 [00016e1280 - 00016e16a8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #25 [00016e16c0 - 00016e1728] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #26 [00016e1740 - 00016e17a8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #27 [00016e17c0 - 00016e1828] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #28 [00016e1840 - 00016e18a8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #29 [00016e18c0 - 00016e1928] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #30 [00016e1940 - 00016e19a8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #31 [00016e19c0 - 00016e1a28] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #32 [00016e1a40 - 00016e1aa8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #33 [00016e1ac0 - 00016e1b28] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #34 [00016e1b40 - 00016e1ba8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #35 [00016e1bc0 - 00016e1c28] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #36 [00016e1c40 - 00016e1ca8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #37 [00016e1cc0 - 00016e1d28] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #38 [00016e1d40 - 00016e1da8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #39 [00016e1dc0 - 00016e1e28] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #40 [00016e1e40 - 00016e1ea8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #41 [00016e1ec0 - 00016e1f28] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #42 [00016e1f40 - 00016e1fa8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #43 [00016e1fc0 - 00016e1fe0] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #44 [000172b200 - 000172b220] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #45 [000172b240 - 000172b260] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #46 [000172b280 - 000172b2a0] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #47 [000172b2c0 - 000172b2e0] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #48 [000172b300 - 000172b320] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #49 [000172b340 - 000172b360] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #50 [000172b380 - 000172b3a0] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #51 [000172b3c0 - 000172b407] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #52 [000172b440 - 000172b487] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #53 [0001800000 - 000181d000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #54 [0001900000 - 000191d000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #55 [000172b4c0 - 000172b4c8] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #56 [000172b500 - 000172b508] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #57 [000172b540 - 000172b548] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #58 [000172b580 - 000172b590] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #59 [000172b5c0 - 000172b700] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #60 [000172b700 - 000172b760] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #61 [000172b780 - 000172b7e0] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #62 [000172d000 - 0001735000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #63 [000191d000 - 0001d1d000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #64 [0005800000 - 0005a00000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #65 [000172b800 - 000172ba40] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #66 [0005a00000 - 0009a00000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #67 [0001735000 - 0001755000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #68 [0001755000 - 0001795000] BOOTMEM
    Jun 24 13:35:25 myhost kernel: #69 [000001aa00 - 0000022a00] BOOTMEM
    Jun 24 13:35:25 myhost kernel: Memory: 4050248k/5242880k available (3483k kernel code, 1053900k absent, 138732k reserved, 1796k data, 480k init)
    Jun 24 13:35:25 myhost kernel: SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Jun 24 13:35:25 myhost kernel: Hierarchical RCU implementation.
    Jun 24 13:35:25 myhost kernel: NR_IRQS:768
    Jun 24 13:35:25 myhost kernel: Extended CMOS year: 2000
    Jun 24 13:35:25 myhost kernel: Console: colour dummy device 80x25
    Jun 24 13:35:25 myhost kernel: console [tty0] enabled
    Jun 24 13:35:25 myhost kernel: allocated 41943040 bytes of page_cgroup
    Jun 24 13:35:25 myhost kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jun 24 13:35:25 myhost kernel: Fast TSC calibration using PIT
    Jun 24 13:35:25 myhost kernel: Detected 2526.938 MHz processor.
    Jun 24 13:35:25 myhost kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5055.45 BogoMIPS (lpj=8423126)
    Jun 24 13:35:25 myhost kernel: Security Framework initialized
    Jun 24 13:35:25 myhost kernel: Mount-cache hash table entries: 256
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys ns
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys cpuacct
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys memory
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys devices
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys freezer
    Jun 24 13:35:25 myhost kernel: Initializing cgroup subsys net_cls
    Jun 24 13:35:25 myhost kernel: CPU: Physical Processor ID: 0
    Jun 24 13:35:25 myhost kernel: CPU: Processor Core ID: 0
    Jun 24 13:35:25 myhost kernel: mce: CPU supports 6 MCE banks
    Jun 24 13:35:25 myhost kernel: CPU0: Thermal monitoring enabled (TM2)
    Jun 24 13:35:25 myhost kernel: using mwait in idle threads.
    Jun 24 13:35:25 myhost kernel: Performance Events: Core2 events, Intel PMU driver.
    Jun 24 13:35:25 myhost kernel: ... version: 2
    Jun 24 13:35:25 myhost kernel: ... bit width: 40
    Jun 24 13:35:25 myhost kernel: ... generic registers: 2
    Jun 24 13:35:25 myhost kernel: ... value mask: 000000ffffffffff
    Jun 24 13:35:25 myhost kernel: ... max period: 000000007fffffff
    Jun 24 13:35:25 myhost kernel: ... fixed-purpose events: 3
    Jun 24 13:35:25 myhost kernel: ... event mask: 0000000700000003
    Jun 24 13:35:25 myhost kernel: ACPI: Core revision 20100121
    Jun 24 13:35:25 myhost kernel: Setting APIC routing to flat
    Jun 24 13:35:25 myhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jun 24 13:35:25 myhost kernel: CPU0: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz stepping 0a
    Jun 24 13:35:25 myhost kernel: Booting Node 0, Processors #1 Ok.
    Jun 24 13:35:25 myhost kernel: Brought up 2 CPUs
    Jun 24 13:35:25 myhost kernel: Total of 2 processors activated (10111.01 BogoMIPS).
    Jun 24 13:35:25 myhost kernel: devtmpfs: initialized
    Jun 24 13:35:25 myhost kernel: NET: Registered protocol family 16
    Jun 24 13:35:25 myhost kernel: ACPI: bus type pci registered
    Jun 24 13:35:25 myhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Jun 24 13:35:25 myhost kernel: PCI: not using MMCONFIG
    Jun 24 13:35:25 myhost kernel: PCI: Using configuration type 1 for base access
    Jun 24 13:35:25 myhost kernel: bio: create slab <bio-0> at 0
    Jun 24 13:35:25 myhost kernel: ACPI: BIOS _OSI(Linux) query ignored
    Jun 24 13:35:25 myhost kernel: ACPI: SSDT 00000000bfd1ac20 00265 (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: ACPI: SSDT 00000000bfd18620 00575 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: ACPI: SSDT 00000000bfd19ca0 001CF (v01 PmRef ApIst 00003000 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: ACPI: SSDT 00000000bfd19f20 0008D (v01 PmRef ApCst 00003000 INTL 20050624)
    Jun 24 13:35:25 myhost kernel: ACPI: Interpreter enabled
    Jun 24 13:35:25 myhost kernel: ACPI: (supports S0 S3 S4 S5)
    Jun 24 13:35:25 myhost kernel: ACPI: Using IOAPIC for interrupt routing
    Jun 24 13:35:25 myhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Jun 24 13:35:25 myhost kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    Jun 24 13:35:25 myhost kernel: ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
    Jun 24 13:35:25 myhost kernel: ACPI: No dock devices found.
    Jun 24 13:35:25 myhost kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
    Jun 24 13:35:25 myhost kernel: pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
    Jun 24 13:35:25 myhost kernel: pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
    Jun 24 13:35:25 myhost kernel: pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    Jun 24 13:35:25 myhost kernel: pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    Jun 24 13:35:25 myhost kernel: pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    Jun 24 13:35:25 myhost kernel: pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff]
    Jun 24 13:35:25 myhost kernel: pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff]
    Jun 24 13:35:25 myhost kernel: DMAR: Forcing write-buffer flush capability
    Jun 24 13:35:25 myhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01-01]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 02-03]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.1: PCI bridge to [bus 04-05]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.3: PCI bridge to [bus 06-07]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: PCI bridge to [bus 08-08]
    Jun 24 13:35:25 myhost kernel: pci 0000:09:01.0: proprietary Ricoh MMC controller disabled (via firewire function)
    Jun 24 13:35:25 myhost kernel: pci 0000:09:01.0: MMC cards are now supported by standard SDHCI controller
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1e.0: PCI bridge to [bus 09-09] (subtractive decode)
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15)
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 *10 12 14 15)
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15)
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    Jun 24 13:35:25 myhost kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 *7 11 12 14 15)
    Jun 24 13:35:25 myhost kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Jun 24 13:35:25 myhost kernel: vgaarb: loaded
    Jun 24 13:35:25 myhost kernel: PCI: Using ACPI for IRQ routing
    Jun 24 13:35:25 myhost kernel: NetLabel: Initializing
    Jun 24 13:35:25 myhost kernel: NetLabel: domain hash size = 128
    Jun 24 13:35:25 myhost kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jun 24 13:35:25 myhost kernel: NetLabel: unlabeled traffic allowed by default
    Jun 24 13:35:25 myhost kernel: HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    Jun 24 13:35:25 myhost kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    Jun 24 13:35:25 myhost kernel: hpet0: 4 comparators, 64-bit 14.318180 MHz counter
    Jun 24 13:35:25 myhost kernel: Switching to clocksource tsc
    Jun 24 13:35:25 myhost kernel: pnp: PnP ACPI init
    Jun 24 13:35:25 myhost kernel: ACPI: bus type pnp registered
    Jun 24 13:35:25 myhost kernel: pnp: PnP ACPI: found 10 devices
    Jun 24 13:35:25 myhost kernel: ACPI: ACPI bus type pnp unregistered
    Jun 24 13:35:25 myhost kernel: system 00:02: [mem 0xfed00000-0xfed003ff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0x0400-0x047f] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0x0680-0x069f] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0x0480-0x048f] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0xffff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0xffff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0x1000-0x107f] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0x1180-0x11ff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0x164e-0x164f] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0xfe00] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:04: [io 0x0900-0x097f] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfed10000-0xfed13fff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xe0000000-0xefffffff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfeb00000-0xfeb03fff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfed40000-0xfed44fff] has been reserved
    Jun 24 13:35:25 myhost kernel: system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: BAR 15: assigned [mem 0xc0000000-0xc01fffff 64bit pref]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: BAR 13: assigned [io 0x6000-0x6fff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1f.3: BAR 0: assigned [mem 0xc0200000-0xc02000ff 64bit]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1f.3: BAR 0: set to [mem 0xc0200000-0xc02000ff 64bit] (PCI address [0xc0200000-0xc02000ff]
    Jun 24 13:35:25 myhost kernel: pci 0000:01:00.0: BAR 6: assigned [mem 0xcfe00000-0xcfe1ffff pref]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01-01]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:01.0: bridge window [mem 0xcfe00000-0xcfefffff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.0: PCI bridge to [bus 02-03]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.0: bridge window [mem 0xf6000000-0xf7ffffff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.0: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.1: PCI bridge to [bus 04-05]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.1: bridge window [io 0x4000-0x4fff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.1: bridge window [mem 0xf8000000-0xf9ffffff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.1: bridge window [mem 0xf2000000-0xf3ffffff 64bit pref]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.3: PCI bridge to [bus 06-07]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.3: bridge window [io 0x5000-0x5fff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.3: bridge window [mem 0xfa000000-0xfbffffff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.3: bridge window [mem 0xf4000000-0xf5ffffff 64bit pref]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: PCI bridge to [bus 08-08]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: bridge window [io 0x6000-0x6fff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: bridge window [mem 0xfc000000-0xfc0fffff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: bridge window [mem 0xc0000000-0xc01fffff 64bit pref]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1e.0: PCI bridge to [bus 09-09]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1e.0: bridge window [io disabled]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1e.0: bridge window [mem 0xfc100000-0xfc1fffff]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1e.0: bridge window [mem pref disabled]
    Jun 24 13:35:25 myhost kernel: pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    Jun 24 13:35:25 myhost kernel: pci 0000:00:1c.5: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    Jun 24 13:35:25 myhost kernel: NET: Registered protocol family 2
    Jun 24 13:35:25 myhost kernel: IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    Jun 24 13:35:25 myhost kernel: TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    Jun 24 13:35:25 myhost kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Jun 24 13:35:25 myhost kernel: TCP: Hash tables configured (established 262144 bind 65536)
    Jun 24 13:35:25 myhost kernel: TCP reno registered
    Jun 24 13:35:25 myhost kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    Jun 24 13:35:25 myhost kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    Jun 24 13:35:25 myhost kernel: NET: Registered protocol family 1
    Jun 24 13:35:25 myhost kernel: Unpacking initramfs...
    Jun 24 13:35:25 myhost kernel: Freeing initrd memory: 1628k freed
    Jun 24 13:35:25 myhost kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Jun 24 13:35:25 myhost kernel: Placing 64MB software IO TLB between ffff880005a00000 - ffff880009a00000
    Jun 24 13:35:25 myhost kernel: software IO TLB at phys 0x5a00000 - 0x9a00000
    Jun 24 13:35:25 myhost kernel: Simple Boot Flag at 0x36 set to 0x1
    Jun 24 13:35:25 myhost kernel: Scanning for low memory corruption every 60 seconds
    Jun 24 13:35:25 myhost kernel: audit: initializing netlink socket (disabled)
    Jun 24 13:35:25 myhost kernel: type=2000 audit(1277408113.306:1): initialized
    Jun 24 13:35:25 myhost kernel: VFS: Disk quotas dquot_6.5.2
    Jun 24 13:35:25 myhost kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Jun 24 13:35:25 myhost kernel: msgmni has been set to 7913
    Jun 24 13:35:25 myhost kernel: alg: No test for stdrng (krng)
    Jun 24 13:35:25 myhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    Jun 24 13:35:25 myhost kernel: io scheduler noop registered
    Jun 24 13:35:25 myhost kernel: io scheduler deadline registered
    Jun 24 13:35:25 myhost kernel: io scheduler cfq registered (default)
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:01.0: Requesting control of PCIe PME from ACPI BIOS
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:01.0: Failed to receive control of PCIe PME service: no _OSC support
    Jun 24 13:35:25 myhost kernel: pcie_pme: probe of 0000:00:01.0:pcie01 failed with error -13
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.0: Requesting control of PCIe PME from ACPI BIOS
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.0: Failed to receive control of PCIe PME service: no _OSC support
    Jun 24 13:35:25 myhost kernel: pcie_pme: probe of 0000:00:1c.0:pcie01 failed with error -13
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.1: Requesting control of PCIe PME from ACPI BIOS
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.1: Failed to receive control of PCIe PME service: no _OSC support
    Jun 24 13:35:25 myhost kernel: pcie_pme: probe of 0000:00:1c.1:pcie01 failed with error -13
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.3: Requesting control of PCIe PME from ACPI BIOS
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.3: Failed to receive control of PCIe PME service: no _OSC support
    Jun 24 13:35:25 myhost kernel: pcie_pme: probe of 0000:00:1c.3:pcie01 failed with error -13
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.5: Requesting control of PCIe PME from ACPI BIOS
    Jun 24 13:35:25 myhost kernel: pcieport 0000:00:1c.5: Failed to receive control of PCIe PME service: no _OSC support
    Jun 24 13:35:25 myhost kernel: pcie_pme: probe of 0000:00:1c.5:pcie01 failed with error -13
    Jun 24 13:35:25 myhost kernel: vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90010100000, using 1536k, total 16384k
    Jun 24 13:35:25 myhost kernel: vesafb: mode is 1024x768x8, linelength=1024, pages=18
    Jun 24 13:35:25 myhost kernel: vesafb: scrolling: redraw
    Jun 24 13:35:25 myhost kernel: vesafb: Pseudocolor: size=8:8:8:8, shift=0:0:0:0
    Jun 24 13:35:25 myhost kernel: Console: switching to colour frame buffer device 128x48
    Jun 24 13:35:25 myhost kernel: fb0: VESA VGA frame buffer device
    Jun 24 13:35:25 myhost kernel: Linux agpgart interface v0.103
    Jun 24 13:35:25 myhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jun 24 13:35:25 myhost kernel: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Jun 24 13:35:25 myhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jun 24 13:35:25 myhost kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Jun 24 13:35:25 myhost kernel: mice: PS/2 mouse device common for all mice
    Jun 24 13:35:25 myhost kernel: cpuidle: using governor ladder
    Jun 24 13:35:25 myhost kernel: cpuidle: using governor menu
    Jun 24 13:35:25 myhost kernel: TCP cubic registered
    Jun 24 13:35:25 myhost kernel: NET: Registered protocol family 17
    Jun 24 13:35:25 myhost kernel: registered taskstats version 1
    Jun 24 13:35:25 myhost kernel: Initalizing network drop monitor service
    Jun 24 13:35:25 myhost kernel: Freeing unused kernel memory: 480k freed
    Jun 24 13:35:25 myhost kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Jun 24 13:35:25 myhost kernel: udev: starting version 157
    Jun 24 13:35:25 myhost kernel: SCSI subsystem initialized
    Jun 24 13:35:25 myhost kernel: ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    Jun 24 13:35:25 myhost kernel: ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x33 impl SATA mode
    Jun 24 13:35:25 myhost kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf led clo pmp pio slum part ccc sxs
    Jun 24 13:35:25 myhost kernel: scsi0 : ahci
    Jun 24 13:35:25 myhost kernel: scsi1 : ahci
    Jun 24 13:35:25 myhost kernel: scsi2 : ahci
    Jun 24 13:35:25 myhost kernel: scsi3 : ahci
    Jun 24 13:35:25 myhost kernel: scsi4 : ahci
    Jun 24 13:35:25 myhost kernel: scsi5 : ahci
    Jun 24 13:35:25 myhost kernel: ata1: SATA max UDMA/133 abar m2048@0xfc404000 port 0xfc404100 irq 29
    Jun 24 13:35:25 myhost kernel: ata2: SATA max UDMA/133 abar m2048@0xfc404000 port 0xfc404180 irq 29
    Jun 24 13:35:25 myhost kernel: ata3: DUMMY
    Jun 24 13:35:25 myhost kernel: ata4: DUMMY
    Jun 24 13:35:25 myhost kernel: ata5: SATA max UDMA/133 abar m2048@0xfc404000 port 0xfc404300 irq 29
    Jun 24 13:35:25 myhost kernel: ata6: SATA max UDMA/133 abar m2048@0xfc404000 port 0xfc404380 irq 29
    Jun 24 13:35:25 myhost kernel: ata6: SATA link down (SStatus 0 SControl 300)
    Jun 24 13:35:25 myhost kernel: ata5: SATA link down (SStatus 0 SControl 300)
    Jun 24 13:35:25 myhost kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Jun 24 13:35:25 myhost kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jun 24 13:35:25 myhost kernel: ata2.00: ATAPI: HL-DT-ST DVDRW/BDROM CA10N, A107, max UDMA/133
    Jun 24 13:35:25 myhost kernel: ata2.00: configured for UDMA/133
    Jun 24 13:35:25 myhost kernel: ata1.00: ATA-8: ST9320421ASG, DE17, max UDMA/133
    Jun 24 13:35:25 myhost kernel: ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32)
    Jun 24 13:35:25 myhost kernel: ata1.00: configured for UDMA/133
    Jun 24 13:35:25 myhost kernel: scsi 0:0:0:0: Direct-Access ATA ST9320421ASG DE17 PQ: 0 ANSI: 5
    Jun 24 13:35:25 myhost kernel: scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRWBD CA10N A107 PQ: 0 ANSI: 5
    Jun 24 13:35:25 myhost kernel: sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    Jun 24 13:35:25 myhost kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jun 24 13:35:25 myhost kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jun 24 13:35:25 myhost kernel: sda: sda1 sda2 sda3 <sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda caddy
    Jun 24 13:35:25 myhost kernel: Uniform CD-ROM driver Revision: 3.20
    Jun 24 13:35:25 myhost kernel: sda5 sda6 sda7 sda8 > sda4
    Jun 24 13:35:25 myhost kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jun 24 13:35:25 myhost kernel: EXT4-fs (sda8): mounted filesystem with ordered data mode
    Jun 24 13:35:25 myhost kernel: rtc_cmos 00:06: RTC can wake from S4
    Jun 24 13:35:25 myhost kernel: rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    Jun 24 13:35:25 myhost kernel: rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    Jun 24 13:35:25 myhost kernel: udev: starting version 157
    Jun 24 13:35:25 myhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
    Jun 24 13:35:25 myhost kernel: ACPI: Power Button [PWRB]
    Jun 24 13:35:25 myhost kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
    Jun 24 13:35:25 myhost kernel: ACPI: Sleep Button [SLPB]
    Jun 24 13:35:25 myhost kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
    Jun 24 13:35:25 myhost kernel: ACPI: Lid Switch [LID0]
    Jun 24 13:35:25 myhost kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
    Jun 24 13:35:25 myhost kernel: sr 1:0:0:0: Attached scsi generic sg1 type 5
    Jun 24 13:35:25 myhost kernel: Marking TSC unstable due to TSC halts in idle
    Jun 24 13:35:25 myhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    Jun 24 13:35:25 myhost kernel: ACPI: Power Button [PWRF]
    Jun 24 13:35:25 myhost kernel: thermal LNXTHERM:01: registered as thermal_zone0
    Jun 24 13:35:25 myhost kernel: ACPI: Thermal Zone [TZ00] (63 C)
    Jun 24 13:35:25 myhost kernel: thermal LNXTHERM:02: registered as thermal_zone1
    Jun 24 13:35:25 myhost kernel: ACPI: Thermal Zone [TZ01] (52 C)
    Jun 24 13:35:25 myhost kernel: thermal LNXTHERM:03: registered as thermal_zone2
    Jun 24 13:35:25 myhost kernel: ACPI: Thermal Zone [TZ02] (62 C)
    Jun 24 13:35:25 myhost kernel: dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    Jun 24 13:35:25 myhost kernel: Switching to clocksource hpet
    Jun 24 13:35:25 myhost kernel: ACPI: AC Adapter [ADP1] (on-line)
    Jun 24 13:35:25 myhost kernel: ACPI: WMI: Mapper loaded
    Jun 24 13:35:25 myhost kernel: ACPI: Battery Slot [BAT0] (battery present)
    Jun 24 13:35:25 myhost kernel: input: PC Speaker as /devices/platform/pcspkr/input/input5
    Jun 24 13:35:25 myhost kernel: iTCO_vendor_support: vendor-support=0
    Jun 24 13:35:25 myhost kernel: usbcore: registered new interface driver usbfs
    Jun 24 13:35:25 myhost kernel: usbcore: registered new interface driver hub
    Jun 24 13:35:25 myhost kernel: usbcore: registered new device driver usb
    Jun 24 13:35:25 myhost kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input6
    Jun 24 13:35:25 myhost kernel: ACPI: Video Device [M86] (multi-head: yes rom: no post: no)
    Jun 24 13:35:25 myhost kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05
    Jun 24 13:35:25 myhost kernel: iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0460)
    Jun 24 13:35:25 myhost kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Jun 24 13:35:25 myhost kernel: input: Dell WMI hotkeys as /devices/virtual/input/input7
    Jun 24 13:35:25 myhost kernel: i801_smbus 0000:00:1f.3: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    Jun 24 13:35:25 myhost kernel: ACPI: resource 0000:00:1f.3 [io 0x1c00-0x1c1f] conflicts with ACPI region SMBI [mem 0x00001c00-0x00001c0f pref disabled]
    Jun 24 13:35:25 myhost kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Jun 24 13:35:25 myhost kernel: tg3.c:v3.108 (February 17, 2010)
    Jun 24 13:35:25 myhost kernel: tg3 0000:08:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Jun 24 13:35:25 myhost kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1a.7: EHCI Host Controller
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1a.7: debug port 1
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1a.7: irq 19, io mem 0xfc404800
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    Jun 24 13:35:25 myhost kernel: hub 1-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 1-0:1.0: 6 ports detected
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1d.7: EHCI Host Controller
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1d.7: debug port 1
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfc404c00
    Jun 24 13:35:25 myhost kernel: ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Jun 24 13:35:25 myhost kernel: hub 2-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 2-0:1.0: 6 ports detected
    Jun 24 13:35:25 myhost kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001800
    Jun 24 13:35:25 myhost kernel: hub 3-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 3-0:1.0: 2 ports detected
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001820
    Jun 24 13:35:25 myhost kernel: hub 4-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 4-0:1.0: 2 ports detected
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 19 (level, low) -> IRQ 19
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.2: UHCI Host Controller
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1a.2: irq 19, io base 0x00001840
    Jun 24 13:35:25 myhost kernel: hub 5-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 5-0:1.0: 2 ports detected
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001860
    Jun 24 13:35:25 myhost kernel: hub 6-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 6-0:1.0: 2 ports detected
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001880
    Jun 24 13:35:25 myhost kernel: hub 7-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 7-0:1.0: 2 ports detected
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
    Jun 24 13:35:25 myhost kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0
    Jun 24 13:35:25 myhost kernel: hub 8-0:1.0: USB hub found
    Jun 24 13:35:25 myhost kernel: hub 8-0:1.0: 2 ports detected
    Jun 24 13:35:25 myhost kernel: [drm] Initialized drm 1.1.0 20060810
    Jun 24 13:35:25 myhost kernel: tg3 0000:08:00.0: eth0: Tigon3 [partno(none) rev 5784100] (PCI Express) MAC address 00:22:19:f6:92:73
    Jun 24 13:35:25 myhost kernel: tg3 0000:08:00.0: eth0: attached PHY is 5784 (10/100/1000Base-T Ethernet) (WireSpeed[1])
    Jun 24 13:35:25 myhost kernel: tg3 0000:08:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
    Jun 24 13:35:25 myhost kernel: tg3 0000:08:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit]
    Jun 24 13:35:25 myhost kernel: firewire_ohci 0000:09:01.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Jun 24 13:35:25 myhost kernel: firewire_ohci: Added fw-ohci device 0000:09:01.0, OHCI v1.10, 4 IR + 4 IT contexts, quirks 0x0
    Jun 24 13:35:25 myhost kernel: sdhci: Secure Digital Host Controller Interface driver
    Jun 24 13:35:25 myhost kernel: sdhci: Copyright(c) Pierre Ossman
    Jun 24 13:35:25 myhost kernel: cfg80211: Calling CRDA to update world regulatory domain
    Jun 24 13:35:25 myhost kernel: usb 1-6: new high speed USB device using ehci_hcd and address 2
    Jun 24 13:35:25 myhost kernel: sdhci-pci 0000:09:01.1: SDHCI controller found [1180:0822] (rev 22)
    Jun 24 13:35:25 myhost kernel: sdhci-pci 0000:09:01.1: PCI INT B -> GSI 18 (level, low) -> IRQ 18
    Jun 24 13:35:25 myhost kernel: mmc0: SDHCI controller on PCI [0000:09:01.1] using DMA
    Jun 24 13:35:25 myhost kernel: Synaptics Touchpad, model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04731/0xa40000/0xa0000
    Jun 24 13:35:25 myhost kernel: input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input8
    Jun 24 13:35:25 myhost kernel: [drm] radeon defaulting to kernel modesetting.
    Jun 24 13:35:25 myhost kernel: [drm] radeon kernel modesetting enabled.
    Jun 24 13:35:25 myhost kernel: radeon 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Jun 24 13:35:25 myhost kernel: [drm] initializing kernel modesetting (RV635 0x1002:0x9593).
    Jun 24 13:35:25 myhost kernel: HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    Jun 24 13:35:25 myhost kernel: [drm] register mmio base: 0xCFEF0000
    Jun 24 13:35:25 myhost kernel: [drm] register mmio size: 65536
    Jun 24 13:35:25 myhost kernel: ATOM BIOS: BR32049
    Jun 24 13:35:25 myhost kernel: [drm] Clocks initialized !
    Jun 24 13:35:25 myhost kernel: [drm] 6 Power State(s)
    Jun 24 13:35:25 myhost kernel: [drm] State 0 Default (default)
    Jun 24 13:35:25 myhost kernel: [drm] 16 PCIE Lanes
    Jun 24 13:35:25 myhost kernel: [drm] 3 Clock Mode(s)
    Jun 24 13:35:25 myhost kernel: [drm] 0 engine/memory: 400000/800000
    Jun 24 13:35:25 myhost kernel: [drm] 1 engine/memory: 400000/800000
    Jun 24 13:35:25 myhost kernel: [drm] 2 engine/memory: 400000/800000
    Jun 24 13:35:25 myhost kernel: [drm] State 1 Performance
    Jun 24 13:35:25 myhost kernel: [drm] 16 PCIE Lanes
    Jun 24 13:35:25 myhost kernel: [drm] 2 Clock Mode(s)
    Jun 24 13:35:25 myhost kernel: [drm] 0 engine/memory: 110000/405000
    Jun 24 13:35:25 myhost kernel: [drm] 1 engine/memory: 300000/405000
    Jun 24 13:35:25 myhost kernel: [drm] State 2 Battery
    Jun 24 13:35:25 myhost kernel: [drm] 16 PCIE Lanes
    Jun 24 13:35:25 myhost kernel: [drm] 3 Clock Mode(s)
    Jun 24 13:35:25 myhost kernel: [drm] 0 engine/memory: 110000/405000
    Jun 24 13:35:25 myhost kernel: [drm] 1 engine/memory: 300000/405000
    Jun 24 13:35:25 myhost kernel: [drm] 2 engine/memory: 300000/405000
    Jun 24 13:35:25 myhost kernel: [drm] State 3 Default
    Jun 24 13:35:25 myhost kernel: [drm] 16 PCIE Lanes
    Jun 24 13:35:25 myhost kernel: [drm] 2 Clock Mode(s)
    Jun 24 13:35:25 myhost kernel: [drm] 0 engine/memory: 340000/405000
    Jun 24 13:35:25 myhost kernel: [drm] 1 engine/memory: 340000/405000
    Jun 24 13:35:25 myhost kernel: [drm] State 4 Performance
    Jun 24 13:35:25 myhost kernel: [drm] 16 PCIE Lanes
    Jun 24 13:35:25 myhost kernel: [drm] 2 Clock Mode(s)
    Jun 24 13:35:25 myhost kernel: [drm] 0 engine/memory: 340000/800000
    Jun 24 13:35:25 myhost kernel: [drm] 1 engine/memory: 340000/800000
    Jun 24 13:35:25 myhost kernel: [drm] State 5 Battery
    Jun 24 13:35:25 myhost kernel: [drm] 16 PCIE Lanes
    Jun 24 13:35:25 myhost kernel: [drm] 3 Clock Mode(s)
    Jun 24 13:35:25 myhost kernel: [drm] 0 engine/memory: 340000/405000
    Jun 24 13:35:25 myhost kernel: [drm] 1 engine/memory: 340000/405000
    Jun 24 13:35:25 myhost kernel: [drm] 2 engine/memory: 340000/405000
    Jun 24 13:35:25 myhost kernel: [drm] radeon: power management initialized
    Jun 24 13:35:25 myhost kernel: radeon 0000:01:00.0: VRAM: 256M 0x00000000 - 0x0FFFFFFF (256M used)
    Jun 24 13:35:25 myhost kernel: radeon 0000:01:00.0: GTT: 512M 0x10000000 - 0x2FFFFFFF
    Jun 24 13:35:25 myhost kernel: [drm] Detected VRAM RAM=256M, BAR=256M
    Jun 24 13:35:25 myhost kernel: [drm] RAM width 128bits DDR
    Jun 24 13:35:25 myhost kernel: [TTM] Zone kernel: Available graphics memory: 2026178 kiB.
    Jun 24 13:35:25 myhost kernel: [drm] radeon: 256M of VRAM memory ready
    Jun 24 13:35:25 myhost kernel: [drm] radeon: 512M of GTT memory ready.
    Jun 24 13:35:25 myhost kernel: [drm] radeon: using MSI.
    Jun 24 13:35:25 myhost kernel: [drm] radeon: irq initialized.
    Jun 24 13:35:25 myhost kernel: [drm] GART: num cpu pages 131072, num gpu pages 131072
    Jun 24 13:35:25 myhost kernel: [drm] Loading RV635 Microcode
    Jun 24 13:35:25 myhost kernel: platform radeon_cp.0: firmware: requesting radeon/RV635_pfp.bin
    Jun 24 13:35:25 myhost kernel: firewire_core: created device fw0: GUID 0000000000000000, S400
    Jun 24 13:35:25 myhost kernel: platform radeon_cp.0: firmware: requesting radeon/RV635_me.bin
    Jun 24 13:35:25 myhost kernel: platform radeon_cp.0: firmware: requesting radeon/R600_rlc.bin
    Jun 24 13:35:25 myhost kernel: radeon 0000:01:00.0: ffff880139550800 unpin not necessary
    Jun 24 13:35:25 myhost kernel: radeon 0000:01:00.0: ffff880139550800 unpin not necessary
    Jun 24 13:35:25 myhost kernel: [drm] Enabling audio support
    Jun 24 13:35:25 myhost kernel: [drm] Default TV standard: NTSC
    Jun 24 13:35:25 myhost kernel: [drm] Radeon Display Connectors
    Jun 24 13:35:25 myhost kernel: [drm] Connector 0:
    Jun 24 13:35:25 myhost kernel: [drm] VGA
    Jun 24 13:35:25 myhost kernel: [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
    Jun 24 13:35:25 myhost kernel: [drm] Encoders:
    Jun 24 13:35:25 myhost kernel: [drm] CRT1: INTERNAL_KLDSCP_DAC1
    Jun 24 13:35:25 myhost kernel: [drm] Connector 1:
    Jun 24 13:35:25 myhost kernel: [drm] HDMI-A
    Jun 24 13:35:25 myhost kernel: [drm] HPD1
    Jun 24 13:35:25 myhost kernel: [drm] DDC: 0x7e60 0x7e60 0x7e64 0x7e64 0x7e68 0x7e68 0x7e6c 0x7e6c
    Jun 24 13:35:25 myhost kernel: [drm] Encoders:
    Jun 24 13:35:25 myhost kernel: [drm] DFP1: INTERNAL_UNIPHY
    Jun 24 13:35:25 myhost kernel: [drm] Connector 2:
    Jun 24 13:35:25 myhost kernel: [drm] LVDS
    Jun 24 13:35:25 myhost kernel: [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
    Jun 24 13:35:25 myhost kernel: [drm] Encoders:
    Jun 24 13:35:25 myhost kernel: [drm] LCD1: INTERNAL_KLDSCP_LVTMA
    Jun 24 13:35:25 myhost kernel: [drm] Connector 3:
    Jun 24 13:35:25 myhost kernel: [drm] DisplayPort
    Jun 24 13:35:25 myhost kernel: [drm] HPD2
    Jun 24 13:35:25 myhost kernel: [drm] DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
    Jun 24 13:35:25 myhost kernel: [drm] Encoders:
    Jun 24 13:35:25 myhost kernel: [drm] DFP2: INTERNAL_UNIPHY
    Jun 24 13:35:25 myhost kernel: iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
    Jun 24 13:35:25 myhost kernel: iwlagn: Copyright(c) 2003-2010 Intel Corporation
    Jun 24 13:35:25 myhost kernel: iwlagn 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
    Jun 24 13:35:25 myhost kernel: iwlagn 0000:04:00.0: Detected Intel Wireless WiFi Link 5100AGN REV=0x54
    Jun 24 13:35:25 myhost kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input9
    Jun 24 13:35:25 myhost kernel: input: HDA Intel Mic at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    Jun 24 13:35:25 myhost kernel: input: HDA Intel HP Out at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    Jun 24 13:35:25 myhost kernel: input: HDA Intel HP Out at Ext Left Jack as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    Jun 24 13:35:25 myhost kernel: iwlagn 0000:04:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
    Jun 24 13:35:25 myhost kernel: iwlagn 0000:04:00.0: firmware: requesting iwlwifi-5000-2.ucode
    Jun 24 13:35:25 myhost kernel: [drm] fb mappable at 0xD0040000
    Jun 24 13:35:25 myhost kernel: [drm] vram apper at 0xD0000000
    Jun 24 13:35:25 myhost kernel: [drm] size 8294400
    Jun 24 13:35:25 myhost kernel: [drm] fb depth is 24
    Jun 24 13:35:25 myhost kernel: [drm] pitch is 7680
    Jun 24 13:35:25 myhost kernel: Console: switching to colour dummy device 80x25
    Jun 24 13:35:25 myhost kernel: Console: switching to colour frame buffer device 240x67
    Jun 24 13:35:25 myhost kernel: iwlagn 0000:04:00.0: loaded firmware version 8.24.2.12
    Jun 24 13:35:25 myhost kernel: Linux video capture interface: v2.00
    Jun 24 13:35:25 myhost kernel: uvcvideo: Found UVC 1.00 device Laptop_Integrated_Webcam_2M (0c45:63fa)
    Jun 24 13:35:25 myhost kernel: fb0: radeondrmfb frame buffer device
    Jun 24 13:35:25 myhost kernel: registered panic notifier
    Jun 24 13:35:25 myhost kernel: [drm] Initialized radeon 2.3.0 20080528 for 0000:01:00.0 on minor 0
    Jun 24 13:35:25 myhost kernel: HDA Intel 0000:01:00.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    Jun 24 13:35:25 myhost kernel: input: Laptop_Integrated_Webcam_2M as /devices/pci0000:00/0000:00:1a.7/usb1/1-6/1-6:1.0/input/input13
    Jun 24 13:35:25 myhost kernel: usbcore: registered new interface driver uvcvideo
    Jun 24 13:35:25 myhost kernel: USB Video Class driver (v0.1.0)
    Jun 24 13:35:25 myhost kernel: EXT4-fs (sda2): mounted filesystem with ordered data mode
    Jun 24 13:35:25 myhost kernel: EXT4-fs (sda4): mounted filesystem with ordered data mode
    Jun 24 13:35:25 myhost kernel: EXT4-fs (sda5): mounted filesystem with ordered data mode
    Jun 24 13:35:25 myhost kernel: EXT4-fs (sda6): mounted filesystem with ordered data mode
    Jun 24 13:35:25 myhost kernel: Adding 8000332k swap on /dev/sda7. Priority:-1 extents:1 across:8000332k
    Jun 24 13:35:24 myhost init: Entering runlevel: 3
    Jun 24 13:35:44 myhost kernel: Intel AES-NI instructions are not detected.
    Jun 24 13:35:44 myhost kernel: padlock: VIA PadLock not detected.
    Jun 24 13:35:47 myhost dhcpcd[1825]: version 5.2.5 starting
    Jun 24 13:35:47 myhost dhcpcd[1825]: wlan0: rebinding lease of 192.168.1.70
    Jun 24 13:35:47 myhost dhcpcd[1825]: wlan0: acknowledged 192.168.1.70 from 192.168.1.254
    Jun 24 13:35:47 myhost dhcpcd[1825]: wlan0: checking for 192.168.1.70
    Jun 24 13:35:52 myhost dhcpcd[1825]: wlan0: leased 192.168.1.70 for 86400 seconds
    Jun 24 13:35:52 myhost dhcpcd[1825]: forked to background, child pid 1847

  • Empty initial replica exception while starting up managed servers

    Hi,
    I am doing what should be a fairly straight forward installtion/configuration of the weblogic portal 10.3.2.
    I have installed the portal, created a new domain with one admin server and two managed servers in it. I also have a cluster on which I have both my managed servers and finally I have a machine on which I have all the 3 of my servers.
    I am able to successfully startup the nodemanager and then the admin server. But when I try to start up the managed servers from the admin console, I get this exception -
    ####<Feb 11, 2011 12:39:37 PM IST> <Critical> <WebLogicServer> <XXXXXXXX> <new_ManagedServer_1> <Main Thread> <<WLS Kernel>> <> <> <1297408177691> <BEA-000386> <Server subsystem failed. Reason: weblogic.ldap.EmbeddedLDAPException: Empty initial replica
    weblogic.ldap.EmbeddedLDAPException: Empty initial replica
         at weblogic.ldap.EmbeddedLDAP.getInitialReplicaFromAdminServer(EmbeddedLDAP.java:1301)
         at weblogic.ldap.EmbeddedLDAP.start(EmbeddedLDAP.java:221)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Any idea what could be the reason for this?
    Regards,
    Kunal
    Edited by: kunal. on Feb 11, 2011 1:34 AM

    Hi,
    anybody got any solution to this?
    Regards,
    Kunal

  • Failed to receiveNoWait() immediately after connection.start()

    Hi,
    I am using Sun MQ Platform Ed. 3.5. It seems that I have to Thread.sleep(1000) after connection.start() and before receiveNoWait(). Otherwise, I will always get Null Message.
    The code i have is:
    =======================================================
    QueueConnection connection = factory.createQueueConnection();
    QueueSession session = connection.createQueueSession(false, javax.jms.Session.AUTO_ACKNOWLEDGE);
    QueueReceiver receiver = session.createReceiver(queue);
    connection.start();
    // Need add "Thread.sleep(1000);". otherwise, it will always get NULL
    Message message = receiver.receiveNoWait();
    ===================================================
    Anybody meet this problem before?

    This behavior is typical if you use prefetching of messages (client-side caching). The JMS server has to initially load the client's cache and the receiveNoWait() returns immediately. You might check the prefetch configuration of SunMQ (usually located somewhere in the connection factory configuration). Or just use receive(1000) for the very first message and receiceNoWait for the rest.
    Be pracmatic! ;-)
    -- Andreas

  • SAP BW 640-----SAINT HANGS AFTER CLICKING START

    Hi Everybody,
    We are on stack 9 on the source BW 640.  I am trying  to take the stack to 22 as a prerequirement for unicode conversion, and the upgrade to BI 7.0.
    In this regard there is a dependency on PI_BASIS to be on 2005, and BI_CONT to be on 353.  Currently we are on PI_BASIS 2004, and BI_CONT 352 on the source.
    We have extracted the appropriate installation packages for the above components.  When we run SAINT to install these components, and click START it just hangs.  It does not take me to the  next window.
    At least SAINT used to take me to the next window after clicking start, but one change I did was to update the kernel to 221, saint was still hanging after clicking start, again updated the kernel to 274 which is the latest release for NW 2004.  I also have the latest version of R3Trans, and tp.  SAINT still hangs after clicking start button.  No  logs are getting generated in \usr\sap\trans\log.  No files are getting generated in \usr\sap\trans\tmp. 
    I restored the database to what it was before we initiated the SAINT process.  Still SAINT hangs after clicking start button.
    In STMS-overviewu2014system-sap system-all the checks work fine(connection, transport directory, transport tool).  Likewise in SAINT-utilities-check-transport tool----every thing looks good.
    Why is SAINT hanging after clicking start button, can we downgrade the kernel to what it was before (level 155). 
    Any input is greatly appreciated.
    Thank you.
    Ramesh Srinivasan.

    Thank you so very,very much.  We are currently using a 640 gui.  We tested with 710 gui and saint after clicking start does not hang.
    So we are assuming that 710 gui will solve the problem.
    Thanks once again.  A very timely help.  You bet I'll touch base with you if I run into issues.
    RS

  • After a start-up I'm told "Firefox update cannot be completed, Please close existing Firefox. There is no other Firefox running after a fresh start-up.

    If Firefox is sending me updates they won't come thru because I'm told that Firefox is already running. I get this message whether it is the first time I'm using it for the day or even after a start-up. This started about two days ago.

    Hi,
    Please try this: https://www.mozilla.org/en-US/firefox/new/

  • Can't install Snow Leopard on Macbook Pro MC700 - 3 beeps after installer starts.

    can't install Snow Leopard on Macbook Pro MC700 - 3 beeps after installer starts (10.6.3 retail). Lion installer starts normally. What's a problem?

    I have the same trouble, I try installing rEFI but when I try start my Pro from DVD doesn't recognize.
    Can I start from USB Memory? with files from SL DVD? or have some thing else?
    I have original DVD of SL 10.6.3, if I buy the latest stable version, can I install? or the EFI firmware with Lion change again?
    I try to use Lion, more than one week but I can't, and some app that I use for my profession, doesn't work, I really need downgrade to SL.
    Really Thanks for any help.
    Pablo

  • Error while calling servlet in WebLogic

    Hi,
    We are trying to call servlet in WebLogic by using http://scrmskr.apac.nsroot.net:7801/forms/HelloWorldServlet URL and getting
    below error.
    ========================================================================
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    ========================================================================
    Here we are calling HelloWorldServlet servlet which is kept in below path
    /rcrmap2/weblogic/bea/user_projects/domains/frmrep_rcrms/servers/WLS_FORMS/tmp/_WL_user/formsapp_11.1.1/e18uoi/war/WEB-INF/classes
    Entries for HelloWorldServlet in web.xml:
    ========================================================================
    <servlet>
    <servlet-name>HelloWorldServlet</servlet-name>
    <servlet-class>HelloWorldServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>frmservlet</servlet-name>
    <url-pattern>/frmservlet/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>HelloWorldServlet</servlet-name>
    <url-pattern>/HelloWorldServlet*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>lservlet</servlet-name>
    <url-pattern>/lservlet/*</url-pattern>
    </servlet-mapping>
    ========================================================================
    HelloWorldServlet.java:
    ===============================================================================
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class HelloWorldServlet extends HttpServlet {
    public void service(HttpServletRequest req,
    HttpServletResponse res)
    throws IOException
    // Must set the content type first
    res.setContentType("text/html");
    // Now obtain a PrintWriter to insert HTML into
    PrintWriter out = res.getWriter();
    out.println("<html><head><title>" +
    "Hello World!</title></head>");
    out.println("<body><h1>Hello World!</h1></body></html>");
    ===============================================================================
    Please share your inputs as to what needs to be done for the same.
    Thanks & Regards,
    Harish

    Hi Jay,
    Please also find forms.conf_ entries
    ========================================================================
    # Name
    # forms.conf - Forms component Apache directives configuration file.
    # Purpose
    # It should include the weblogic managed server (routing) directives for
    # the servers where Forms applications are deployed and other miscellaneous
    # Forms component OHS directives.
    # Remarks
    # This file is included with the OHS configuration under
    # $OI/config/OHS/<OHS Node Name>/moduleconf sub-directory.
    # virtual mapping for the /forms/html mapping.
    RewriteEngine on
    RewriteRule ^/forms/html/(..*) /workaroundhtml/$1 [PT]
    RewriteRule ^/rcrms/html/(..*) /workaroundhtml/$1 [PT]
    AliasMatch ^/workaroundhtml/(..*) "/rcrmap2/weblogic/bea/rcrms/config/FormsComponent/forms/html/$1"
    AliasMatch ^/forms/frmjscript/(..*) "/rcrmap2/weblogic/bea/user_projects/domains/frmrep_rcrms/servers/WLS_FORMS/tmp/_WL_user/formsapp_11.1.1/e18uoi/war/frmjscript/$1"
    AliasMatch ^/rcrms/icons/(..*) "/rcrmap2/weblogic/bea/ORA_PFRD/forms/java/$1"
    # Virtual path mapping for Forms Java jar and class files (codebase)
    AliasMatch ^/forms/java/(..*) "/rcrmap2/weblogic/bea/ORA_PFRD/forms/java/$1"
    # Virtual path mapping for testcrms (codebase)
    AliasMatch ^/rcrms/java/(..*) "/rcrmap2/weblogic/bea/ORA_PFRD/forms/java/$1"
    AliasMatch ^/forms/(..*) "/rcrmap2/weblogic/bea/user_projects/domains/frmrep_rcrms/servers/WLS_FORMS/tmp/_WL_user/formsapp_11.1.1/e18uoi/war/WEB-INF/classes/$1"
    AliasMatch ^/rcrms/(..*) "/rcrmap2/weblogic/bea/user_projects/domains/frmrep_rcrms/servers/WLS_FORMS/tmp/_WL_user/formsapp_11.1.1/e18uoi/war/WEB-INF/classes/$1"
    AliasMatch ^/rcrms/WebCLAuth/* rcrms
    <Location /forms>
    SetHandler weblogic-handler
    WebLogicHost kauh0079
    WebLogicPort 8001
    </Location>
    ========================================================================
    Thanks & Regards,
    Harish

  • After I started using Airport Express, my HP LaserJet 5000 won't print. I get the message "Network host '192.168.0.4' is busy." How do I fix this?

    After I started using Airport Express, I get the message " host '192.168.0.4' is busy" andmy HP [ethernet] printer no longer works.

    OK, I found this thread which answered my question.
    http://discussions.apple.com/thread.jspa?messageID=610763&#610763

  • A problem with servlets with  WebLogic 4.5.1 SP11

              Hello,
              We have developed a client that connects to servlets in WebLogic 4.5.1. Some of the servlets use sessions to store data, and they receive some parameters from the client to retrieve information from a database.
              When we use WebLogic 4.5.1, everything works fine. However, when we upgrade it to Service Pack 11, we find a problem. If we make a servlet that receives some parameters, but it does no use sessions, everything is correct. If we make a servlet that does not receive any parameter, and we use sessions, we find no problem either. But if we make a servlet that receives parameters and uses sessions within the doPost() method, there is an exception when we call the method Request.getSession(true).
              I would thank any help about this point, since I'm not sure if this is the result of a bug, or if there is a new parameter that we have to set in the file weblogic.properties, or any other reason.
              The code of our servlet is as simple as follows:
              public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException {
                   ObjectInputStream in = new ObjectInputStream(request.getInputStream());
                   String arg = null;
                   String arg2 = null;
                   String arg3 = null;
                   try{
                        arg = (String)in.readObject();
                        arg2 = (String)in.readObject();
                        arg3 = (String)in.readObject();
                   }catch(Exception e){
                   // Get the session and the counter param attribute
                   HttpSession session = request.getSession(true);
              // WE GET THE EXCEPTION AT THIS POINT.
                   Integer ival = (Integer) session.getValue("simplesession.counter");
                   if (ival == null)
                        // Initialize the counter
                        ival = new Integer(1);
                   else
                        // Increment the counter
                        ival = new Integer(ival.intValue() + 1);
                   // Set the new attribute value in the session
                   session.putValue("simplesession.counter", ival);
                   // Output data
                   ObjectOutputStream out = new ObjectOutputStream(response.getOutputStream());
                   out.writeObject(ival);
                   out.close();
              On the other hand, the client invokes the serlvets using the following code:
              public int servletClient(String usuario,String password) {
                   int numero = 0;     
                   try{
                        // Input parameters
                        Serializable[] objs = {"login",usuario, password};
                        // Invokes the servlet
                        ObjectInputStream in = ServletWriter.postObjects(urlServlet, objs); // SEE BELOW...
                        // Get the results
                        numero = ((Integer)in.readObject()).intValue();
                        in.close();
                   }catch(Exception e){
                        e.printStackTrace();
              static public ObjectInputStream postObjects(URL servlet, Serializable objs[]) throws Exception
                        URLConnection con = servlet.openConnection();
                        con.setDoInput(true);
                        con.setDoOutput(true);
                        con.setUseCaches(false);
                        con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
                        // Write the arguments as post data
                        ObjectOutputStream out = new ObjectOutputStream(con.getOutputStream());
                        int numObjects = objs.length;
                        for (int x = 0; x < numObjects; x++) {
                             out.writeObject(objs[x]);
                        out.flush();
                        out.close();
                        return new ObjectInputStream( con.getInputStream() );
              // THE CLIENT CODE FINISHES HERE
              The exception we get is the following:
              Mon Feb 21 13:47:41 GMT-02:00 2000:<E> <ServletContext-Servlets> Servlet failed with RuntimeException
              Mon Feb 21 13:47:41 GMT-02:00 2000:<E> <ServletContext-Servlets> java.io.IOException: Unexpected end of POST data. Read 0 bytes. Content-length = 20
              at java.lang.Throwable.<init>(Compiled Code)
              at java.lang.Exception.<init>(Compiled Code)
              at java.io.IOException.<init>(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.mergePostParams(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.parseQueryParams(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.getParameter(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.initSessionInfo(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.getSession(Compiled Code)
              at SGBA.servlets.HelloWorldServlet.doPost(Compiled Code)
              at javax.servlet.http.HttpServlet.service(Compiled Code)
              at javax.servlet.http.HttpServlet.service(Compiled Code)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled Code)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled Code)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled Code)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code)
              at weblogic.socket.MuxableSocketHTTP.execute(Compiled Code)
              at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)
              --------------- nested within: ------------------
              weblogic.utils.NestedRuntimeException: cannot parse POST parameters of request /HelloWorldServlet
              - with nested exception:
              [java.io.IOException: Unexpected end of POST data. Read 0 bytes. Content-length = 20]
              at java.lang.Throwable.<init>(Compiled Code)
              at java.lang.Exception.<init>(Compiled Code)
              at java.lang.RuntimeException.<init>(Compiled Code)
              at weblogic.utils.NestedRuntimeException.<init>(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.mergePostParams(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.parseQueryParams(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.getParameter(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.initSessionInfo(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.getSession(Compiled Code)
              at SGBA.servlets.HelloWorldServlet.doPost(Compiled Code)
              at javax.servlet.http.HttpServlet.service(Compiled Code)
              at javax.servlet.http.HttpServlet.service(Compiled Code)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled Code)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled Code)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled Code)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code)
              at weblogic.socket.MuxableSocketHTTP.execute(Compiled Code)
              at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)
              I hope all this information can help you making an idea of our problem. We will be looking forward to receiving your answer.
              Thanks in advance,
              Frankie Carrero.
              

              Hello,
              We have developed a client that connects to servlets in WebLogic 4.5.1. Some of the servlets use sessions to store data, and they receive some parameters from the client to retrieve information from a database.
              When we use WebLogic 4.5.1, everything works fine. However, when we upgrade it to Service Pack 11, we find a problem. If we make a servlet that receives some parameters, but it does no use sessions, everything is correct. If we make a servlet that does not receive any parameter, and we use sessions, we find no problem either. But if we make a servlet that receives parameters and uses sessions within the doPost() method, there is an exception when we call the method Request.getSession(true).
              I would thank any help about this point, since I'm not sure if this is the result of a bug, or if there is a new parameter that we have to set in the file weblogic.properties, or any other reason.
              The code of our servlet is as simple as follows:
              public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException {
                   ObjectInputStream in = new ObjectInputStream(request.getInputStream());
                   String arg = null;
                   String arg2 = null;
                   String arg3 = null;
                   try{
                        arg = (String)in.readObject();
                        arg2 = (String)in.readObject();
                        arg3 = (String)in.readObject();
                   }catch(Exception e){
                   // Get the session and the counter param attribute
                   HttpSession session = request.getSession(true);
              // WE GET THE EXCEPTION AT THIS POINT.
                   Integer ival = (Integer) session.getValue("simplesession.counter");
                   if (ival == null)
                        // Initialize the counter
                        ival = new Integer(1);
                   else
                        // Increment the counter
                        ival = new Integer(ival.intValue() + 1);
                   // Set the new attribute value in the session
                   session.putValue("simplesession.counter", ival);
                   // Output data
                   ObjectOutputStream out = new ObjectOutputStream(response.getOutputStream());
                   out.writeObject(ival);
                   out.close();
              On the other hand, the client invokes the serlvets using the following code:
              public int servletClient(String usuario,String password) {
                   int numero = 0;     
                   try{
                        // Input parameters
                        Serializable[] objs = {"login",usuario, password};
                        // Invokes the servlet
                        ObjectInputStream in = ServletWriter.postObjects(urlServlet, objs); // SEE BELOW...
                        // Get the results
                        numero = ((Integer)in.readObject()).intValue();
                        in.close();
                   }catch(Exception e){
                        e.printStackTrace();
              static public ObjectInputStream postObjects(URL servlet, Serializable objs[]) throws Exception
                        URLConnection con = servlet.openConnection();
                        con.setDoInput(true);
                        con.setDoOutput(true);
                        con.setUseCaches(false);
                        con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
                        // Write the arguments as post data
                        ObjectOutputStream out = new ObjectOutputStream(con.getOutputStream());
                        int numObjects = objs.length;
                        for (int x = 0; x < numObjects; x++) {
                             out.writeObject(objs[x]);
                        out.flush();
                        out.close();
                        return new ObjectInputStream( con.getInputStream() );
              // THE CLIENT CODE FINISHES HERE
              The exception we get is the following:
              Mon Feb 21 13:47:41 GMT-02:00 2000:<E> <ServletContext-Servlets> Servlet failed with RuntimeException
              Mon Feb 21 13:47:41 GMT-02:00 2000:<E> <ServletContext-Servlets> java.io.IOException: Unexpected end of POST data. Read 0 bytes. Content-length = 20
              at java.lang.Throwable.<init>(Compiled Code)
              at java.lang.Exception.<init>(Compiled Code)
              at java.io.IOException.<init>(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.mergePostParams(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.parseQueryParams(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.getParameter(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.initSessionInfo(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.getSession(Compiled Code)
              at SGBA.servlets.HelloWorldServlet.doPost(Compiled Code)
              at javax.servlet.http.HttpServlet.service(Compiled Code)
              at javax.servlet.http.HttpServlet.service(Compiled Code)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled Code)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled Code)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled Code)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code)
              at weblogic.socket.MuxableSocketHTTP.execute(Compiled Code)
              at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)
              --------------- nested within: ------------------
              weblogic.utils.NestedRuntimeException: cannot parse POST parameters of request /HelloWorldServlet
              - with nested exception:
              [java.io.IOException: Unexpected end of POST data. Read 0 bytes. Content-length = 20]
              at java.lang.Throwable.<init>(Compiled Code)
              at java.lang.Exception.<init>(Compiled Code)
              at java.lang.RuntimeException.<init>(Compiled Code)
              at weblogic.utils.NestedRuntimeException.<init>(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.mergePostParams(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.parseQueryParams(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.getParameter(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.initSessionInfo(Compiled Code)
              at weblogic.servlet.internal.ServletRequestImpl.getSession(Compiled Code)
              at SGBA.servlets.HelloWorldServlet.doPost(Compiled Code)
              at javax.servlet.http.HttpServlet.service(Compiled Code)
              at javax.servlet.http.HttpServlet.service(Compiled Code)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled Code)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled Code)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled Code)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code)
              at weblogic.socket.MuxableSocketHTTP.execute(Compiled Code)
              at weblogic.t3.srvr.ExecuteThread.run(Compiled Code)
              I hope all this information can help you making an idea of our problem. We will be looking forward to receiving your answer.
              Thanks in advance,
              Frankie Carrero.
              

Maybe you are looking for

  • Error in Updating a Result Set Programmatically

    Could anyone please help me ! Why the row is always corrupted after executing the following code. I am using JDK 1.4 , the default JDBC:ODBC driver from sun and MS Access 2000 try rs.updateString(1,jtfCity.getText().trim()); rs.updateString(2,jtfCoun

  • MBP superdrive

    I have the same problem. When I try to burn DVD+R disk (in my case Verbatim, if this makes any difference) I receive the following error: The drive reported an error: Sense Key = MEDIUM ERROR Sense Code = 0x73, 0x03 It is clear that this super drive

  • SBO Backup schedule problem

    Hi, When i try to schedule de SBO Backup in the SAP Service Manager to "daily" and click oke, then it always switches back to "on specific date" What is my problem? Greetings Mark

  • XML with OWB 11G

    Hello All, iam newbie to OWB. there is one requirement on our client site.Loading data from XML file. Refered documents but not able to understand the logic. Please any step by step screen shots will be most appreciated. It is very critical. Thanks a

  • Strange preferences showing up

    I recently updated my server to 10.5.6. Since then I have had some clients show thousands of strange preferences in their libraries. This causes major slowdown issues at login. The preferences show up at login. I've watched from the server and seen h