Zones not booting - failed to create devlinks: Interrupted system call

I just installed the latest 10_Recommended cluster with 118833-36 kernel patch and now my zones won't boot. I get the error:
(root)Yes Master?> zoneadm list -iv
ID NAME STATUS PATH
0 global running /
- samba installed /export/home/zones/samba
- web installed /export/home/zones/web
- dhcp installed /export/home/zones/dhcp
- dns installed /export/home/zones/dns
- vs1 installed /zdata/zones/vs1
- dss installed /zdata/zones/dss
- test installed /zdata/zones/test
(root)Yes Master?> zoneadm -z test boot
failed to create devlinks: Interrupted system call
console setup: device initialization failed
zoneadm: zone 'test': could not start zoneadmd
zoneadm: zone 'test': call to zoneadmd failed
Also, running devfsadm or drvconfig;devlinks from the global zone will core dump.
Any ideas..??
tia..

First, you gotta change your prompt to something less embarrassing when you post to a public forum :)
I'd forget about the zones problem and focus on why devfsadm core dumps -- that's the core of the problem (no pun intended...no, really!).
First, review the install logs of all the patches installed during the recent service (/var/sadm/patch/*/log). Even if they all show a good completion, check the messages they generated, sometimes they have errors that aren't bad enough to cause a complete failure of the patch. The KJP (118833-36) is probably a good one to start with.
Next I'd "truss" the devfsadm command while it core dumps then get a stack trace of the core (run "adb <corefile>" and type "$C" -- that's old school, I'm sure mdb is much cooler...).
Throw some of the strings from those against sunsolve and see if something sticks.
Good luck!

Similar Messages

  • Missing dependency in Solaris 10 Update8 iscsi initiator / zones not booted

    In previous Solaris 10 Releases, the iscsi_initiator smf service had the following
    dependeny:
    # svcs -D iscsi_initiator
    STATE STIME FMRI
    online Jan_11 svc:/system/metainit:default
    Because this one is missing with Update 8, the service is even started after
    the zones services.
    online 14:45:50 svc:/system/zones:default
    online 14:46:01 svc:/network/iscsi/initiator:default
    Result:
    - No filesystems on iSCSI disks mounted, no Zone on iSCSI running ... after system boot.
    Any ideas?

    Quick thought...
    What happens if you mark all you zones to not boot as a default setting so system boot you won't have this race condition. Then have an rc3highnumber script that probes the services and makes sure all drivers and filesystems are available. Once available, boot the zones, and reset the autoboot option if need be. But make sure the rc3script has the autoboot function disabled again on the way down. This should hold the problem together until Sun/Oracle fixes this issue.
    Nasty hack, but that's software for you.
    Thoughts?

  • Invoke bpel from java - Failed to create "ejb/collaxa/system/DeliveryBean

    Hi,
    I have a very simple java class to invoke CreditRatingProcess sample:
    String ssn = null;
    if (ssn == null)
    ssn = "123-12-1234";
    String xml =
    "<ssn xmlns=\"http://services.otn.com\">" + ssn + "</ssn>";
    Locator locator = new Locator("default", "oc4jadmin", "localhost");
    IDeliveryService deliveryService =
    (IDeliveryService)locator.lookupService(IDeliveryService.SERVICE_NAME);
    // construct the normalized message and send to Oracle BPEL Process Manager
    NormalizedMessage nm = new NormalizedMessage();
    nm.addPart("payload", xml);
    NormalizedMessage res =
    deliveryService.request("CreditRatingService", "process", nm);
    Map payload = res.getPayload();
    System.out.println("BPELProcess CreditRatingService executed!<br>");
    System.out.println("Credit Rating is " + payload.get("payload"));
    When I try to execute, I have the following error:
    java.lang.Exception: Failed to create "ejb/collaxa/system/DeliveryBean" bean; exception reported is: "javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
         at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:284)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.oracle.bpel.client.util.BeanRegistry.lookupDeliveryBean(BeanRegistry.java:279)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:250)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:83)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:53)
         at docsdemo.bpelapi.BPELProcess.callProcess(BPELProcess.java:84)
         at docsdemo.bpelapi.tests.Test1.<init>(Test1.java:14)
         at docsdemo.bpelapi.tests.Test1.main(Test1.java:18)
         at com.oracle.bpel.client.util.BeanRegistry.lookupDeliveryBean(BeanRegistry.java:293)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:250)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:83)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:53)
         at docsdemo.bpelapi.BPELProcess.callProcess(BPELProcess.java:84)
         at docsdemo.bpelapi.tests.Test1.<init>(Test1.java:14)
         at docsdemo.bpelapi.tests.Test1.main(Test1.java:18)
    I use SOA suite 10.1.3 Developer Preview and JDeveloper 10.1.3
    Can you help me?
    Cyryl
    Message was edited by:
    cbalmati
    Message was edited by:
    cbalmati

    Hi,
    Thanks fro your answer. But it does not work ...
    My demo runs on my laptop (SOA10.1.3 DP / JDeveloper 10.1.3)
    This is my code:
    public void test() {
    String xml = "<name xmlns=\"http://samples.otn.com/helloworld\">" + "test" + "</name>";
    Hashtable jndi = null;
    jndi = new Hashtable();
    // Change the PROVIDER_URL to your BPEL PM host...
    jndi.put(Context.PROVIDER_URL, "ormi://localhost/orabpel");
    jndi.put(Context.INITIAL_CONTEXT_FACTORY, "com.evermind.server.rmi.RMIInitialContextFactory");
    jndi.put(Context.SECURITY_PRINCIPAL, "admin");
    jndi.put(Context.SECURITY_CREDENTIALS, "welcome");
    jndi.put("dedicated.connection", "true");
    Locator locator = null;
    try {
    locator = new Locator("default","bpel", jndi);
    } catch (ServerException e) {
    e.printStackTrace();
    IDeliveryService deliveryService = (IDeliveryService)locator.lookupService(IDeliveryService.SERVICE_NAME );
    // construct the normalized message and send to Oracle BPEL Process Manager
    NormalizedMessage nm = new NormalizedMessage( );
    System.out.println(xml);
    nm.addPart("payload" , xml );
    try {
    deliveryService.post("HelloWorld", "initiate", nm);
    } catch (ServerException e) {
    e.printStackTrace();
    } catch (RemoteException e) {
    e.printStackTrace();
    and that's my error:
    Exception in thread "main" java.lang.NoClassDefFoundError: javax/ejb/EJBException
         at com.oracle.bpel.client.util.ExceptionUtils.handleServerException(ExceptionUtils.java:76)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:254)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:174)
         at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:149)
         at docsdemo.ui.XMLMessageHelper.test(XMLMessageHelper.java:62)
         at docsdemo.ui.tests.Tests.<init>(Tests.java:15)
         at docsdemo.ui.tests.Tests.main(Tests.java:20)
    I don't understand because I created a simple JSP to invoke helloWorld process (same code), it's works !!
    Any suggestion?
    Cyryl

  • Failed to create "ejb/collaxa/system/FinderBean" bean; exception reported i

    I am unable to invoke BPEL service from an OA framework page. I am getting following error when I am trying to Invoke.
    oracle.apps.fnd.framework.OAException: java.lang.Exception: Failed to create "ejb/collaxa/system/DeliveryBean" bean; exception reported is: "java.lang.NullPointerException: domain was null
         at com.evermind.server.rmi.RMIServer.addNode(RMIServer.java:779)
         at com.evermind.server.rmi.RMIServer.getConnection(RMIServer.java:848)
         at com.evermind.server.rmi.RMIInitialContextFactory.getInitialContext(RMIInitialContextFactory.java:206)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:662)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:243)
         at javax.naming.InitialContext.init(InitialContext.java:219)
         at javax.naming.InitialContext.<init>(InitialContext.java:195)
         at com.oracle.bpel.client.util.BeanRegistry.lookupDeliveryBean(BeanRegistry.java:277)
         at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:250)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:83)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:53)
         at emr2.oracle.apps.inv.kanban.webui.KanPOCTestCO.getMsg(KanPOCTestCO.java:93)
         at emr2.oracle.apps.inv.kanban.webui.KanPOCTestCO.processRequest(KanPOCTestCO.java:45)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:518)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:244)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:920)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1536)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:866)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:833)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:575)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:244)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processRequest(OAFormBean.java:363)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:866)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:833)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:575)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:244)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:330)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2121)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1562)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:463)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:384)
         at _OA._jspService(OA.jsp:40)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    Code I am using to invoke is:
              Hashtable jndi = null;
              jndi = new Hashtable();
              jndi.put(Context.PROVIDER_URL, "ormi://142.176.225.111:23791/orabpel");
              jndi.put(Context.INITIAL_CONTEXT_FACTORY, "com.evermind.server.rmi.RMIInitialContextFactory");
              jndi.put(Context.SECURITY_PRINCIPAL, "oc4jadmin");
              jndi.put(Context.SECURITY_CREDENTIALS, "welcome1");
              Locator locator = new Locator("default", "welcome1", jndi);
              IDeliveryService deliveryService = (IDeliveryService)locator.lookupService(IDeliveryService.SERVICE_NAME );
              //System.out.println("4444");
              String xml ="<FirstTestBPELProcessProcessRequest xmlns=\"http://xmlns.oracle.com/FirstTestBPELProcess\"><input>123456789</input></FirstTestBPELProcessProcessRequest>";
              NormalizedMessage nm = new NormalizedMessage( );
              nm.addPart("payload", xml );
              NormalizedMessage res = deliveryService.request("FirstTestBPELProcess", "process", nm);
              Map payload = res.getPayload();
              Element elem = (Element)payload.get("payload");
    This code works excellent when called from a stand alone java class but it is not working when it is called from an OA Page.
    Can some one provide any pointer to the error.

    I think that your problem is that the Context.PROVIDER_URL is wrong.
    Here is a sample of url that we use here:
    opmn:ormi://servername:6005:home/orabpel
    where:
    "servername" is (duh) the servername
    "home" is the container that bpel is running
    "6005" is the opmn port.

  • Oracle BPEL PM API : Failed to create "ejb/collaxa/system/ServerBean"

    I am getting the following error when I try to use the Oracle BPEL PM API :
    java.lang.Exception: Failed to create "ejb/collaxa/system/ServerBean" bean; exception reported is: "javax.naming.NoInitialContextException: Need to specify class name in environment or system property,
    or as an applet parameter, or in an application resource file: java.naming.factory.initial
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
         at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:284)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.oracle.bpel.client.util.BeanRegistry.lookupServerBean(BeanRegistry.java:95)
         at com.oracle.bpel.client.auth.ServerAuthFactory.authenticate(ServerAuthFactory.java:73)
         at example2.Application1.run(Application1.java:50)
         at example2.Application1.main(Application1.java:67)
    It looks like a JNDI/RMI JNDI issue, but it could be another problem. If it is my java.naming.provider.url value.
    The values are found by the following methods:
    <opmn-request-port> : 6003 - Found in opmn.xml, OPMN request port
    <oc4j-instance-name> : oc4j_soa - Found in enterprise manager
    <oc4j-application-name> : orabpel
    The code is
    import com.oracle.bpel.client.BPELDomainStatus;
    import com.oracle.bpel.client.Server;
    import com.oracle.bpel.client.auth.ServerAuth;
    import com.oracle.bpel.client.auth.ServerAuthFactory;
    import com.oracle.bpel.client.ServerException;
    import com.oracle.bpel.client.Locator;
    import com.oracle.bpel.client.dispatch.IDeliveryService;
    Properties props = new java.util.Properties();
    props.put("orabpel.platform", "ias_10g" );
    props.put("java.naming.factory.initial",
    "oracle.j2ee.rmi.RMIInitialContextFactory" );
    props.put("java.naming.provider.url",
    "opmn:ormi://rrsl00024:6003:oc4j_bpel/orabpel" );
    props.put ("dedicated.rmicontext", "true");
    props.put("java.naming.security.principal", "oc4jadmin" );
    props.put("java.naming.security.credentials", "oracle1" );
    securityCredentials = "oracle1";
    auth = ServerAuthFactory.authenticate(securityCredentials, null, props);
    Server srv = new Server(auth);
    BPELDomainStatus domainList[] = srv.getAllDomainStatus();
    for (int i=0; i<domainList.length; i++ ) {
    System.out.println( "Domain ID="+domainList.getDomainId() );
    Environment:
    BPEL Designer     10.1.3.3.0 (Build 070615.0525)
    Java(TM) Platform     1.5.0_06
    Oracle IDE     10.1.3.41.57

    I am getting the following error when I try to use the Oracle BPEL PM API :
    java.lang.Exception: Failed to create "ejb/collaxa/system/ServerBean" bean; exception reported is: "javax.naming.NoInitialContextException: Need to specify class name in environment or system property,
    or as an applet parameter, or in an application resource file: java.naming.factory.initial
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
         at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:284)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.oracle.bpel.client.util.BeanRegistry.lookupServerBean(BeanRegistry.java:95)
         at com.oracle.bpel.client.auth.ServerAuthFactory.authenticate(ServerAuthFactory.java:73)
         at example2.Application1.run(Application1.java:50)
         at example2.Application1.main(Application1.java:67)
    It looks like a JNDI/RMI JNDI issue, but it could be another problem. If it is my java.naming.provider.url value.
    The values are found by the following methods:
    <opmn-request-port> : 6003 - Found in opmn.xml, OPMN request port
    <oc4j-instance-name> : oc4j_soa - Found in enterprise manager
    <oc4j-application-name> : orabpel
    The code is
    import com.oracle.bpel.client.BPELDomainStatus;
    import com.oracle.bpel.client.Server;
    import com.oracle.bpel.client.auth.ServerAuth;
    import com.oracle.bpel.client.auth.ServerAuthFactory;
    import com.oracle.bpel.client.ServerException;
    import com.oracle.bpel.client.Locator;
    import com.oracle.bpel.client.dispatch.IDeliveryService;
    Properties props = new java.util.Properties();
    props.put("orabpel.platform", "ias_10g" );
    props.put("java.naming.factory.initial",
    "oracle.j2ee.rmi.RMIInitialContextFactory" );
    props.put("java.naming.provider.url",
    "opmn:ormi://rrsl00024:6003:oc4j_bpel/orabpel" );
    props.put ("dedicated.rmicontext", "true");
    props.put("java.naming.security.principal", "oc4jadmin" );
    props.put("java.naming.security.credentials", "oracle1" );
    securityCredentials = "oracle1";
    auth = ServerAuthFactory.authenticate(securityCredentials, null, props);
    Server srv = new Server(auth);
    BPELDomainStatus domainList[] = srv.getAllDomainStatus();
    for (int i=0; i<domainList.length; i++ ) {
    System.out.println( "Domain ID="+domainList.getDomainId() );
    Environment:
    BPEL Designer     10.1.3.3.0 (Build 070615.0525)
    Java(TM) Platform     1.5.0_06
    Oracle IDE     10.1.3.41.57

  • Posix Perf Pack - Interrupted system call (WL6SP1)

    Hi all,
    I run Weblogic 6.0 SP1 on solaris 2.7.
    My web application seems to work but randomly, Weblogic seems to
    crash.
    The logs say the following message.
    Any help is welcome! =)
    Guillaume
    ####<Jun 13, 2001 8:49:29 AM GMT+01:00> <Error> <Posix Performance
    Pack> <intupc5> <clarify> <ExecuteThread: '12' for queue: 'default'>
    <> <> <000000> <Uncaught Throwable in processSockets>
    java.io.IOException: error in poll: Interrupted system call
         at weblogic.socket.PosixSocketMuxer.poll(Native Method)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

    We apparently had quite a bit of premature thread death, about half of our threads
    are MIA
    "Mike Reiche" <[email protected]> wrote:
    >
    Ummmm.. so you set the executeThreadCount to what? 55? And PercentSocketReaders
    to 50?
    And you are missing execute threads 1 through 25. Where did they go?
    The only
    threads you have left are the ones listening for requests - and they
    don't do
    any work. Find out what happened to the missing threads.
    Mike
    "Joe" <[email protected]> wrote:
    Here is our thread dump ...just FYI we took a thread dump every minute
    for about
    5-7 minutes. The thread dump did NOT change
    ------------------------begin thread dump-----------------------
    Full thread dump:
    "Thread-4" daemon prio=5 tid=0xc39fb8 nid=0x51 waiting on monitor [0xb3501000..0xb3501a28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at javax.mail.EventQueue.dequeue(EventQueue.java:78)
         at javax.mail.EventQueue.run(EventQueue.java:97)
         at java.lang.Thread.run(Thread.java:484)
    "HighPriority TimeEventGenerator" daemon prio=9 tid=0xaa7f30 nid=0x4e
    waiting
    on monitor [0xb1e81000..0xb1e81a28]
         at java.lang.Object.wait(Native Method)
         at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
         at weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java:138)
         at java.lang.Thread.run(Thread.java:484)
    "SSLListenThread" prio=5 tid=0x5b9ba8 nid=0x4d runnable [0xb2e81000..0xb2e81a28]
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:413)
         at java.net.ServerSocket.implAccept(ServerSocket.java:243)
         at java.net.ServerSocket.accept(ServerSocket.java:222)
         at weblogic.security.SSL.SSLServerSocket.acceptNoHandshake(SSLServerSocket.java:126)
         at weblogic.security.SSL.SSLServerSocket.accept(SSLServerSocket.java:117)
         at weblogic.t3.srvr.ListenThread.run(ListenThread.java:247)
    "ListenThread" prio=5 tid=0x912768 nid=0x4c runnable [0xb2f81000..0xb2f81a28]
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:413)
         at java.net.ServerSocket.implAccept(ServerSocket.java:243)
         at java.net.ServerSocket.accept(ServerSocket.java:222)
         at weblogic.t3.srvr.ListenThread.run(ListenThread.java:247)
    "ExecuteThread: '1' for queue: '__weblogic_admin_rmi_queue'" daemonprio=5
    tid=0x2da950
    nid=0x49 waiting on monitor [0xb3701000..0xb3701a28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: '__weblogic_admin_rmi_queue'" daemonprio=5
    tid=0x2d9218
    nid=0x48 waiting on monitor [0xb3801000..0xb3801a28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '1' for queue: '__weblogic_admin_html_queue'" daemon
    prio=5 tid=0x2d88f0
    nid=0x47 waiting on monitor [0xb3901000..0xb3901a28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "ExecuteThread: '0' for queue: '__weblogic_admin_html_queue'" daemon
    prio=5 tid=0x2d83c8
    nid=0x46 waiting on monitor [0xb3a01000..0xb3a01a28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    "TimeEventGenerator" daemon prio=5 tid=0x379f58 nid=0x45 waiting onmonitor
    [0xb3b01000..0xb3b01a28]
         at java.lang.Object.wait(Native Method)
         at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
         at weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java:138)
         at java.lang.Thread.run(Thread.java:484)
    "TimeEventGenerator" daemon prio=5 tid=0x349f58 nid=0x44 waiting onmonitor
    [0xb3c01000..0xb3c01a28]
         at java.lang.Object.wait(Native Method)
         at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
         at weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java:138)
         at java.lang.Thread.run(Thread.java:484)
    "SpinnerRandomSource" daemon prio=5 tid=0x419698 nid=0x43 waiting on
    monitor [0xb3d01000..0xb3d01a28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at weblogic.security.SpinnerThread.stopSpinning(SpinnerRandomBitsSource.java:92)
         at weblogic.security.SpinnerThread.run(SpinnerRandomBitsSource.java:109)
    "ExecuteThread: '54' for queue: 'default'" daemon prio=5 tid=0x416740
    nid=0x42
    waiting for monitor entry [0xb3e01000..0xb3e01a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '49' for queue: 'default'" daemon prio=5 tid=0x4130e0
    nid=0x3d
    waiting for monitor entry [0xb4301000..0xb4301a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '48' for queue: 'default'" daemon prio=5 tid=0x412600
    nid=0x3c
    waiting for monitor entry [0xb4401000..0xb4401a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '47' for queue: 'default'" daemon prio=5 tid=0x411b20
    nid=0x3b
    waiting for monitor entry [0xb4501000..0xb4501a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '46' for queue: 'default'" daemon prio=5 tid=0x410a38
    nid=0x3a
    waiting for monitor entry [0xb4601000..0xb4601a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '45' for queue: 'default'" daemon prio=5 tid=0x40ff58
    nid=0x39
    waiting for monitor entry [0xb4701000..0xb4701a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '44' for queue: 'default'" daemon prio=5 tid=0x40f478
    nid=0x38
    waiting for monitor entry [0xb4801000..0xb4801a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '43' for queue: 'default'" daemon prio=5 tid=0x40e998
    nid=0x37
    waiting for monitor entry [0xb4901000..0xb4901a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '42' for queue: 'default'" daemon prio=5 tid=0x40deb8
    nid=0x36
    waiting for monitor entry [0xb4a01000..0xb4a01a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '41' for queue: 'default'" daemon prio=5 tid=0x40d3d8
    nid=0x35
    waiting for monitor entry [0xb4b01000..0xb4b01a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '40' for queue: 'default'" daemon prio=5 tid=0x40c8f8
    nid=0x34
    waiting for monitor entry [0xb4c01000..0xb4c01a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '39' for queue: 'default'" daemon prio=5 tid=0x40be18
    nid=0x33
    waiting for monitor entry [0xb4d01000..0xb4d01a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '38' for queue: 'default'" daemon prio=5 tid=0x40b338
    nid=0x32
    waiting for monitor entry [0xb4e01000..0xb4e01a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '37' for queue: 'default'" daemon prio=5 tid=0x40a858
    nid=0x31
    waiting for monitor entry [0xb4f01000..0xb4f01a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '36' for queue: 'default'" daemon prio=5 tid=0x409970
    nid=0x30
    waiting for monitor entry [0xb5001000..0xb5001a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '35' for queue: 'default'" daemon prio=5 tid=0x408e90
    nid=0x2f
    waiting for monitor entry [0xb5101000..0xb5101a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '34' for queue: 'default'" daemon prio=5 tid=0x4083b0
    nid=0x2e
    waiting for monitor entry [0xb5201000..0xb5201a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '33' for queue: 'default'" daemon prio=5 tid=0x4078d0
    nid=0x2d
    waiting for monitor entry [0xb5301000..0xb5301a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '32' for queue: 'default'" daemon prio=5 tid=0x406df0
    nid=0x2c
    waiting for monitor entry [0xb5401000..0xb5401a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '31' for queue: 'default'" daemon prio=5 tid=0x406310
    nid=0x2b
    waiting for monitor entry [0xb5501000..0xb5501a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '30' for queue: 'default'" daemon prio=5 tid=0x405830
    nid=0x2a
    runnable [0xb5601000..0xb5601a28]
         at weblogic.socket.PosixSocketMuxer.poll(Native Method)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '29' for queue: 'default'" daemon prio=5 tid=0x404548
    nid=0x29
    waiting for monitor entry [0xb5701000..0xb5701a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '28' for queue: 'default'" daemon prio=5 tid=0x403a68
    nid=0x28
    waiting for monitor entry [0xb5801000..0xb5801a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '27' for queue: 'default'" daemon prio=5 tid=0x402f88
    nid=0x27
    waiting for monitor entry [0xb5901000..0xb5901a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "ExecuteThread: '26' for queue: 'default'" daemon prio=5 tid=0x4024a8
    nid=0x26
    waiting for monitor entry [0xb5a01000..0xb5a01a28]
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "Signal Dispatcher" daemon prio=10 tid=0xf2320 nid=0x9 runnable [0..0]
    "Finalizer" daemon prio=8 tid=0xef678 nid=0x7 waiting on monitor [0xb8b81000..0xb8b81a28]
         at java.lang.Object.wait(Native Method)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:149)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:164)
         at java.lang.ref.Finalizer$FinalizerWorker$FinalizerThread.run(Finalizer.java:120)
    "Reference Handler" daemon prio=10 tid=0xedd40 nid=0x6 waiting on monitor
    [0xfad01000..0xfad01a28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:129)
    "main" prio=5 tid=0x298c0 nid=0x1 waiting on monitor [0xffbee000..0xffbee4cc]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:420)
         at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:501)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:171)
         at weblogic.Server.main(Server.java:35)
    "VM Thread" prio=5 tid=0xecae0 nid=0x4 runnable
    "VM Periodic Task Thread" prio=10 tid=0xf1020 nid=0x8 runnable
    ------------------end thread dump------------------------
    "Mike Reiche" <[email protected]> wrote:
    Post your thread dumps and I'll tell you where it's stuck.
    (not in Object.wait())
    Mike
    Joe" <[email protected]> wrote:
    Mike, how sure are you about this? How do you know what the poll
    method
    does
    exactly..it is going into native code
    Also, we can see our execute threads getting tied up on this methodfor
    quite
    some time. Im not sure that you are correct on this.
    "Mike Reiche" <[email protected]> wrote:
    The threads are not really 'stuck' in PosixSocketMuxer.poll - they
    are
    waiting
    for socket connections such as an http request - that is normal.
    Mike
    "Joe" <[email protected]> wrote:
    Did you get a respose about this one yet? We have seen this error
    in
    our logfiles,
    and have had periodic server hangs (thread dumps show execute threads
    stuck in
    at weblogic.socket.PosixSocketMuxer.poll(Native Method))
    Thanks for any info
    -joe
    [email protected] (Guillaume Morel) wrote:
    Hi all,
    I run Weblogic 6.0 SP1 on solaris 2.7.
    My web application seems to work but randomly, Weblogic seems to
    crash.
    The logs say the following message.
    Any help is welcome! =)
    Guillaume
    ####<Jun 13, 2001 8:49:29 AM GMT+01:00> <Error> <Posix Performance
    Pack> <intupc5> <clarify> <ExecuteThread: '12' for queue: 'default'>
    <> <> <000000> <Uncaught Throwable in processSockets>
    java.io.IOException: error in poll: Interrupted system call
         at weblogic.socket.PosixSocketMuxer.poll(Native Method)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

  • WL6SP1 - Posix Perf Pack - Interrupted system call

    Hi all,
    I run Weblogic 6.0 SP1 on solaris 2.7.
    My web application seems to work but randomly, Weblogic seems to
    crash.
    The logs say the following message.
    Any help is welcome! =)
    Guillaume
    ####<Jun 13, 2001 8:49:29 AM GMT+01:00> <Error> <Posix Performance
    Pack> <intupc5> <clarify> <ExecuteThread: '12' for queue: 'default'>
    <> <> <000000> <Uncaught Throwable in processSockets>
    java.io.IOException: error in poll: Interrupted system call
         at weblogic.socket.PosixSocketMuxer.poll(Native Method)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

    Hi all,
    I run Weblogic 6.0 SP1 on solaris 2.7.
    My web application seems to work but randomly, Weblogic seems to
    crash.
    The logs say the following message.
    Any help is welcome! =)
    Guillaume
    ####<Jun 13, 2001 8:49:29 AM GMT+01:00> <Error> <Posix Performance
    Pack> <intupc5> <clarify> <ExecuteThread: '12' for queue: 'default'>
    <> <> <000000> <Uncaught Throwable in processSockets>
    java.io.IOException: error in poll: Interrupted system call
         at weblogic.socket.PosixSocketMuxer.poll(Native Method)
         at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:371)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

  • Diskless client NFS boot fails. cannot create /dev/nfs

    Hi
    I've set up a diskless laptop to boot off my server, both running Arch. I followed the wiki article: https://wiki.archlinux.org/index.php/Di … t_NFS_root
    PXE on the laptop connects with the tftpd server just fine, gets the kernel and begins booting up. At some point it begins looking for /dev/nfs, declares it does not exist, attempts to create it and and fails with the following error (from memory as I'm not at the computer now).
    "ERROR: Unable to determine major/minor number of root device root=/dev/nfs"
    my kernel param line in pxelinux.cfg/default is just like the one in the wiki article i.e
    default linux
    label linux
    kernel vmlinuz26
    append initrd=kernel26.img rootfstype=nfs root=/dev/nfs nfsroot=10.0.0.1:/disklessroot,v3,rsize=16384,wsize=16384 ip=::::::dhcp
    any help will be greatly appreciated.
    emk

    I'm assuming youve entered your own IP addresses instead of just copy&pasting from the howto, correct?
    Also, did you install all the nfs packages, and do the mkinitcpio-nfs-utils procedure?

  • IFolder Client Could not start [Failed to create Flaim DB]

    Hi
    My Customer resonse a user's ifolder client (3.8.0.8)could not start , and I check it and find some information in error message of iFolder below (Only one user , and he could login by web)
    [SimiasException: Flaim error FERR_FILE_EXISTS FERR_FILE_EXISTS]
    [CreateException: Failed to create Flaim DB.]
    whether Client will create a DB when it first start up or not ?
    I try to uninstall .NET 2.0 & ifolder client, I still get the same result.
    Who had seem similar issue like me, and could provide method for me ??
    thanks!!
    wyldkao

    This error FERR_FILE_EXISTS comes when the db is already accessed by one process and another process is trying to access the same.
    Could you check if simias.exe is already running. If so, kill it and restart.
    >>> wyldkao<[email protected]> 4/9/2012 3:06 PM >>>
    Hi
    My Customer resonse a user's ifolder client (3.8.0.8)could not
    start , and I check it and find some information in error message of
    iFolder below (Only one user , and he could login by web)
    [SimiasException: Flaim error FERR_FILE_EXISTS FERR_FILE_EXISTS]
    [CreateException: Failed to create Flaim DB.]
    whether Client will create a DB when it first start up or not ?
    I try to uninstall .NET 2.0 & ifolder client, I still get the same
    result.
    Who had seem similar issue like me, and could provide method for me ??
    thanks!!
    wyldkao
    wyldkao
    wyldkao's Profile: http://forums.novell.com/member.php?userid=1823
    View this thread: http://forums.novell.com/showthread.php?t=454414

  • Solaris 8 branded zone not booting after server reboot hangs at ready state

    Hi,
    For ipchange/hostname change we rebooted the physical server...once rebooting the Solaris brand 8 zone stucks at ready state.
    I have run the truss with zoneadm in the log process sleep and wait
    Will post the log soon..any help to troubleshoot the issue
    Both global zone and Ng zone having same hostid..
    dmesg::
    Apr 30 13:08:50 xyz zoneadmd[992]: [ID 702911 daemon.error] [zone 'abc'] WARNING: console /devices//pseudo/zconsnex@1/zcons@0 found, but it could not be removed.: I/O error
    bash-3.00# ps -ef|grep -i abc
    root 1441 1429 0 13:10:56 ? 0:00 /bin/ksh -p /usr/lib/brand/solaris8/s8_boot abc /abc
    root 1429 1 0 13:10:55 ? 0:00 zoneadmd -z abc
    root 1427 1397 0 13:10:54 pts/3 0:00 zoneadm -z abc boot -f -s
    root 1542 1441 0 13:10:56 ? 0:00 /bin/ksh -p /usr/lib/brand/solaris8/s8_boot abc /abc
    zoneadm list -cv
    2 abc ready /abc solaris8 shared
    Thanks
    Edited by: muvvas on Apr 30, 2012 2:25 PM

    moved the solaris 8 branded zone to other server.their its working fine.sorry for late reply.

  • VisualVM CPU Sampling not available - Failed to create JMX connection

    Hello everyone,
    I'm trying to sample my CPU but when I open the application it has failed to connect to the JMX connection.
    I'm running Centos 6
    Java 7 SDK
    Localhost (Not remote)
    Any advice would be fantastic.

    I have installed the latest JDK.
    Launching with the latest VisualVM the application launches successfully. Once I attach it to my .jar application I am told that the CPU thread monitor tool cannot connect. How can I get the JXM to connect so I can monitor my CPU threads?
    Edited by: 954355 on Aug 23, 2012 11:45 AM

  • RMAN duplicate target database for standby from active fails to create newname for system tablespace/datafile

    When executing 'duplicate target database for standby from active'  the system tablespace/datafile (datafile 1)  is not cloned.  All other datafiles clone successfully.  The RMAN process aborts with the following errors while attempting to clone the system tablespace/datafile.
    ORA-19558: error de-allocating device
    ORA-19557: device error, device type: DISK, device name:
    ORA-17627: ORA-01041: internal error. hostdef extension doesn't exist
    ORA-17627: ORA-01041: internal error. hostdef extension doesn't exist
    ORA-03135: connection lost contact
    Here are the details:
    Primary is 11.2.0.2 RAC database  on an Exadata platform
    Standby is 11.2.0.2 Single Instance database (same patch level as primary) on a Red Hat Linux box
    This is an ASM to ASM duplication.
    This is not unique to this database.  We tried another database and go the same behavior - all datafiles clone successfully with the exception of the system tablespace/datafile.
    We have traced the RMAN execution and it seems to fail when it is trying to assign a NEWNAME to the system tablespace/datafile.
    We even issued an explicit SET NEWNAME command but RMAN ignored it.
    We also shutdown the primary and started is up in mount mode thinking that something had ahold of the System Tablespace/datafile.
    We also opened up the network firewall to allow permit any,any traffic.
    We increased the max_server_processes
    and added TCP.NODELAY=yes to the sqlnet.ora file.
    There seems to be some artifact present in our Primary System tablespace/data file that is preventing it form being cloned.
    checked all alert files grid, asm,  and dbhome - no abnormal messages.
    We are in the process of restoring the database from a backup but we would prefer to get this working using the 'Active Database' methodology

    I successfully created the standby database using RMAN backup and recovery.
    I started the managed recovery.  Archive logs are being sent from the primary to the standby ( I can see them in ASM), but the standby is not applying them.
    I get the following messages in the standby alert log...
    Fetching gap sequence in thread 2, gap sequence 154158-154257
    Tue Nov 26 16:19:58 2013
    Using STANDBY_ARCHIVE_DEST parameter default value as USE_DB_RECOVERY_FILE_DEST
    Using STANDBY_ARCHIVE_DEST parameter default value as USE_DB_RECOVERY_FILE_DEST
    Tue Nov 26 16:20:01 2013
    Fetching gap sequence in thread 2, gap sequence 154158-154257
    Tue Nov 26 16:20:11 2013
    Fetching gap sequence in thread 2, gap sequence 154158-154257
    Tue Nov 26 16:20:22 2013
    Fetching gap sequence in thread 2, gap sequence 154158-154257
    Tue Nov 26 16:20:32 2013
    Fetching gap sequence in thread 2, gap sequence 154158-154257
    I don't see any MRP processes:
    select process,
    status,
        thread#,
        sequence#,
       block#,
      blocks
      7     from v$managed_standby;
    PROCESS   STATUS          THREAD#  SEQUENCE#     BLOCK#     BLOCKS
    ARCH      CLOSING               2     154363          1        132
    ARCH      CONNECTED             0          0          0          0
    ARCH      CONNECTED             0          0          0          0
    ARCH      CONNECTED             0          0          0          0
    ARCH      CONNECTED             0          0          0          0
    ARCH      CONNECTED             0          0          0          0
    ARCH      CONNECTED             0          0          0          0
    ARCH      CONNECTED             0          0          0          0
    RFS       IDLE                  0          0          0          0
    RFS       IDLE                  1     145418        121          1
    RFS       IDLE                  0          0          0          0
    PROCESS   STATUS          THREAD#  SEQUENCE#     BLOCK#     BLOCKS
    RFS       IDLE                  0          0          0          0
    12 rows selected.
    SQL>  SELECT THREAD#, SEQUENCE#, APPLIED FROM V$ARCHIVED_LOG;
       THREAD#  SEQUENCE# APPLIED
             2     154356 NO
             2     154357 NO
             1     145411 NO
             2     154358 NO
             2     154360 NO
             2     154361 NO
             1     145414 NO
             1     145415 NO
             2     154362 NO
             2     154363 NO
             1     145416 NO
    11 rows selected.
    I do have the archive logs that cover sequences 154158-154257
    Crosschecked 38 objects
    Crosschecked 62 objects
    Finished implicit crosscheck backup at 26-NOV-13
    Starting implicit crosscheck copy at 26-NOV-13
    using channel ORA_DISK_1
    using channel ORA_DISK_2
    Crosschecked 2 objects
    archived log file name=+RECO_XORA/nmuasb00/archivelog/2013_11_26/thread_2_seq_154377.344.832521989 RECID=29 STAMP=832521990
    validation succeeded for archived log
    archived log file name=+RECO_XORA/nmuasb00/archivelog/2013_11_26/thread_2_seq_154378.346.832521991 RECID=31 STAMP=832521993
    Crosschecked 31 objects

  • Can not get MySQL to work from a System call

    With this code I can get MySQL to launch but does not recognize it as a valid statement in my C# program. It just shows prints out its help file:
    System("Mysql –h localhost –u me –password=pw < LoadDB.cmd");
    Solved!
    Go to Solution.

    Hey erdc3,
    It appears that the System() command has been replaced with the Process.Start() command in C#. Here's an MSDN resource page on that command: 
    http://msdn.microsoft.com/en-us/library/aa326952(v=vs.71).aspx
    I'd suggest trying that command. If you still have problems getting it to work, let us know!
    Daniel E.
    TestStand Product Support Engineer
    National Instruments

  • Imac g3 cd drive reconized but not booting

    Hi i just got a imac G3 tray loadin and i tried installing a game on it. It saw the cd drive is reconized but the disc is not appering on the desktop. the same thing happens when i try to install a operating system It will not boot the disc. But on system profiler the cd drive is reconized but it says no media

    Try a disc cleaner.
    Robert

  • IMovie - Black Screen - Scrambled Boot Screen - Mac not booting: I got it somehow fixed

    Hi there,
    I am not sure if its a Mavericks issue, but I think I should report somewhere about it:
    I have a Early 2011 MacBook Pro and upgraded it yesterday to Mavericks. I played a bit around with the new iMovie today, and suddendly the display turned black. I did a hard reset and encountered a scambled boot screen. I saw the Apple logo with wired grey lines. And the Mac didn't boot. I tried everyting: Reset PRAM/NVRAM and all other magic tricks out there. Diagnostics was not booting, the same as the Recovery system. I even tried to boot Windows7 from the bootcamp partition, but only got saw a half windows logo totally pixeled. I also tried to connect an external Display: nothing working.
    For me, the diagnostics was clear: ****, the logics board was fried. Especially the graphics gard.
    But something was strange for me: My machine was running smooth for 2 1/2 years, and 1 day after installating Mavericks it kills itself? ***?
    And guess what: After the 1001st attempt to boot, playing around with all available boot shortcuts, I just noticed the boot screen looked okay again. And the machine booted. The last thing I was doing was doing verbose boot (holding shift, then holding shift+v).
    I have no idea what happened, but I am happy its back to normal. And I hope it will not happen again in a few minutes. If so, I will report. If not, be happy to find something when you google for it. And if you work for Apple, please tell me what the **** happened and fix it. I am scared now to ever start iMovie again.

    Could be your monitor power supply is going. could also be 10.6.6 so first try to get back to a OSX which did not give you problems.

Maybe you are looking for