RHEL4U4 server hang up once I start guest VM

Hi,
My RHEL4U4 server hang up once I start VM with command xm create vm.cfg
Environment:
OS: RHEL4U4
Xen Kernel: xen-3.1.0-13(xen-release-0-99.7), which was installed manually by myself
xen_caps : xen-3.0-x86_32p hvm-3.0-x86_32 hvm-3.0-x86_32p
cfg file like:
builder = 'hvm'
device_model = '/usr/lib/xen/bin/qemu-dm'
disk = ['file:/OVS/running_pool/VM_NAME/System.img,hda,w',
+'file:/OVS/running_pool/VM_NAME/disk01.img,hdd,w',+
+',hdc:cdrom,r',+
+]+
kernel = '/usr/lib/xen/boot/hvmloader'
memory = '2048'
name = 'VM_NAME'
on_crash = 'restart'
on_reboot = 'restart'
pae = 1
serial = 'pty'
vcpus = 1
vif = ['bridge=xenbr0,mac=XX:XX:XX:XX,type=ioemu']
vnc = 1
vncconsole = 1
vnclisten = '0.0.0.0'
vncpasswd = '********'
vncunused = 1
As this VM image was copied from another OVS2.1 machine(xen_caps: xen-3.0-x86_64 xen-3.0-x86_32p hvm-3.0-x86_32 hvm-3.0-x86_32p hvm-3.0-x86_64, not sure whether this is the root cause)
Is there any way to resolve the problem?

802680 wrote:
OS: RHEL4U4
Xen Kernel: xen-3.1.0-13(xen-release-0-99.7), which was installed manually by myselfWe don't support Xen on RHEL4 at all. And this version is really old. You should run Oracle VM 2.2.2 (Xen 3.4) or Oracle VM 3.0 (Xen 4.0) instead.

Similar Messages

  • Why does the server hang while starting up or the "csdb recover" hang when it is run?

    Sometimes after iPlanet Calendar Server crashes, the server hangs during
    startup or the csdb
    utility hangs when I execute the recover
    command.
    <P>
    One possible solution is to delete all of the .share
    files in the same directory as the
    Calendar Server database. In most cases, the server will successfully start up
    again.

    When you start up in Safe Mode various things aren't loaded at startup, Bob.
    Have a thinbk about which of the following may be involved in your own case:
    It forces a directory check of the startup volume.
    It loads only required kernel extensions (some of the items in /System/Library/Extensions).
    It runs only Apple-installed startup items (some of the items in /Library/StartupItems and /System/Library/StartupItems - and different than login items).
    Mac OS X 10.4 Tiger only: It disables all fonts other than those in /System/Library/Fonts .
    Mac OS X 10.4 Tiger only: It moves to the Trash all font caches normally stored in /Library/Caches/com.apple.ATS/(uid)/ , where (uid) is a user ID number such as 501.
    Mac OS X 10.4 Tiger only: It disables any Login Items.
    (from http://docs.info.apple.com/article.html?artnum=107392)
    Have a look at http://docs.info.apple.com/article.html?artnum=106464 for some more possibilities.
    You may find it worth while using System Prefernces/Accounts to creat a new admin user account and see if the problem persists with it. THis may help you narrow down the problem further.
    Cheers
    Rod

  • Server hangs up when tryin to read object Urgent Help Plz

    Hi,
    I've been working on a client-server model for a while, I've tested my applicaction a thousand of times locally (I mean, server and serveral clients running on the same machine) and it's ok, now I finally run server in a remote host and I find it rarely works fine, most of the times server hangs up when tryin to read objects I dont know why.
    this is the part of the server-code where the problem begins:
    public int EscucharSocket(){
            Socket cliente = null;
            System.out.println("Servidor en escucha...\n");
            while(true){
                try{
                    cliente = SocketS.accept();
                    //I get client's ip and port
                    String ip = cliente.getInetAddress().getHostAddress();
                    int puerto = cliente.getPort();
                    //After the conexion is made, server reads a signature to
                    //identify the client
                   //in function process I check if the signature is valid
                   //SignedData is a class where I wrap the signiture (obviously
                   //it implements Serializable interface
                   process((SignedData)le.LeerObject(cliente));
                   //Other things done here
                catch (Exception e) { }
    }le is a class I use to read,write data to the socket, this is the code of the LeerObject function
    public Object LeerObject(Socket c) throws Exception {
           //Here Is where the server hangs up
            ObjectInputStream b = new ObjectInputStream(c.getInputStream());
            return b.readObject();
    }As I wrote when running locally, there is no problem, but when I have a remote host, that happens
    Any help or idea?

    Hi again, thnx for your help
    I modified my LE class so I just create a couple of Input/Output Streams per client (on server n client program), this is now the complete code of the class:
    import java.net.*;
    import java.io.*;
    public class LE {
        DataOutputStream     dos;
        ObjectOutputStream  oos;
        DataInputStream        dis;
        ObjectInputStream     ois;
        //Streams are created just once in the constructor
        public LE (Socket s) throws Exception {
            dos = new DataOutputStream(s.getOutputStream());
             //I'm not sure if this flush has any sense
            dos.flush();
            oos = new ObjectOutputStream (s.getOutputStream());
            oos.flush();
            dis = new DataInputStream(s.getInputStream());
            ois = new ObjectInputStream (s.getInputStream());
        public void EscribirByte(byte datos[],int len) throws Exception {
            dos.write(datos,0,len);
            dos.flush();
        public void EscribirString(String dato) throws Exception {
            dos.writeUTF(dato);
            dos.flush();
        public void EscribirChar(char dato) throws Exception {
            dos.writeChar(dato);
            dos.flush();       
        public void EscribirInt(int dato) throws Exception {
            dos.writeInt(dato);
            dos.flush();
        public void EscribirLong(long dato) throws Exception {
            dos.writeLong(dato);
            dos.flush();
        public void EscribirObject(Object dato) throws Exception {
            oos.writeObject(dato);
            oos.flush();
        public String LeerString() throws Exception {       
            return dis.readUTF();
        public int LeerInt() throws Exception {       
            return dis.readInt();
        public char LeerChar() throws Exception {       
            return dis.readChar();
        public long LeerLong() throws Exception {       
            return dis.readLong();
        public Object LeerObject() throws Exception {       
            return ois.readObject();
    }part of code of server and client, where the conexion is made and the LE object is created
    Server:
    try{
           cliente = SocketS.accept();               
           //After accepting the conexion the LE object is created
            le = new LE(cliente);
            //I get client's ip and port
            String ip = cliente.getInetAddress().getHostAddress();
            int puerto = cliente.getPort();
            //Object wraping signature is read        
            process((SignedData)le.LeerObject());
            //other control operations doing here
            //A thread is created to receive requests from client
            //(reference to LE object is passed to the thread
           ConexionCliente c = new ConexionCliente (cliente,id_persona,id_grupo,tipo_usuario,backup,le);                               
            //thread is started
            c.start();
    catch (Exception e) {
        try {
            cliente.close();
        catch(Exception e2){}
    }Cliente code:
    try{
       //it connects to the server
       c=new Socket(host,puerto);
       //After accepting the conexion the LE object is created         
       le = new LE(c);
       //other things made here to genarate SignedData Object
      //It sends signed data object
      le.EscribirObject(Data);          
      //A thread is created and started to receive messages from server
      //reference to object LE is sent to the thread to avoid the need of
      //creating another
      new ConexionServidorClient(c,id_persona,ci,le).start();
      return 1;
    catch(Exception e) {
       return -1;
    }after the change, itworks a little better, but still most of the times server hangs up, I can't make server operational yet and I dont have any idea for solving this issue

  • WebLogic Server Hang

    My WebLogic Server hang up sometime. The platform is IBM AIX, weblogic 8.1 with sp3
    The following is the thread dump:
    NULL ------------------------------------------------------------------------
    0SECTION TITLE subcomponent dump routine
    NULL ===============================
    1TISIGINFO signal 3 received
    1TIDATETIME Date: 2007/04/26 at 11:13:10
    1TIFILENAME Javacore filename: /var/bea/domains/TazDomain/javacore524292.1177600390.txt
    NULL ------------------------------------------------------------------------
    0SECTION XHPI subcomponent dump routine
    NULL ==============================
    1XHTIME Thu Apr 26 11:13:10 2007
    1XHSIGRECV SIGQUIT received at 0x0 in <unknown>.
    1XHFULLVERSION J2RE 1.4.2 IBM AIX build ca142-20060421 (SR5)
    NULL
    1XHCURRENTTHD Current Thread Details
    NULL ----------------------
    2XHCURRSYSTHD "Signal dispatcher" sys_thread_t:0x74427A28
    3XHNATIVESTACK Native Stack
    NULL ------------
    3XHSTACKLINEERR unavailable - stack address not valid
    1XHOPENV Operating Environment
    NULL ---------------------
    2XHHOSTNAME Host : rcirs050:10.1.93.20
    2XHOSLEVEL OS Level : AIX 5.3.0.0
    2XHCPUS Processors -
    3XHCPUARCH Architecture : POWER_PC (impl: unknown, ver: unknown)
    3XHNUMCPUS How Many : 2
    3XHCPUSENABLED Enabled : 2
    NULL
    1XHUSERLIMITS User Limits (in bytes except for NOFILE and NPROC) -
    NULL -----------
    2XHUSERLIMIT RLIMIT_FSIZE : 1073741312
    2XHUSERLIMIT RLIMIT_DATA : 2147483645
    2XHUSERLIMIT RLIMIT_STACK : 33554432
    2XHUSERLIMIT RLIMIT_CORE : 1073741312
    2XHUSERLIMIT RLIMIT_NOFILE : 1024
    2XHLIMIT NPROC(max) : 128
    NULL
    1XHPAGESPACES Page Space (in blocks) -
    NULL ----------
    2XHPAGESPACE /dev/hd6: size=262144, free=261912
    2XHPAGESPACE /dev/paging03: size=507904, free=507672
    2XHPAGESPACE /dev/paging00: size=262144, free=261917
    2XHPAGESPACE /dev/paging01: size=262144, free=261903
    2XHPAGESPACE /dev/paging02: size=262144, free=261901
    2XHPAGESPACE /dev/paging04: size=262144, free=260986
    2XHPAGESPACE /dev/paging07: size=262144, free=261911
    2XHPAGESPACE /dev/paging06: size=262144, free=261913
    2XHPAGESPACE /dev/paging05: size=262144, free=261913
    NULL
    1XHSIGHANDLERS JVM Signal Handlers
    NULL -------------------
    2XHSIGHANDLER SIGHUP : ignored
    2XHSIGHANDLER SIGINT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGQUIT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGILL : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGTRAP : JITSigTrapHandler (libjitc.a)
    2XHSIGHANDLER SIGABRT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGEMT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGFPE : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGBUS : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGSEGV : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGSYS : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGPIPE : ignored
    2XHSIGHANDLER SIGTERM : intrDispatchMD (libhpi.a)
    NULL
    1XHSIGHANDLERS Chained Signal Handlers
    NULL -----------------------
    2XHSIGHANDLER SIGHUP : ignored
    2XHSIGHANDLER SIGINT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGQUIT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGILL : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGTRAP : JITSigTrapHandler (libjitc.a)
    2XHSIGHANDLER SIGABRT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGEMT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGFPE : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGBUS : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGSEGV : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGSYS : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGPIPE : ignored
    2XHSIGHANDLER SIGTERM : intrDispatchMD (libhpi.a)
    NULL
    1XHENVVARS Environment Variables
    NULL ---------------------
    2XHENVVAR _=/usr/java14/bin/java
    2XHENVVAR JAVA_VENDOR=IBM
    2XHENVVAR LANG=C
    2XHENVVAR PRODUCTION_MODE=
    2XHENVVAR LOGIN=qatadm
    2XHENVVAR CLASSPATHSEP=:
    2XHENVVAR VISUAL=vi
    2XHENVVAR POINTBASE_HOME=/opt/bea/weblogic81/common/eval/pointbase
    2XHENVVAR PATH=/opt/bea/weblogic81/server/bin:/usr/java14/jre/bin:/usr/java14/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:/home/qatadm/bin:/usr/bin/X11:/sbin:.:/usr/java14/bin
    2XHENVVAR JAVA_VM=
    2XHENVVAR LC__FASTMSG=true
    2XHENVVAR POINTBASE_CLASSPATH=:/opt/bea/weblogic81/common/eval/pointbase/lib/pbserver44.jar:/opt/bea/weblogic81/common/eval/pointbase/lib/pbclient44.jar
    2XHENVVAR CLASSPATH=/opt/bea/weblogic81/server/ext/jdbc/oracle/920/ojdbc14.jar:/usr/java14/lib/tools.jar:/opt/bea/weblogic81/server/lib/weblogic_sp.jar:/opt/bea/weblogic81/server/lib/weblogic.jar::/opt/bea/weblogic81/common/eval/pointbase/lib/pbserver44.jar:/opt/bea/weblogic81/common/eval/pointbase/lib/pbclient44.jar:/usr/java14/jre/lib/rt.jar:/opt/bea/weblogic81/server/lib/webservices.jar:
    2XHENVVAR LOGNAME=qatadm
    2XHENVVAR MAIL=/usr/spool/mail/qatadm
    2XHENVVAR POINTBASE_TOOLS=/opt/bea/weblogic81/common/eval/pointbase/lib/pbtools44.jar
    2XHENVVAR LOCPATH=/usr/lib/nls/loc
    2XHENVVAR PS1=rcirs050:$PWD>
    2XHENVVAR PATHSEP=:
    2XHENVVAR USER=qatadm
    2XHENVVAR AUTHSTATE=compat
    2XHENVVAR BEA_HOME=/opt/bea
    2XHENVVAR DCE_USE_WCHAR_NAMES=1
    2XHENVVAR SHELL=/usr/bin/ksh
    2XHENVVAR ODMDIR=/etc/objrepos
    2XHENVVAR JAVA_HOME=/usr/java14
    2XHENVVAR TIMEOUT=900
    2XHENVVAR TMOUT=900
    2XHENVVAR HOME=/home/qatadm
    2XHENVVAR MEM_ARGS=-Xms512m -Xmx1024m
    2XHENVVAR WEBLOGIC_CLASSPATH=/usr/java14/lib/tools.jar:/opt/bea/weblogic81/server/lib/weblogic_sp.jar:/opt/bea/weblogic81/server/lib/weblogic.jar
    2XHENVVAR TERM=dtterm
    2XHENVVAR MAILMSG=[YOU HAVE NEW MAIL]
    2XHENVVAR PWD=/var/bea/domains/TazDomain
    2XHENVVAR TZ=EST5EDT
    2XHENVVAR WL_HOME=/opt/bea/weblogic81
    2XHENVVAR AIXTHREAD_SCOPE=S
    2XHENVVAR A__z=! LOGNAME="*TMOUT
    2XHENVVAR _IBM_JAVA_PIPE_524292=
    2XHENVVAR IBM_JVM_LIBPATH_OLD_VALUE=/opt/bea/weblogic81/server/lib/aix
    2XHENVVAR IBM_JVM_LIBPATH_NEW_VALUE=/usr/java14/jre/bin:/usr/java14/jre/bin/classic:/usr/java14/jre/bin:/opt/bea/weblogic81/server/lib/aix
    2XHENVVAR IBM_JVM_CHANGED_ENVVARS_524292=LIBPATH,LDR_CNTRL
    2XHENVVAR IBM_JVM_LDR_CNTRL_NEW_VALUE=MAXDATA=0XA0000000@DSA
    2XHENVVAR LDR_CNTRL=MAXDATA=0XA0000000@DSA
    2XHENVVAR NLSPATH=/usr/lib/nls/msg/%L/%N:/usr/lib/nls/msg/%L/%N.cat
    2XHENVVAR LIBPATH=/usr/java14/jre/bin:/usr/java14/jre/bin/classic:/usr/java14/jre/bin:/opt/bea/weblogic81/server/lib/aix
    2XHENVVAR _IBM_ENV_INITIAL_524292=805345384
    2XHENVVAR IBM_JAVA_COMMAND_LINE=/usr/java14/bin/java -Xms512m -Xmx1024m -Duser.timezone=America/New_York -Dweblogic.Name=TazServer -Dweblogic.ProductionModeEnabled= -Djava.security.policy=/opt/bea/weblogic81/server/lib/weblogic.policy weblogic.Server
    NULL
    1XHLOADEDLIBS Loaded Libraries (sizes in bytes)
    NULL ---------------------------------
    2XHLIBNAME /opt/bea/weblogic81/server/lib/aix/libmuxer.so
    3XHLIBSIZE filesize : 20757
    3XHLIBSTART text start : 0xD0B88000
    3XHLIBLDSIZE text size : 0x282E
    3XHLIBLDORG data start : 0xF0617CF4
    3XHLIBLDDATASZ data size : 0x2AC
    2XHLIBNAME /usr/java14/jre/bin/libnio.a
    3XHLIBSIZE filesize : 64305
    3XHLIBSTART text start : 0xD11F5000
    3XHLIBLDSIZE text size : 0x8EF0
    3XHLIBLDORG data start : 0xF0615AE0
    3XHLIBLDDATASZ data size : 0x594
    2XHLIBNAME /opt/bea/weblogic81/server/lib/aix/libweblogicunix1.so
    3XHLIBSIZE filesize : 14536
    3XHLIBSTART text start : 0xD0B86000
    3XHLIBLDSIZE text size : 0x1B90
    3XHLIBLDORG data start : 0xF0614484
    3XHLIBLDDATASZ data size : 0xD8
    2XHLIBNAME /usr/java14/jre/bin/libnet.a
    3XHLIBSIZE filesize : 137885
    3XHLIBSTART text start : 0xD15D7000
    3XHLIBLDSIZE text size : 0x161FF
    3XHLIBLDORG data start : 0xF05DE3D8
    3XHLIBLDDATASZ data size : 0x968
    2XHLIBNAME /usr/java14/jre/bin/libjitc.a
    3XHLIBSIZE filesize : 2814544
    3XHLIBSTART text start : 0xD252E000
    3XHLIBLDSIZE text size : 0x23EE7B
    3XHLIBLDORG data start : 0xF0962B68
    3XHLIBLDDATASZ data size : 0x1A984
    2XHLIBNAME /usr/lib/security/DCE
    3XHLIBSIZE filesize : 27634
    3XHLIBSTART text start : 0xD0B7A000
    3XHLIBLDSIZE text size : 0x6BF2
    3XHLIBLDORG data start : 0xF05CEA38
    3XHLIBLDDATASZ data size : 0x2BA0
    2XHLIBNAME /usr/java14/jre/bin/libzip.a
    3XHLIBSIZE filesize : 109746
    3XHLIBSTART text start : 0xD11E1000
    3XHLIBLDSIZE text size : 0x135E2
    3XHLIBLDORG data start : 0xF05DC468
    3XHLIBLDDATASZ data size : 0x1918
    2XHLIBNAME /usr/java14/jre/bin/classic/libcore.a
    3XHLIBSIZE filesize : 136713
    3XHLIBSTART text start : 0xD11CB000
    3XHLIBLDSIZE text size : 0x15248
    3XHLIBLDORG data start : 0xF05DA0E8
    3XHLIBLDDATASZ data size : 0x1620
    2XHLIBNAME /usr/java14/jre/bin/libjava.a
    3XHLIBSIZE filesize : 221158
    3XHLIBSTART text start : 0xD11AB000
    3XHLIBLDSIZE text size : 0x1FEB2
    3XHLIBLDORG data start : 0xF05D88F8
    3XHLIBLDDATASZ data size : 0x16F8
    2XHLIBNAME /usr/java14/jre/bin/libhpi.a
    3XHLIBSIZE filesize : 205732
    3XHLIBSTART text start : 0xD118C000
    3XHLIBLDSIZE text size : 0x1EE0E
    3XHLIBLDORG data start : 0xF06045A0
    3XHLIBLDDATASZ data size : 0xF8D0
    2XHLIBNAME /usr/java14/jre/bin/libxhpi.a
    3XHLIBSIZE filesize : 14654
    3XHLIBSTART text start : 0xD0B84000
    3XHLIBLDSIZE text size : 0x1B52
    3XHLIBLDORG data start : 0xF05D7290
    3XHLIBLDDATASZ data size : 0x2C8
    2XHLIBNAME /usr/java14/jre/bin/libdbgmalloc.a
    3XHLIBSIZE filesize : 15267
    3XHLIBSTART text start : 0xD0B81000
    3XHLIBLDSIZE text size : 0x217C
    3XHLIBLDORG data start : 0xF05D6988
    3XHLIBLDDATASZ data size : 0x218
    2XHLIBNAME /usr/java14/jre/bin/libjsig.a
    3XHLIBSIZE filesize : 14412
    3XHLIBSTART text start : 0xD07F8000
    3XHLIBLDSIZE text size : 0x1B24
    3XHLIBLDORG data start : 0xF05D54B0
    3XHLIBLDDATASZ data size : 0x108
    2XHLIBNAME /usr/java14/jre/bin/libute.a
    3XHLIBSIZE filesize : 112768
    3XHLIBSTART text start : 0xD1177000
    3XHLIBLDSIZE text size : 0x14ED9
    3XHLIBLDORG data start : 0xF05D43B0
    3XHLIBLDDATASZ data size : 0x674
    2XHLIBNAME /usr/lib/libdl.a
    3XHLIBSIZE filesize : 5248
    3XHLIBSTART text start : 0xD02E70F8
    3XHLIBLDSIZE text size : 0x1E0
    3XHLIBLDORG data start : 0xF03190F8
    3XHLIBLDDATASZ data size : 0x0
    2XHLIBNAME /usr/java14/jre/bin/sovvm/libjvm.a
    3XHLIBSIZE filesize : 2857303
    3XHLIBSTART text start : 0xD2335000
    3XHLIBLDSIZE text size : 0x1F8E31
    3XHLIBLDORG data start : 0xF0936290
    3XHLIBLDDATASZ data size : 0x2AE10
    2XHLIBNAME /usr/java14/jre/bin/classic/libjvm.a
    3XHLIBSIZE filesize : 117748
    3XHLIBSTART text start : 0xD1169000
    3XHLIBLDSIZE text size : 0xD54B
    3XHLIBLDORG data start : 0xF05D2A90
    3XHLIBLDDATASZ data size : 0xF0C
    2XHLIBNAME /usr/lib/libC.a
    3XHLIBSIZE filesize : 7196428
    3XHLIBSTART text start : 0xD01E7540
    3XHLIBLDSIZE text size : 0x20F6D
    3XHLIBLDORG data start : 0xF0381340
    3XHLIBLDDATASZ data size : 0x6780
    2XHLIBNAME /usr/lib/libC.a
    3XHLIBSIZE filesize : 7196428
    3XHLIBSTART text start : 0xD01CDBC0
    3XHLIBLDSIZE text size : 0x186CC
    3XHLIBLDORG data start : 0xF0377FC0
    3XHLIBLDDATASZ data size : 0x84C9
    2XHLIBNAME /usr/lib/libcrypt.a
    3XHLIBSIZE filesize : 11019
    3XHLIBSTART text start : 0xD01450F8
    3XHLIBLDSIZE text size : 0x846
    3XHLIBLDORG data start : 0xF0316508
    3XHLIBLDDATASZ data size : 0x128
    2XHLIBNAME /usr/lib/libiconv.a
    3XHLIBSIZE filesize : 377727
    3XHLIBSTART text start : 0xD05BF100
    3XHLIBLDSIZE text size : 0x139C1
    3XHLIBLDORG data start : 0xF0252C70
    3XHLIBLDDATASZ data size : 0xA2E4
    2XHLIBNAME /usr/lib/libbsd.a
    3XHLIBSIZE filesize : 61862
    3XHLIBSTART text start : 0xD02784C0
    3XHLIBLDSIZE text size : 0x7D2F
    3XHLIBLDORG data start : 0xF0213A30
    3XHLIBLDDATASZ data size : 0x13D8
    2XHLIBNAME /usr/lib/libpthreads.a
    3XHLIBSIZE filesize : 1126171
    3XHLIBSTART text start : 0xD010E000
    3XHLIBLDSIZE text size : 0x365C4
    3XHLIBLDORG data start : 0xF0370000
    3XHLIBLDDATASZ data size : 0x4024
    2XHLIBNAME /usr/lib/libpthreads.a
    3XHLIBSIZE filesize : 1126171
    3XHLIBSTART text start : 0xD010A000
    3XHLIBLDSIZE text size : 0x3C52
    3XHLIBLDORG data start : 0xF032D000
    3XHLIBLDDATASZ data size : 0x424A8
    2XHLIBNAME /usr/lib/libC.a
    3XHLIBSIZE filesize : 7196428
    3XHLIBSTART text start : 0xD01AD100
    3XHLIBLDSIZE text size : 0x1FED1
    3XHLIBLDORG data start : 0xF0388D00
    3XHLIBLDDATASZ data size : 0x30F9
    2XHLIBNAME /usr/lib/libc.a
    3XHLIBSIZE filesize : 8270989
    3XHLIBSTART text start : 0xD02F2240
    3XHLIBLDSIZE text size : 0x251155
    3XHLIBLDORG data start : 0xF0278BC0
    3XHLIBLDDATASZ data size : 0x9D340
    NULL
    NULL ------------------------------------------------------------------------
    0SECTION CI subcomponent dump routine
    NULL ============================
    1CIJAVAVERSION J2RE 1.4.2 IBM AIX build ca142-20060421 (SR5)
    1CIRUNNINGAS Running as a standalone JVM
    1CICMDLINE /usr/java14/bin/java -Xms512m -Xmx1024m -Duser.timezone=America/New_York -Dweblogic.Name=TazServer -Dweblogic.ProductionModeEnabled= -Djava.security.policy=/opt/bea/weblogic81/server/lib/weblogic.policy weblogic.Server
    1CIJAVAHOMEDIR Java Home Dir: /usr/java14/jre
    1CIJAVADLLDIR Java DLL Dir: /usr/java14/jre/bin
    1CISYSCP Sys Classpath: /usr/java14/jre/lib/core.jar:/usr/java14/jre/lib/graphics.jar:/usr/java14/jre/lib/security.jar:/usr/java14/jre/lib/server.jar:/usr/java14/jre/lib/xml.jar:/usr/java14/jre/lib/charsets.jar:/usr/java14/jre/classes:/usr/java14/jre/lib/ibmcertpathprovider.jar:/usr/java14/jre/lib/ibmjaaslm.jar:/usr/java14/jre/lib/ibmjcefw.jar:/usr/java14/jre/lib/ibmjgssprovider.jar:/usr/java14/jre/lib/ibmjssefips.jar:/usr/java14/jre/lib/ibmjsseprovider.jar:/usr/java14/jre/lib/ibmorb.jar:/usr/java14/jre/lib/ibmorbapi.jar:/usr/java14/jre/lib/ibmpkcs.jar
    1CIUSERARGS UserArgs:
    2CIUSERARG vfprintf 0x30000D94
    2CIUSERARG -Xms512m
    2CIUSERARG -Xmx1024m
    2CIUSERARG -Duser.timezone=America/New_York
    2CIUSERARG -Dweblogic.Name=TazServer
    2CIUSERARG -Dweblogic.ProductionModeEnabled=
    2CIUSERARG -Djava.security.policy=/opt/bea/weblogic81/server/lib/weblogic.policy
    2CIUSERARG -Dinvokedviajava
    2CIUSERARG -Djava.class.path=/opt/bea/weblogic81/server/ext/jdbc/oracle/920/ojdbc14.jar:/usr/java14/lib/tools.jar:/opt/bea/weblogic81/server/lib/weblogic_sp.jar:/opt/bea/weblogic81/server/lib/weblogic.jar::/opt/bea/weblogic81/common/eval/pointbase/lib/pbserver44.jar:/opt/bea/weblogic81/common/eval/pointbase/lib/pbclient44.jar:/usr/java14/jre/lib/rt.jar:/opt/bea/weblogic81/server/lib/webservices.jar:
    2CIUSERARG vfprintf
    NULL
    1CIJVMMI JVM Monitoring Interface (JVMMI)
    NULL ------------------------
    2CIJVMMIOFF No events are enabled.
    NULL
    NULL ------------------------------------------------------------------------
    0SECTION DC subcomponent dump routine
    NULL ============================
    1DCHEADEREYE Header eye catcher DCST
    1DCHEADERLEN Header length 24
    1DCHEADERVER Header version 1
    1DCHEADERMOD Header modification 0
    1DCINTERFACE DC Interface at 0xF0947FDC with 15 entries
    2DCINTERFACE 1 - dcCString2JavaString 0xF0944A90
    2DCINTERFACE 2 - dcInt642CString 0xF0944A9C
    2DCINTERFACE 3 - dcJavaString2NewCString 0xF0944AA8
    2DCINTERFACE 4 - dcJavaString2CString 0xF0944AB4
    2DCINTERFACE 5 - dcJavaString2NewPlatformString 0xF0944AC0
    2DCINTERFACE 6 - dcJavaString2UTF 0xF0944ACC
    2DCINTERFACE 7 - dcPlatformString2JavaString 0xF0944AE4
    2DCINTERFACE 8 - dcUnicode2UTF 0xF0944AF0
    2DCINTERFACE 9 - dcUnicode2UTFLength 0xF0944AFC
    2DCINTERFACE 10 - dcUTF2JavaString 0xF0944B08
    2DCINTERFACE 11 - dcUTFClassName2JavaString 0xF0944B14
    2DCINTERFACE 12 - dcJavaString2ClassName 0xF0944AD8
    2DCINTERFACE 13 - dcUTF2UnicodeNext 0xF0944B20
    2DCINTERFACE 14 - dcVerifyUTF8 0xF0944B2C
    2DCINTERFACE 15 - dcDumpRoutine 0xF0944B38
    1DCARRAYINFO Array info at 0xF09384A0 with 16 entries
    2DCARRAYINFO 1 - index 0 signature 0 name N/A factor 0
    2DCARRAYINFO 2 - index 0 signature 0 name N/A factor 0
    2DCARRAYINFO 3 - index 2 signature L name class[] factor 4
    2DCARRAYINFO 4 - index 0 signature 0 name N/A factor 0
    2DCARRAYINFO 5 - index 4 signature Z name bool[] factor 1
    2DCARRAYINFO 6 - index 5 signature C name char[] factor 2
    2DCARRAYINFO 7 - index 6 signature F name float[] factor 4
    2DCARRAYINFO 8 - index 7 signature D name double[] factor 8
    2DCARRAYINFO 9 - index 8 signature B name byte[] factor 1
    2DCARRAYINFO 10 - index 9 signature S name short[] factor 2
    2DCARRAYINFO 11 - index 10 signature I name int[] factor 4
    2DCARRAYINFO 12 - index 11 signature J name long[] factor 8
    2DCARRAYINFO 13 - index 0 signature 0 name uint[] factor 0
    2DCARRAYINFO 14 - index 0 signature 0 name uint1[] factor 0
    2DCARRAYINFO 15 - index 0 signature 0 name uint2[] factor 0
    2DCARRAYINFO 16 - index 0 signature 0 name uint3[] factor 0
    NULL ------------------------------------------------------------------------
    0SECTION DG subcomponent dump routine
    NULL ============================
    1DGTRCENABLED Trace enabled: Yes
    2DGTRCTYPE Trace: Internal
    2DGTRCBUFFERS Buffer specification: 8k
    2DGTRCBUFALLOC Buffers allocated: 0
    2DGTRCBUFUSED Buffers in use: 0
    1DGJDUMPBUFF Javadump buffer size (allocated): 2621440
    NULL ------------------------------------------------------------------------
    0SECTION ST subcomponent dump routine
    NULL ============================
    1STGCMODES Resettable GC: No
    1STGCMODES Concurrent GC: No
    1STCURHBASE Current Heap Base: 0x300601FC
    1STCURHLIM Current Heap Limit: 0x5005FBFC
    1STMWHBASE Middleware Heap Base: 0x300601FC
    1STMWHLIM Middleware Heap Limit: 0x5005FBFC
    1STGCHELPERS Number of GC Helper Threads: 1
    1STJVMOPTS -Xconcurrentlevel: 0
    1STJVMOPTS -Xconcurrentbackground: 0
    1STGCCTR GC Counter: 42
    1STAFCTR AF Counter: 42
    1STHEAPFREE Bytes of Heap Space Free: 190d3b88
    1STHEAPALLOC Bytes of Heap Space Allocated: 1ffffa00
    1STSMBASE SM Base: 0x0
    1STSMEND SM End: 0x0
    1STPAMSTART PAM Start: 0x0
    1STPAMEND PAM End: 0x0
    1STCOMACTION Compact Action: 0
    NULL ------------------------------------------------------------------------
    0SECTION XE subcomponent dump routine
    NULL ============================
    1XETHRESHOLD MMI threshold for java methods is set to 1250
    1XEJITINIT JIT is initialized
    1XEJVMPIOFF JVMPI is not activated
    1XEJNITHRESH MMI threshold for JNI methods is set to 0
    1XETRCHIS Trace history length is set to 4
    1XEJITDUMP JIT dump routine is not yet implemented.
    NULL ------------------------------------------------------------------------
    0SECTION LK subcomponent dump routine
    NULL ============================
    NULL
    1LKPOOLINFO Monitor pool info:
    2LKPOOLINIT Initial monitor count: 32
    2LKPOOLEXPNUM Minimum number of free monitors before expansion: 5
    2LKPOOLEXPBY Pool will next be expanded by: 81
    2LKPOOLTOTAL Current total number of monitors: 162
    2LKPOOLFREE Current number of free monitors: 42
    NULL
    1LKMONPOOLDUMP Monitor Pool Dump (flat & inflated object-monitors):
    2LKMONINUSE sys_mon_t:0x3003EC78 infl_mon_t: 0x3003E6E8:
    3LKMONOBJECT java.lang.ref.Reference$Lock@300E02B0/300E02B8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "Reference Handler" (0x744B7D28)
    2LKMONINUSE sys_mon_t:0x3003ED28 infl_mon_t: 0x3003E714:
    3LKMONOBJECT java.lang.ref.ReferenceQueue$Lock@300DFFE8/300DFFF0: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "Finalizer" (0x745409A8)
    2LKMONINUSE sys_mon_t:0x3003EDD8 infl_mon_t: 0x3003E740:
    3LKMONOBJECT java.util.TaskQueue@311299D0/311299D8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "Thread-1" (0x75F054A8)
    2LKMONINUSE sys_mon_t:0x3003EE88 infl_mon_t: 0x3003E76C:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9A60/300C9A68: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '0' for queue: 'weblogic.kernel.Default'" (0x765659A8)
    2LKMONINUSE sys_mon_t:0x3003EF38 infl_mon_t: 0x3003E798:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C99C0/300C99C8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '1' for queue: 'weblogic.kernel.Default'" (0x765693A8)
    2LKMONINUSE sys_mon_t:0x3003EFE8 infl_mon_t: 0x3003E7C4:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9920/300C9928: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '2' for queue: 'weblogic.kernel.Default'" (0x76569928)
    2LKMONINUSE sys_mon_t:0x3003F098 infl_mon_t: 0x3003E7F0:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9880/300C9888: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '3' for queue: 'weblogic.kernel.Default'" (0x76572BA8)
    2LKMONINUSE sys_mon_t:0x3003F148 infl_mon_t: 0x3003E81C:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C97E0/300C97E8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '4' for queue: 'weblogic.kernel.Default'" (0x767971A8)
    2LKMONINUSE sys_mon_t:0x3003F1F8 infl_mon_t: 0x3003E848:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9740/300C9748: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '5' for queue: 'weblogic.kernel.Default'" (0x7681EBA8)
    2LKMONINUSE sys_mon_t:0x3003F2A8 infl_mon_t: 0x3003E874:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C96A0/300C96A8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '6' for queue: 'weblogic.kernel.Default'" (0x768A65A8)
    2LKMONINUSE sys_mon_t:0x3003F358 infl_mon_t: 0x3003E8A0:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9600/300C9608: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '7' for queue: 'weblogic.kernel.Default'" (0x7692E028)
    2LKMONINUSE sys_mon_t:0x3003F408 infl_mon_t: 0x3003E8CC:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9560/300C9568: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '8' for queue: 'weblogic.kernel.Default'" (0x769B5A28)
    2LKMONINUSE sys_mon_t:0x3003F4B8 infl_mon_t: 0x3003E8F8:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C94C0/300C94C8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '9' for queue: 'weblogic.kernel.Default'" (0x76A3D4A8)
    2LKMONINUSE sys_mon_t:0x3003F568 infl_mon_t: 0x3003E924:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9420/300C9428: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '10' for queue: 'weblogic.kernel.Default'" (0x76AC4EA8)
    2LKMONINUSE sys_mon_t:0x3003F618 infl_mon_t: 0x3003E950:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9380/300C9388: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '11' for queue: 'weblogic.kernel.Default'" (0x76B4C8A8)
    2LKMONINUSE sys_mon_t:0x3003F6C8 infl_mon_t: 0x3003E97C:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C92E0/300C92E8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '12' for queue: 'weblogic.kernel.Default'" (0x76BD4328)
    2LKMONINUSE sys_mon_t:0x3003F778 infl_mon_t: 0x3003E9A8:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9240/300C9248: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '13' for queue: 'weblogic.kernel.Default'" (0x76C5BD28)
    2LKMONINUSE sys_mon_t:0x3003F828 infl_mon_t: 0x3003E9D4:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C91A0/300C91A8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '14' for queue: 'weblogic.kernel.Default'" (0x76CE3728)
    2LKMONINUSE sys_mon_t:0x3003F988 infl_mon_t: 0x3003EA2C:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9060/300C9068: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '1' for queue: 'weblogic.kernel.System'" (0x76DF2BA8)
    2LKMONINUSE sys_mon_t:0x3003FA38 infl_mon_t: 0x3003EA58:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8FC0/300C8FC8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '2' for queue: 'weblogic.kernel.System'" (0x76E7A628)
    2LKMONINUSE sys_mon_t:0x3003FAE8 infl_mon_t: 0x3003EA84:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8F20/300C8F28: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '3' for queue: 'weblogic.kernel.System'" (0x76F02028)
    2LKMONINUSE sys_mon_t:0x3003FB98 infl_mon_t: 0x3003EAB0:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8E80/300C8E88: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '4' for queue: 'weblogic.kernel.System'" (0x76F89A28)
    2LKMONINUSE sys_mon_t:0x3003FC48 infl_mon_t: 0x3003EADC:
    3LKMONOBJECT weblogic.time.common.internal.TimeTable@32EB9198/32EB91A0: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "weblogic.time.TimeEventGenerator" (0x77013D28)
    2LKMONINUSE sys_mon_t:0x3003FCF8 infl_mon_t: 0x3003EB08:
    3LKMONOBJECT java.lang.Object@32F56538/32F56540: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "weblogic.security.SpinnerRandomSource" (0x770CC3A8)
    2LKMONINUSE sys_mon_t:0x3003FDA8 infl_mon_t: 0x3003EB34:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8CD0/300C8CD8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '0' for queue: 'weblogic.admin.HTTP'" (0x770E4428)
    2LKMONINUSE sys_mon_t:0x3003FE58 infl_mon_t: 0x3003EB60:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8C30/300C8C38: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '1' for queue: 'weblogic.admin.HTTP'" (0x770E4A28)
    2LKMONINUSE sys_mon_t:0x3003FF08 infl_mon_t: 0x3003EB8C:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8B90/300C8B98: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '0' for queue: 'weblogic.admin.RMI'" (0x770E5028)
    2LKMONINUSE sys_mon_t:0x770E3D38 infl_mon_t: 0x770F13D8:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8AF0/300C8AF8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '1' for queue: 'weblogic.admin.RMI'" (0x770F1028)
    2LKMONINUSE sys_mon_t:0x770E3DE8 infl_mon_t: 0x770F1404:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8A50/300C8A58: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '2' for queue: 'weblogic.admin.RMI'" (0x770F84A8)
    2LKMONINUSE sys_mon_t:0x770E3E98 infl_mon_t: 0x770F1430:
    3LKMONOBJECT [email protected]0/300C8928: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "VDE Transaction Processor Thread" (0x77531828)
    2LKMONINUSE sys_mon_t:0x770F1758 infl_mon_t: 0x770F1488:
    3LKMONOBJECT java.util.TaskQueue@30EECD38/30EECD40: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "Thread-5" (0x75CCD1A8)
    2LKMONINUSE sys_mon_t:0x770F2F88 infl_mon_t: 0x770F1538:
    3LKMONOBJECT weblogic.jms.backend.BETimerTree@33C6CFE0/33C6CFE8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '0' for queue: 'JMS.TimerTreePool'" (0x7893DD28)
    2LKMONINUSE sys_mon_t:0x770F3038 infl_mon_t: 0x770F1564:
    3LKMONOBJECT java.util.TaskQueue@34F10870/34F10878: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "Thread-7" (0x78DE09A8)
    2LKMONINUSE sys_mon_t:0x770F30E8 infl_mon_t: 0x770F1590:
    3LKMONOBJECT java.util.TaskQueue@3C4CB120/3C4CB128: <unowned>
    3LKNOTIFYQ Waiting to be notifie

    My WebLogic Server hang up sometime. The platform is IBM AIX, weblogic 8.1 with sp3
    The following is the thread dump:
    NULL ------------------------------------------------------------------------
    0SECTION TITLE subcomponent dump routine
    NULL ===============================
    1TISIGINFO signal 3 received
    1TIDATETIME Date: 2007/04/26 at 11:13:10
    1TIFILENAME Javacore filename: /var/bea/domains/TazDomain/javacore524292.1177600390.txt
    NULL ------------------------------------------------------------------------
    0SECTION XHPI subcomponent dump routine
    NULL ==============================
    1XHTIME Thu Apr 26 11:13:10 2007
    1XHSIGRECV SIGQUIT received at 0x0 in <unknown>.
    1XHFULLVERSION J2RE 1.4.2 IBM AIX build ca142-20060421 (SR5)
    NULL
    1XHCURRENTTHD Current Thread Details
    NULL ----------------------
    2XHCURRSYSTHD "Signal dispatcher" sys_thread_t:0x74427A28
    3XHNATIVESTACK Native Stack
    NULL ------------
    3XHSTACKLINEERR unavailable - stack address not valid
    1XHOPENV Operating Environment
    NULL ---------------------
    2XHHOSTNAME Host : rcirs050:10.1.93.20
    2XHOSLEVEL OS Level : AIX 5.3.0.0
    2XHCPUS Processors -
    3XHCPUARCH Architecture : POWER_PC (impl: unknown, ver: unknown)
    3XHNUMCPUS How Many : 2
    3XHCPUSENABLED Enabled : 2
    NULL
    1XHUSERLIMITS User Limits (in bytes except for NOFILE and NPROC) -
    NULL -----------
    2XHUSERLIMIT RLIMIT_FSIZE : 1073741312
    2XHUSERLIMIT RLIMIT_DATA : 2147483645
    2XHUSERLIMIT RLIMIT_STACK : 33554432
    2XHUSERLIMIT RLIMIT_CORE : 1073741312
    2XHUSERLIMIT RLIMIT_NOFILE : 1024
    2XHLIMIT NPROC(max) : 128
    NULL
    1XHPAGESPACES Page Space (in blocks) -
    NULL ----------
    2XHPAGESPACE /dev/hd6: size=262144, free=261912
    2XHPAGESPACE /dev/paging03: size=507904, free=507672
    2XHPAGESPACE /dev/paging00: size=262144, free=261917
    2XHPAGESPACE /dev/paging01: size=262144, free=261903
    2XHPAGESPACE /dev/paging02: size=262144, free=261901
    2XHPAGESPACE /dev/paging04: size=262144, free=260986
    2XHPAGESPACE /dev/paging07: size=262144, free=261911
    2XHPAGESPACE /dev/paging06: size=262144, free=261913
    2XHPAGESPACE /dev/paging05: size=262144, free=261913
    NULL
    1XHSIGHANDLERS JVM Signal Handlers
    NULL -------------------
    2XHSIGHANDLER SIGHUP : ignored
    2XHSIGHANDLER SIGINT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGQUIT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGILL : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGTRAP : JITSigTrapHandler (libjitc.a)
    2XHSIGHANDLER SIGABRT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGEMT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGFPE : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGBUS : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGSEGV : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGSYS : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGPIPE : ignored
    2XHSIGHANDLER SIGTERM : intrDispatchMD (libhpi.a)
    NULL
    1XHSIGHANDLERS Chained Signal Handlers
    NULL -----------------------
    2XHSIGHANDLER SIGHUP : ignored
    2XHSIGHANDLER SIGINT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGQUIT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGILL : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGTRAP : JITSigTrapHandler (libjitc.a)
    2XHSIGHANDLER SIGABRT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGEMT : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGFPE : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGBUS : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGSEGV : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGSYS : intrDispatchMD (libhpi.a)
    2XHSIGHANDLER SIGPIPE : ignored
    2XHSIGHANDLER SIGTERM : intrDispatchMD (libhpi.a)
    NULL
    1XHENVVARS Environment Variables
    NULL ---------------------
    2XHENVVAR _=/usr/java14/bin/java
    2XHENVVAR JAVA_VENDOR=IBM
    2XHENVVAR LANG=C
    2XHENVVAR PRODUCTION_MODE=
    2XHENVVAR LOGIN=qatadm
    2XHENVVAR CLASSPATHSEP=:
    2XHENVVAR VISUAL=vi
    2XHENVVAR POINTBASE_HOME=/opt/bea/weblogic81/common/eval/pointbase
    2XHENVVAR PATH=/opt/bea/weblogic81/server/bin:/usr/java14/jre/bin:/usr/java14/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:/home/qatadm/bin:/usr/bin/X11:/sbin:.:/usr/java14/bin
    2XHENVVAR JAVA_VM=
    2XHENVVAR LC__FASTMSG=true
    2XHENVVAR POINTBASE_CLASSPATH=:/opt/bea/weblogic81/common/eval/pointbase/lib/pbserver44.jar:/opt/bea/weblogic81/common/eval/pointbase/lib/pbclient44.jar
    2XHENVVAR CLASSPATH=/opt/bea/weblogic81/server/ext/jdbc/oracle/920/ojdbc14.jar:/usr/java14/lib/tools.jar:/opt/bea/weblogic81/server/lib/weblogic_sp.jar:/opt/bea/weblogic81/server/lib/weblogic.jar::/opt/bea/weblogic81/common/eval/pointbase/lib/pbserver44.jar:/opt/bea/weblogic81/common/eval/pointbase/lib/pbclient44.jar:/usr/java14/jre/lib/rt.jar:/opt/bea/weblogic81/server/lib/webservices.jar:
    2XHENVVAR LOGNAME=qatadm
    2XHENVVAR MAIL=/usr/spool/mail/qatadm
    2XHENVVAR POINTBASE_TOOLS=/opt/bea/weblogic81/common/eval/pointbase/lib/pbtools44.jar
    2XHENVVAR LOCPATH=/usr/lib/nls/loc
    2XHENVVAR PS1=rcirs050:$PWD>
    2XHENVVAR PATHSEP=:
    2XHENVVAR USER=qatadm
    2XHENVVAR AUTHSTATE=compat
    2XHENVVAR BEA_HOME=/opt/bea
    2XHENVVAR DCE_USE_WCHAR_NAMES=1
    2XHENVVAR SHELL=/usr/bin/ksh
    2XHENVVAR ODMDIR=/etc/objrepos
    2XHENVVAR JAVA_HOME=/usr/java14
    2XHENVVAR TIMEOUT=900
    2XHENVVAR TMOUT=900
    2XHENVVAR HOME=/home/qatadm
    2XHENVVAR MEM_ARGS=-Xms512m -Xmx1024m
    2XHENVVAR WEBLOGIC_CLASSPATH=/usr/java14/lib/tools.jar:/opt/bea/weblogic81/server/lib/weblogic_sp.jar:/opt/bea/weblogic81/server/lib/weblogic.jar
    2XHENVVAR TERM=dtterm
    2XHENVVAR MAILMSG=[YOU HAVE NEW MAIL]
    2XHENVVAR PWD=/var/bea/domains/TazDomain
    2XHENVVAR TZ=EST5EDT
    2XHENVVAR WL_HOME=/opt/bea/weblogic81
    2XHENVVAR AIXTHREAD_SCOPE=S
    2XHENVVAR A__z=! LOGNAME="*TMOUT
    2XHENVVAR _IBM_JAVA_PIPE_524292=
    2XHENVVAR IBM_JVM_LIBPATH_OLD_VALUE=/opt/bea/weblogic81/server/lib/aix
    2XHENVVAR IBM_JVM_LIBPATH_NEW_VALUE=/usr/java14/jre/bin:/usr/java14/jre/bin/classic:/usr/java14/jre/bin:/opt/bea/weblogic81/server/lib/aix
    2XHENVVAR IBM_JVM_CHANGED_ENVVARS_524292=LIBPATH,LDR_CNTRL
    2XHENVVAR IBM_JVM_LDR_CNTRL_NEW_VALUE=MAXDATA=0XA0000000@DSA
    2XHENVVAR LDR_CNTRL=MAXDATA=0XA0000000@DSA
    2XHENVVAR NLSPATH=/usr/lib/nls/msg/%L/%N:/usr/lib/nls/msg/%L/%N.cat
    2XHENVVAR LIBPATH=/usr/java14/jre/bin:/usr/java14/jre/bin/classic:/usr/java14/jre/bin:/opt/bea/weblogic81/server/lib/aix
    2XHENVVAR _IBM_ENV_INITIAL_524292=805345384
    2XHENVVAR IBM_JAVA_COMMAND_LINE=/usr/java14/bin/java -Xms512m -Xmx1024m -Duser.timezone=America/New_York -Dweblogic.Name=TazServer -Dweblogic.ProductionModeEnabled= -Djava.security.policy=/opt/bea/weblogic81/server/lib/weblogic.policy weblogic.Server
    NULL
    1XHLOADEDLIBS Loaded Libraries (sizes in bytes)
    NULL ---------------------------------
    2XHLIBNAME /opt/bea/weblogic81/server/lib/aix/libmuxer.so
    3XHLIBSIZE filesize : 20757
    3XHLIBSTART text start : 0xD0B88000
    3XHLIBLDSIZE text size : 0x282E
    3XHLIBLDORG data start : 0xF0617CF4
    3XHLIBLDDATASZ data size : 0x2AC
    2XHLIBNAME /usr/java14/jre/bin/libnio.a
    3XHLIBSIZE filesize : 64305
    3XHLIBSTART text start : 0xD11F5000
    3XHLIBLDSIZE text size : 0x8EF0
    3XHLIBLDORG data start : 0xF0615AE0
    3XHLIBLDDATASZ data size : 0x594
    2XHLIBNAME /opt/bea/weblogic81/server/lib/aix/libweblogicunix1.so
    3XHLIBSIZE filesize : 14536
    3XHLIBSTART text start : 0xD0B86000
    3XHLIBLDSIZE text size : 0x1B90
    3XHLIBLDORG data start : 0xF0614484
    3XHLIBLDDATASZ data size : 0xD8
    2XHLIBNAME /usr/java14/jre/bin/libnet.a
    3XHLIBSIZE filesize : 137885
    3XHLIBSTART text start : 0xD15D7000
    3XHLIBLDSIZE text size : 0x161FF
    3XHLIBLDORG data start : 0xF05DE3D8
    3XHLIBLDDATASZ data size : 0x968
    2XHLIBNAME /usr/java14/jre/bin/libjitc.a
    3XHLIBSIZE filesize : 2814544
    3XHLIBSTART text start : 0xD252E000
    3XHLIBLDSIZE text size : 0x23EE7B
    3XHLIBLDORG data start : 0xF0962B68
    3XHLIBLDDATASZ data size : 0x1A984
    2XHLIBNAME /usr/lib/security/DCE
    3XHLIBSIZE filesize : 27634
    3XHLIBSTART text start : 0xD0B7A000
    3XHLIBLDSIZE text size : 0x6BF2
    3XHLIBLDORG data start : 0xF05CEA38
    3XHLIBLDDATASZ data size : 0x2BA0
    2XHLIBNAME /usr/java14/jre/bin/libzip.a
    3XHLIBSIZE filesize : 109746
    3XHLIBSTART text start : 0xD11E1000
    3XHLIBLDSIZE text size : 0x135E2
    3XHLIBLDORG data start : 0xF05DC468
    3XHLIBLDDATASZ data size : 0x1918
    2XHLIBNAME /usr/java14/jre/bin/classic/libcore.a
    3XHLIBSIZE filesize : 136713
    3XHLIBSTART text start : 0xD11CB000
    3XHLIBLDSIZE text size : 0x15248
    3XHLIBLDORG data start : 0xF05DA0E8
    3XHLIBLDDATASZ data size : 0x1620
    2XHLIBNAME /usr/java14/jre/bin/libjava.a
    3XHLIBSIZE filesize : 221158
    3XHLIBSTART text start : 0xD11AB000
    3XHLIBLDSIZE text size : 0x1FEB2
    3XHLIBLDORG data start : 0xF05D88F8
    3XHLIBLDDATASZ data size : 0x16F8
    2XHLIBNAME /usr/java14/jre/bin/libhpi.a
    3XHLIBSIZE filesize : 205732
    3XHLIBSTART text start : 0xD118C000
    3XHLIBLDSIZE text size : 0x1EE0E
    3XHLIBLDORG data start : 0xF06045A0
    3XHLIBLDDATASZ data size : 0xF8D0
    2XHLIBNAME /usr/java14/jre/bin/libxhpi.a
    3XHLIBSIZE filesize : 14654
    3XHLIBSTART text start : 0xD0B84000
    3XHLIBLDSIZE text size : 0x1B52
    3XHLIBLDORG data start : 0xF05D7290
    3XHLIBLDDATASZ data size : 0x2C8
    2XHLIBNAME /usr/java14/jre/bin/libdbgmalloc.a
    3XHLIBSIZE filesize : 15267
    3XHLIBSTART text start : 0xD0B81000
    3XHLIBLDSIZE text size : 0x217C
    3XHLIBLDORG data start : 0xF05D6988
    3XHLIBLDDATASZ data size : 0x218
    2XHLIBNAME /usr/java14/jre/bin/libjsig.a
    3XHLIBSIZE filesize : 14412
    3XHLIBSTART text start : 0xD07F8000
    3XHLIBLDSIZE text size : 0x1B24
    3XHLIBLDORG data start : 0xF05D54B0
    3XHLIBLDDATASZ data size : 0x108
    2XHLIBNAME /usr/java14/jre/bin/libute.a
    3XHLIBSIZE filesize : 112768
    3XHLIBSTART text start : 0xD1177000
    3XHLIBLDSIZE text size : 0x14ED9
    3XHLIBLDORG data start : 0xF05D43B0
    3XHLIBLDDATASZ data size : 0x674
    2XHLIBNAME /usr/lib/libdl.a
    3XHLIBSIZE filesize : 5248
    3XHLIBSTART text start : 0xD02E70F8
    3XHLIBLDSIZE text size : 0x1E0
    3XHLIBLDORG data start : 0xF03190F8
    3XHLIBLDDATASZ data size : 0x0
    2XHLIBNAME /usr/java14/jre/bin/sovvm/libjvm.a
    3XHLIBSIZE filesize : 2857303
    3XHLIBSTART text start : 0xD2335000
    3XHLIBLDSIZE text size : 0x1F8E31
    3XHLIBLDORG data start : 0xF0936290
    3XHLIBLDDATASZ data size : 0x2AE10
    2XHLIBNAME /usr/java14/jre/bin/classic/libjvm.a
    3XHLIBSIZE filesize : 117748
    3XHLIBSTART text start : 0xD1169000
    3XHLIBLDSIZE text size : 0xD54B
    3XHLIBLDORG data start : 0xF05D2A90
    3XHLIBLDDATASZ data size : 0xF0C
    2XHLIBNAME /usr/lib/libC.a
    3XHLIBSIZE filesize : 7196428
    3XHLIBSTART text start : 0xD01E7540
    3XHLIBLDSIZE text size : 0x20F6D
    3XHLIBLDORG data start : 0xF0381340
    3XHLIBLDDATASZ data size : 0x6780
    2XHLIBNAME /usr/lib/libC.a
    3XHLIBSIZE filesize : 7196428
    3XHLIBSTART text start : 0xD01CDBC0
    3XHLIBLDSIZE text size : 0x186CC
    3XHLIBLDORG data start : 0xF0377FC0
    3XHLIBLDDATASZ data size : 0x84C9
    2XHLIBNAME /usr/lib/libcrypt.a
    3XHLIBSIZE filesize : 11019
    3XHLIBSTART text start : 0xD01450F8
    3XHLIBLDSIZE text size : 0x846
    3XHLIBLDORG data start : 0xF0316508
    3XHLIBLDDATASZ data size : 0x128
    2XHLIBNAME /usr/lib/libiconv.a
    3XHLIBSIZE filesize : 377727
    3XHLIBSTART text start : 0xD05BF100
    3XHLIBLDSIZE text size : 0x139C1
    3XHLIBLDORG data start : 0xF0252C70
    3XHLIBLDDATASZ data size : 0xA2E4
    2XHLIBNAME /usr/lib/libbsd.a
    3XHLIBSIZE filesize : 61862
    3XHLIBSTART text start : 0xD02784C0
    3XHLIBLDSIZE text size : 0x7D2F
    3XHLIBLDORG data start : 0xF0213A30
    3XHLIBLDDATASZ data size : 0x13D8
    2XHLIBNAME /usr/lib/libpthreads.a
    3XHLIBSIZE filesize : 1126171
    3XHLIBSTART text start : 0xD010E000
    3XHLIBLDSIZE text size : 0x365C4
    3XHLIBLDORG data start : 0xF0370000
    3XHLIBLDDATASZ data size : 0x4024
    2XHLIBNAME /usr/lib/libpthreads.a
    3XHLIBSIZE filesize : 1126171
    3XHLIBSTART text start : 0xD010A000
    3XHLIBLDSIZE text size : 0x3C52
    3XHLIBLDORG data start : 0xF032D000
    3XHLIBLDDATASZ data size : 0x424A8
    2XHLIBNAME /usr/lib/libC.a
    3XHLIBSIZE filesize : 7196428
    3XHLIBSTART text start : 0xD01AD100
    3XHLIBLDSIZE text size : 0x1FED1
    3XHLIBLDORG data start : 0xF0388D00
    3XHLIBLDDATASZ data size : 0x30F9
    2XHLIBNAME /usr/lib/libc.a
    3XHLIBSIZE filesize : 8270989
    3XHLIBSTART text start : 0xD02F2240
    3XHLIBLDSIZE text size : 0x251155
    3XHLIBLDORG data start : 0xF0278BC0
    3XHLIBLDDATASZ data size : 0x9D340
    NULL
    NULL ------------------------------------------------------------------------
    0SECTION CI subcomponent dump routine
    NULL ============================
    1CIJAVAVERSION J2RE 1.4.2 IBM AIX build ca142-20060421 (SR5)
    1CIRUNNINGAS Running as a standalone JVM
    1CICMDLINE /usr/java14/bin/java -Xms512m -Xmx1024m -Duser.timezone=America/New_York -Dweblogic.Name=TazServer -Dweblogic.ProductionModeEnabled= -Djava.security.policy=/opt/bea/weblogic81/server/lib/weblogic.policy weblogic.Server
    1CIJAVAHOMEDIR Java Home Dir: /usr/java14/jre
    1CIJAVADLLDIR Java DLL Dir: /usr/java14/jre/bin
    1CISYSCP Sys Classpath: /usr/java14/jre/lib/core.jar:/usr/java14/jre/lib/graphics.jar:/usr/java14/jre/lib/security.jar:/usr/java14/jre/lib/server.jar:/usr/java14/jre/lib/xml.jar:/usr/java14/jre/lib/charsets.jar:/usr/java14/jre/classes:/usr/java14/jre/lib/ibmcertpathprovider.jar:/usr/java14/jre/lib/ibmjaaslm.jar:/usr/java14/jre/lib/ibmjcefw.jar:/usr/java14/jre/lib/ibmjgssprovider.jar:/usr/java14/jre/lib/ibmjssefips.jar:/usr/java14/jre/lib/ibmjsseprovider.jar:/usr/java14/jre/lib/ibmorb.jar:/usr/java14/jre/lib/ibmorbapi.jar:/usr/java14/jre/lib/ibmpkcs.jar
    1CIUSERARGS UserArgs:
    2CIUSERARG vfprintf 0x30000D94
    2CIUSERARG -Xms512m
    2CIUSERARG -Xmx1024m
    2CIUSERARG -Duser.timezone=America/New_York
    2CIUSERARG -Dweblogic.Name=TazServer
    2CIUSERARG -Dweblogic.ProductionModeEnabled=
    2CIUSERARG -Djava.security.policy=/opt/bea/weblogic81/server/lib/weblogic.policy
    2CIUSERARG -Dinvokedviajava
    2CIUSERARG -Djava.class.path=/opt/bea/weblogic81/server/ext/jdbc/oracle/920/ojdbc14.jar:/usr/java14/lib/tools.jar:/opt/bea/weblogic81/server/lib/weblogic_sp.jar:/opt/bea/weblogic81/server/lib/weblogic.jar::/opt/bea/weblogic81/common/eval/pointbase/lib/pbserver44.jar:/opt/bea/weblogic81/common/eval/pointbase/lib/pbclient44.jar:/usr/java14/jre/lib/rt.jar:/opt/bea/weblogic81/server/lib/webservices.jar:
    2CIUSERARG vfprintf
    NULL
    1CIJVMMI JVM Monitoring Interface (JVMMI)
    NULL ------------------------
    2CIJVMMIOFF No events are enabled.
    NULL
    NULL ------------------------------------------------------------------------
    0SECTION DC subcomponent dump routine
    NULL ============================
    1DCHEADEREYE Header eye catcher DCST
    1DCHEADERLEN Header length 24
    1DCHEADERVER Header version 1
    1DCHEADERMOD Header modification 0
    1DCINTERFACE DC Interface at 0xF0947FDC with 15 entries
    2DCINTERFACE 1 - dcCString2JavaString 0xF0944A90
    2DCINTERFACE 2 - dcInt642CString 0xF0944A9C
    2DCINTERFACE 3 - dcJavaString2NewCString 0xF0944AA8
    2DCINTERFACE 4 - dcJavaString2CString 0xF0944AB4
    2DCINTERFACE 5 - dcJavaString2NewPlatformString 0xF0944AC0
    2DCINTERFACE 6 - dcJavaString2UTF 0xF0944ACC
    2DCINTERFACE 7 - dcPlatformString2JavaString 0xF0944AE4
    2DCINTERFACE 8 - dcUnicode2UTF 0xF0944AF0
    2DCINTERFACE 9 - dcUnicode2UTFLength 0xF0944AFC
    2DCINTERFACE 10 - dcUTF2JavaString 0xF0944B08
    2DCINTERFACE 11 - dcUTFClassName2JavaString 0xF0944B14
    2DCINTERFACE 12 - dcJavaString2ClassName 0xF0944AD8
    2DCINTERFACE 13 - dcUTF2UnicodeNext 0xF0944B20
    2DCINTERFACE 14 - dcVerifyUTF8 0xF0944B2C
    2DCINTERFACE 15 - dcDumpRoutine 0xF0944B38
    1DCARRAYINFO Array info at 0xF09384A0 with 16 entries
    2DCARRAYINFO 1 - index 0 signature 0 name N/A factor 0
    2DCARRAYINFO 2 - index 0 signature 0 name N/A factor 0
    2DCARRAYINFO 3 - index 2 signature L name class[] factor 4
    2DCARRAYINFO 4 - index 0 signature 0 name N/A factor 0
    2DCARRAYINFO 5 - index 4 signature Z name bool[] factor 1
    2DCARRAYINFO 6 - index 5 signature C name char[] factor 2
    2DCARRAYINFO 7 - index 6 signature F name float[] factor 4
    2DCARRAYINFO 8 - index 7 signature D name double[] factor 8
    2DCARRAYINFO 9 - index 8 signature B name byte[] factor 1
    2DCARRAYINFO 10 - index 9 signature S name short[] factor 2
    2DCARRAYINFO 11 - index 10 signature I name int[] factor 4
    2DCARRAYINFO 12 - index 11 signature J name long[] factor 8
    2DCARRAYINFO 13 - index 0 signature 0 name uint[] factor 0
    2DCARRAYINFO 14 - index 0 signature 0 name uint1[] factor 0
    2DCARRAYINFO 15 - index 0 signature 0 name uint2[] factor 0
    2DCARRAYINFO 16 - index 0 signature 0 name uint3[] factor 0
    NULL ------------------------------------------------------------------------
    0SECTION DG subcomponent dump routine
    NULL ============================
    1DGTRCENABLED Trace enabled: Yes
    2DGTRCTYPE Trace: Internal
    2DGTRCBUFFERS Buffer specification: 8k
    2DGTRCBUFALLOC Buffers allocated: 0
    2DGTRCBUFUSED Buffers in use: 0
    1DGJDUMPBUFF Javadump buffer size (allocated): 2621440
    NULL ------------------------------------------------------------------------
    0SECTION ST subcomponent dump routine
    NULL ============================
    1STGCMODES Resettable GC: No
    1STGCMODES Concurrent GC: No
    1STCURHBASE Current Heap Base: 0x300601FC
    1STCURHLIM Current Heap Limit: 0x5005FBFC
    1STMWHBASE Middleware Heap Base: 0x300601FC
    1STMWHLIM Middleware Heap Limit: 0x5005FBFC
    1STGCHELPERS Number of GC Helper Threads: 1
    1STJVMOPTS -Xconcurrentlevel: 0
    1STJVMOPTS -Xconcurrentbackground: 0
    1STGCCTR GC Counter: 42
    1STAFCTR AF Counter: 42
    1STHEAPFREE Bytes of Heap Space Free: 190d3b88
    1STHEAPALLOC Bytes of Heap Space Allocated: 1ffffa00
    1STSMBASE SM Base: 0x0
    1STSMEND SM End: 0x0
    1STPAMSTART PAM Start: 0x0
    1STPAMEND PAM End: 0x0
    1STCOMACTION Compact Action: 0
    NULL ------------------------------------------------------------------------
    0SECTION XE subcomponent dump routine
    NULL ============================
    1XETHRESHOLD MMI threshold for java methods is set to 1250
    1XEJITINIT JIT is initialized
    1XEJVMPIOFF JVMPI is not activated
    1XEJNITHRESH MMI threshold for JNI methods is set to 0
    1XETRCHIS Trace history length is set to 4
    1XEJITDUMP JIT dump routine is not yet implemented.
    NULL ------------------------------------------------------------------------
    0SECTION LK subcomponent dump routine
    NULL ============================
    NULL
    1LKPOOLINFO Monitor pool info:
    2LKPOOLINIT Initial monitor count: 32
    2LKPOOLEXPNUM Minimum number of free monitors before expansion: 5
    2LKPOOLEXPBY Pool will next be expanded by: 81
    2LKPOOLTOTAL Current total number of monitors: 162
    2LKPOOLFREE Current number of free monitors: 42
    NULL
    1LKMONPOOLDUMP Monitor Pool Dump (flat & inflated object-monitors):
    2LKMONINUSE sys_mon_t:0x3003EC78 infl_mon_t: 0x3003E6E8:
    3LKMONOBJECT java.lang.ref.Reference$Lock@300E02B0/300E02B8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "Reference Handler" (0x744B7D28)
    2LKMONINUSE sys_mon_t:0x3003ED28 infl_mon_t: 0x3003E714:
    3LKMONOBJECT java.lang.ref.ReferenceQueue$Lock@300DFFE8/300DFFF0: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "Finalizer" (0x745409A8)
    2LKMONINUSE sys_mon_t:0x3003EDD8 infl_mon_t: 0x3003E740:
    3LKMONOBJECT java.util.TaskQueue@311299D0/311299D8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "Thread-1" (0x75F054A8)
    2LKMONINUSE sys_mon_t:0x3003EE88 infl_mon_t: 0x3003E76C:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9A60/300C9A68: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '0' for queue: 'weblogic.kernel.Default'" (0x765659A8)
    2LKMONINUSE sys_mon_t:0x3003EF38 infl_mon_t: 0x3003E798:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C99C0/300C99C8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '1' for queue: 'weblogic.kernel.Default'" (0x765693A8)
    2LKMONINUSE sys_mon_t:0x3003EFE8 infl_mon_t: 0x3003E7C4:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9920/300C9928: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '2' for queue: 'weblogic.kernel.Default'" (0x76569928)
    2LKMONINUSE sys_mon_t:0x3003F098 infl_mon_t: 0x3003E7F0:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9880/300C9888: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '3' for queue: 'weblogic.kernel.Default'" (0x76572BA8)
    2LKMONINUSE sys_mon_t:0x3003F148 infl_mon_t: 0x3003E81C:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C97E0/300C97E8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '4' for queue: 'weblogic.kernel.Default'" (0x767971A8)
    2LKMONINUSE sys_mon_t:0x3003F1F8 infl_mon_t: 0x3003E848:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9740/300C9748: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '5' for queue: 'weblogic.kernel.Default'" (0x7681EBA8)
    2LKMONINUSE sys_mon_t:0x3003F2A8 infl_mon_t: 0x3003E874:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C96A0/300C96A8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '6' for queue: 'weblogic.kernel.Default'" (0x768A65A8)
    2LKMONINUSE sys_mon_t:0x3003F358 infl_mon_t: 0x3003E8A0:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9600/300C9608: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '7' for queue: 'weblogic.kernel.Default'" (0x7692E028)
    2LKMONINUSE sys_mon_t:0x3003F408 infl_mon_t: 0x3003E8CC:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9560/300C9568: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '8' for queue: 'weblogic.kernel.Default'" (0x769B5A28)
    2LKMONINUSE sys_mon_t:0x3003F4B8 infl_mon_t: 0x3003E8F8:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C94C0/300C94C8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '9' for queue: 'weblogic.kernel.Default'" (0x76A3D4A8)
    2LKMONINUSE sys_mon_t:0x3003F568 infl_mon_t: 0x3003E924:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9420/300C9428: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '10' for queue: 'weblogic.kernel.Default'" (0x76AC4EA8)
    2LKMONINUSE sys_mon_t:0x3003F618 infl_mon_t: 0x3003E950:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9380/300C9388: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '11' for queue: 'weblogic.kernel.Default'" (0x76B4C8A8)
    2LKMONINUSE sys_mon_t:0x3003F6C8 infl_mon_t: 0x3003E97C:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C92E0/300C92E8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '12' for queue: 'weblogic.kernel.Default'" (0x76BD4328)
    2LKMONINUSE sys_mon_t:0x3003F778 infl_mon_t: 0x3003E9A8:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9240/300C9248: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '13' for queue: 'weblogic.kernel.Default'" (0x76C5BD28)
    2LKMONINUSE sys_mon_t:0x3003F828 infl_mon_t: 0x3003E9D4:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C91A0/300C91A8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '14' for queue: 'weblogic.kernel.Default'" (0x76CE3728)
    2LKMONINUSE sys_mon_t:0x3003F988 infl_mon_t: 0x3003EA2C:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C9060/300C9068: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '1' for queue: 'weblogic.kernel.System'" (0x76DF2BA8)
    2LKMONINUSE sys_mon_t:0x3003FA38 infl_mon_t: 0x3003EA58:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8FC0/300C8FC8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '2' for queue: 'weblogic.kernel.System'" (0x76E7A628)
    2LKMONINUSE sys_mon_t:0x3003FAE8 infl_mon_t: 0x3003EA84:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8F20/300C8F28: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '3' for queue: 'weblogic.kernel.System'" (0x76F02028)
    2LKMONINUSE sys_mon_t:0x3003FB98 infl_mon_t: 0x3003EAB0:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8E80/300C8E88: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '4' for queue: 'weblogic.kernel.System'" (0x76F89A28)
    2LKMONINUSE sys_mon_t:0x3003FC48 infl_mon_t: 0x3003EADC:
    3LKMONOBJECT weblogic.time.common.internal.TimeTable@32EB9198/32EB91A0: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "weblogic.time.TimeEventGenerator" (0x77013D28)
    2LKMONINUSE sys_mon_t:0x3003FCF8 infl_mon_t: 0x3003EB08:
    3LKMONOBJECT java.lang.Object@32F56538/32F56540: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "weblogic.security.SpinnerRandomSource" (0x770CC3A8)
    2LKMONINUSE sys_mon_t:0x3003FDA8 infl_mon_t: 0x3003EB34:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8CD0/300C8CD8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '0' for queue: 'weblogic.admin.HTTP'" (0x770E4428)
    2LKMONINUSE sys_mon_t:0x3003FE58 infl_mon_t: 0x3003EB60:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8C30/300C8C38: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '1' for queue: 'weblogic.admin.HTTP'" (0x770E4A28)
    2LKMONINUSE sys_mon_t:0x3003FF08 infl_mon_t: 0x3003EB8C:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8B90/300C8B98: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '0' for queue: 'weblogic.admin.RMI'" (0x770E5028)
    2LKMONINUSE sys_mon_t:0x770E3D38 infl_mon_t: 0x770F13D8:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8AF0/300C8AF8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '1' for queue: 'weblogic.admin.RMI'" (0x770F1028)
    2LKMONINUSE sys_mon_t:0x770E3DE8 infl_mon_t: 0x770F1404:
    3LKMONOBJECT weblogic.kernel.ExecuteThread@300C8A50/300C8A58: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '2' for queue: 'weblogic.admin.RMI'" (0x770F84A8)
    2LKMONINUSE sys_mon_t:0x770E3E98 infl_mon_t: 0x770F1430:
    3LKMONOBJECT [email protected]0/300C8928: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "VDE Transaction Processor Thread" (0x77531828)
    2LKMONINUSE sys_mon_t:0x770F1758 infl_mon_t: 0x770F1488:
    3LKMONOBJECT java.util.TaskQueue@30EECD38/30EECD40: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "Thread-5" (0x75CCD1A8)
    2LKMONINUSE sys_mon_t:0x770F2F88 infl_mon_t: 0x770F1538:
    3LKMONOBJECT weblogic.jms.backend.BETimerTree@33C6CFE0/33C6CFE8: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "ExecuteThread: '0' for queue: 'JMS.TimerTreePool'" (0x7893DD28)
    2LKMONINUSE sys_mon_t:0x770F3038 infl_mon_t: 0x770F1564:
    3LKMONOBJECT java.util.TaskQueue@34F10870/34F10878: <unowned>
    3LKNOTIFYQ Waiting to be notified:
    3LKWAITNOTIFY "Thread-7" (0x78DE09A8)
    2LKMONINUSE sys_mon_t:0x770F30E8 infl_mon_t: 0x770F1590:
    3LKMONOBJECT java.util.TaskQueue@3C4CB120/3C4CB128: <unowned>
    3LKNOTIFYQ Waiting to be notifie

  • Stuck Threads Leading to server hang

    Hi ,
    We have been facing a problem with Stuck Threads in our production environment. We are currently running version 8.1. Though the stuck Threads do point to JDBC issues, we suspect that these problems may be related to some Weblogic/OS configuration issue as well. These probelms eventually lead to a server hang.
    The general pattern of the problem is that we see messages like :
    Dec 24, 2006 8:56:09 AM EST> <Debug> <Common> <BEA-000610> < RP(rtqdbConnectionPool):timeoutInactiveRes (20)>
    ####<Dec 25, 2006 8:54:51 AM EST> <Error> <WebLogicServer> <hygeia> <hygeia-rtq-vm7> <weblogic.health.CoreHealthMonitor> <<WLS Kernel>> <> <BEA-000337> <UNKNOWN_SESSION has been busy for "896" seconds working on the request "Http Request: /quote.do", which is more than the configured time (StuckThreadMaxTime) of "600" seconds.> ==================== This email/fax message is for the sole use of the intended
    Sometimes a deadlock Exception would be thrown from the Database,
    nested exception is java.sql.SQLException: ORA-00060: deadlock detected while waiting for resource
    But this is not as often as we get the Stuck Thread messages.
    This is a typical Thread dump from one of our servers when it complained of a stuck thread.
    ///*************Thread Dump Start**********************///
    Full thread dump Java HotSpot(TM) Server VM (1.4.2_08-b03 mixed mode):
    "idle thread" daemon prio=5 tid=0x00d2c150 nid=0x7f in Object.wait() [94e7f000..94e7fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xb2010000> (a org.xbill.Task.WorkerThread)
         at org.xbill.Task.WorkerThread.run(WorkerThread.java:130)
         - locked <0xb2010000> (a org.xbill.Task.WorkerThread)
    "Thread-28" daemon prio=5 tid=0x00c6a7c0 nid=0x7d in Object.wait() [92c7f000..92c7fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xbce667f8> (a com.geico.util.LockManager)
         at com.geico.util.LockManager.waitForWork(LockManager.java:85)
         - locked <0xbce667f8> (a com.geico.util.LockManager)
         at com.geico.mail.Mail.run(Mail.java:259)
         at java.lang.Thread.run(Thread.java:534)
    "CacheManager-idle" daemon prio=5 tid=0x00c7d950 nid=0x7c in Object.wait() [92d7f000..92d7fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xbce66878> (a com.geico.util.LockManager)
         at com.geico.util.LockManager.waitForWork(LockManager.java:85)
         - locked <0xbce66878> (a com.geico.util.LockManager)
         at com.geico.cache.CacheManager.run(CacheManager.java:353)
         at java.lang.Thread.run(Thread.java:534)
    "ExecuteThread: '2' for queue: 'weblogic.kernel.Non-Blocking'" daemon prio=5 tid=0x006a6c90 nid=0x7a in Object.wait() [92e7f000..92e7fc28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <0xbc2a5db8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '1' for queue: 'weblogic.kernel.Non-Blocking'" daemon prio=5 tid=0x0120c568 nid=0x79 in Object.wait() [92f7f000..92f7fc28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <0xbc2a5e38> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '0' for queue: 'weblogic.kernel.Non-Blocking'" daemon prio=5 tid=0x006a6af0 nid=0x78 in Object.wait() [9307f000..9307fc28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <0xbc2a5eb8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '0' for queue: 'JMSStore<AptSoftFileStore-morpheus-rtq-vm7>.ioThreadPool'" daemon prio=5 tid=0x0052a198 nid=0x77 in Object.wait() [9317f000..9317fc28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <0xbc2a5f38> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "Thread-26" daemon prio=5 tid=0x00635d58 nid=0x75 in Object.wait() [9327f000..9327fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xbb97ad20> (a com.geico.util.LockManager)
         at java.lang.Object.wait(Object.java:429)
         at com.geico.util.LockManager.waitForWork(LockManager.java:63)
         - locked <0xbb97ad20> (a com.geico.util.LockManager)
         at com.geico.util.providers.StorageProvider.run(StorageProvider.java:158)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-25" daemon prio=5 tid=0x00fac430 nid=0x72 waiting on condition [9337f000..9337fc28]
         at java.lang.Thread.sleep(Native Method)
         at org.apache.commons.pool.impl.GenericObjectPool$Evictor.run(GenericObjectPool.java:1080)
         at java.lang.Thread.run(Thread.java:534)
    "ListenThread.Default" prio=5 tid=0x014ec6e8 nid=0x71 runnable [9347f000..9347fc28]
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
         - locked <0xbb97ae60> (a java.net.PlainSocketImpl)
         at java.net.ServerSocket.implAccept(ServerSocket.java:448)
         at java.net.ServerSocket.accept(ServerSocket.java:419)
         at weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:26)
         at weblogic.t3.srvr.ListenThread.accept(ListenThread.java:735)
         at weblogic.t3.srvr.ListenThread.run(ListenThread.java:301)
    "Thread-24" daemon prio=5 tid=0x011e9668 nid=0x70 waiting on condition [9357f000..9357fc28]
         at java.lang.Thread.sleep(Native Method)
         at com.geico.log.HeartbeatLogger$1.run(HeartbeatLogger.java:133)
    "Thread-22" daemon prio=5 tid=0x011e8610 nid=0x6f waiting on condition [9367f000..9367fc28]
         at java.lang.Thread.sleep(Native Method)
         at com.geico.log.StreamLogger.pause(StreamLogger.java:263)
         at com.geico.log.StreamLogger.access$300(StreamLogger.java:15)
         at com.geico.log.StreamLogger$WorkerThread.run(StreamLogger.java:217)
         at java.lang.Thread.run(Thread.java:534)
    "filewatcher" daemon prio=5 tid=0x0111ca50 nid=0x6e waiting on condition [9377f000..9377fc28]
         at java.lang.Thread.sleep(Native Method)
         at com.geico.watcher.FileWatcher.sleep(FileWatcher.java:135)
         at com.geico.watcher.FileWatcher.run(FileWatcher.java:118)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-18" prio=5 tid=0x00de2388 nid=0x6d in Object.wait() [9437e000..9437fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xa20f1a60> (a weblogic.jms.backend.BEConsumerReceiveRequest)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.jms.dispatcher.Request.sleepTillNotified(Request.java:240)
         at weblogic.jms.dispatcher.Request.wrappedFiniteStateMachine(Request.java:685)
         - locked <0xa20f1a60> (a weblogic.jms.backend.BEConsumerReceiveRequest)
         at weblogic.jms.dispatcher.DispatcherImpl.dispatchAsyncInternal(DispatcherImpl.java:132)
         at weblogic.jms.dispatcher.DispatcherImpl.dispatchAsync(DispatcherImpl.java:123)
         at weblogic.jms.dispatcher.Request.dispatchAsync(Request.java:878)
         at weblogic.jms.frontend.FEConsumer.receive(FEConsumer.java:452)
         at weblogic.jms.frontend.FEConsumer.invoke(FEConsumer.java:643)
         at weblogic.jms.dispatcher.Request.wrappedFiniteStateMachine(Request.java:643)
         at weblogic.jms.dispatcher.DispatcherImpl.dispatchSyncTran(DispatcherImpl.java:192)
         at weblogic.jms.client.JMSSession.receiveMessage(JMSSession.java:456)
         at weblogic.jms.client.JMSConsumer.receive(JMSConsumer.java:421)
         at org.springframework.jms.core.JmsTemplate.doReceive(JmsTemplate.java:800)
         at org.springframework.jms.core.JmsTemplate.doReceive(JmsTemplate.java:783)
         at org.springframework.jms.core.JmsTemplate$8.doInJms(JmsTemplate.java:741)
         at org.springframework.jms.core.JmsTemplate.execute(JmsTemplate.java:582)
         at org.springframework.jms.core.JmsTemplate.receive(JmsTemplate.java:739)
         at org.springframework.jms.core.JmsTemplate.receive(JmsTemplate.java:731)
         at com.geico.uierrorlog.UiErrorUtil.getMessage(UiErrorUtil.java:89)
         at com.geico.uierrorlog.UiErrorDaemon.getMessage(UiErrorDaemon.java:108)
         at com.geico.uierrorlog.UiErrorDaemon.run(UiErrorDaemon.java:166)
         at java.lang.Thread.run(Thread.java:534)
    "StatisticsThread" daemon prio=5 tid=0x00d0c798 nid=0x6c in Object.wait() [9447f000..9447fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xb8ee7b18> (a com.geico.tangosol.stats.StatsDaemon)
         at com.geico.tangosol.stats.StatsDaemon.run(StatsDaemon.java:144)
         - locked <0xb8ee7b18> (a com.geico.tangosol.stats.StatsDaemon)
         at com.tangosol.util.Daemon$1.run(Daemon.java:63)
    "StatisticsThread" daemon prio=5 tid=0x01202c18 nid=0x6b in Object.wait() [9457f000..9457fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xb8ee7bd8> (a com.geico.tangosol.stats.StatsDaemon)
         at com.geico.tangosol.stats.StatsDaemon.run(StatsDaemon.java:144)
         - locked <0xb8ee7bd8> (a com.geico.tangosol.stats.StatsDaemon)
         at com.tangosol.util.Daemon$1.run(Daemon.java:63)
    "StatisticsThread" daemon prio=5 tid=0x00b33f18 nid=0x6a in Object.wait() [9467f000..9467fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xb8ee7c90> (a com.geico.tangosol.stats.StatsDaemon)
         at com.geico.tangosol.stats.StatsDaemon.run(StatsDaemon.java:144)
         - locked <0xb8ee7c90> (a com.geico.tangosol.stats.StatsDaemon)
         at com.tangosol.util.Daemon$1.run(Daemon.java:63)
    "DistributedCache:DistributedRTQOverflow" daemon prio=5 tid=0x009895e8 nid=0x69 in Object.wait() [9477f000..9477fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xb8ee7d40> (a com.tangosol.coherence.component.util.daemon.QueueProcessor$Queue)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb8ee7d40> (a com.tangosol.coherence.component.util.daemon.QueueProcessor$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "DistributedCache:PoolStatsDistributedCache:EventDispatcher" daemon prio=5 tid=0x00dff060 nid=0x68 in Object.wait() [9487f000..9487fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xb8ee7f18> (a com.tangosol.coherence.component.util.daemon.queueProcessor.Service$EventDispatcher$Queue)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb8ee7f18> (a com.tangosol.coherence.component.util.daemon.queueProcessor.Service$EventDispatcher$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "DistributedCache:PoolStatsDistributedCache" daemon prio=5 tid=0x006f3e98 nid=0x67 in Object.wait() [9497f000..9497fc28]
         at java.lang.Object.wait(Native Method)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb8ee7fe8> (a com.tangosol.coherence.component.util.daemon.QueueProcessor$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "StatisticsThread" daemon prio=5 tid=0x0090d8d0 nid=0x66 in Object.wait() [94a7f000..94a7fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xb8ee81c8> (a com.geico.tangosol.stats.StatsDaemon)
         at com.geico.tangosol.stats.StatsDaemon.run(StatsDaemon.java:144)
         - locked <0xb8ee81c8> (a com.geico.tangosol.stats.StatsDaemon)
         at com.tangosol.util.Daemon$1.run(Daemon.java:63)
    "DistributedCache:dist-RTQSession:EventDispatcher" daemon prio=5 tid=0x00a05110 nid=0x65 in Object.wait() [94b7f000..94b7fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xb8ee8278> (a com.tangosol.coherence.component.util.daemon.queueProcessor.Service$EventDispatcher$Queue)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb8ee8278> (a com.tangosol.coherence.component.util.daemon.queueProcessor.Service$EventDispatcher$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "DistributedCache:dist-RTQSession" daemon prio=5 tid=0x0036e600 nid=0x64 in Object.wait() [94c7f000..94c7fc28]
         at java.lang.Object.wait(Native Method)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb8ee8348> (a com.tangosol.coherence.component.util.daemon.QueueProcessor$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "ReplicatedCache" daemon prio=5 tid=0x00e9f9f8 nid=0x63 in Object.wait() [94d7f000..94d7fc28]
         at java.lang.Object.wait(Native Method)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb8ee8520> (a com.tangosol.coherence.component.util.daemon.QueueProcessor$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "Scheduler_Worker-9" prio=5 tid=0x00339820 nid=0x61 in Object.wait() [94f7f000..94f7fc28]
         at java.lang.Object.wait(Native Method)
         at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:423)
         - locked <0xb8ee8788> (a java.lang.Object)
         at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:53)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:514)
    "Scheduler_Worker-8" prio=5 tid=0x0033af58 nid=0x60 in Object.wait() [9507f000..9507fc28]
         at java.lang.Object.wait(Native Method)
         at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:423)
         - locked <0xb8ee8788> (a java.lang.Object)
         at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:53)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:514)
    "Scheduler_Worker-7" prio=5 tid=0x0033a878 nid=0x5f in Object.wait() [9517f000..9517fc28]
         at java.lang.Object.wait(Native Method)
         at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:423)
         - locked <0xb8ee8788> (a java.lang.Object)
         at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:53)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:514)
    "Scheduler_Worker-6" prio=5 tid=0x00935488 nid=0x5e in Object.wait() [9527f000..9527fc28]
         at java.lang.Object.wait(Native Method)
         at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:423)
         - locked <0xb8ee8788> (a java.lang.Object)
         at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:53)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:514)
    "Scheduler_Worker-5" prio=5 tid=0x00bb2190 nid=0x5d in Object.wait() [9537f000..9537fc28]
         at java.lang.Object.wait(Native Method)
         at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:423)
         - locked <0xb8ee8788> (a java.lang.Object)
         at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:53)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:514)
    "Scheduler_Worker-4" prio=5 tid=0x010b9038 nid=0x5c in Object.wait() [9547f000..9547fc28]
         at java.lang.Object.wait(Native Method)
         at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:423)
         - locked <0xb8ee8788> (a java.lang.Object)
         at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:53)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:514)
    "Scheduler_Worker-3" prio=5 tid=0x00a34678 nid=0x5b in Object.wait() [9557f000..9557fc28]
         at java.lang.Object.wait(Native Method)
         at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:423)
         - locked <0xb8ee8788> (a java.lang.Object)
         at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:53)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:514)
    "Scheduler_Worker-2" prio=5 tid=0x014f9860 nid=0x5a in Object.wait() [9567f000..9567fc28]
         at java.lang.Object.wait(Native Method)
         at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:423)
         - locked <0xb8ee8788> (a java.lang.Object)
         at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:53)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:514)
    "Scheduler_Worker-1" prio=5 tid=0x0044e530 nid=0x59 in Object.wait() [9577f000..9577fc28]
         at java.lang.Object.wait(Native Method)
         at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:423)
         - locked <0xb8ee8788> (a java.lang.Object)
         at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:53)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:514)
    "Scheduler_Worker-0" prio=5 tid=0x0110b8e8 nid=0x58 in Object.wait() [9587f000..9587fc28]
         at java.lang.Object.wait(Native Method)
         at org.quartz.simpl.SimpleThreadPool.getNextRunnable(SimpleThreadPool.java:423)
         - locked <0xb8ee8788> (a java.lang.Object)
         at org.quartz.simpl.SimpleThreadPool.access$000(SimpleThreadPool.java:53)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:514)
    "StatisticsThread" daemon prio=5 tid=0x011352b8 nid=0x57 in Object.wait() [9597f000..9597fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xb8ee8b20> (a com.geico.tangosol.stats.StatsDaemon)
         at com.geico.tangosol.stats.StatsDaemon.run(StatsDaemon.java:144)
         - locked <0xb8ee8b20> (a com.geico.tangosol.stats.StatsDaemon)
         at com.tangosol.util.Daemon$1.run(Daemon.java:63)
    "DistributedCache:dist-rtq-sessionheader:EventDispatcher" daemon prio=5 tid=0x004222a0 nid=0x56 in Object.wait() [95a7f000..95a7fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xb8ee8bd8> (a com.tangosol.coherence.component.util.daemon.queueProcessor.Service$EventDispatcher$Queue)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb8ee8bd8> (a com.tangosol.coherence.component.util.daemon.queueProcessor.Service$EventDispatcher$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "DistributedCache:dist-rtq-sessionheader" daemon prio=5 tid=0x01278fa0 nid=0x55 in Object.wait() [95b7f000..95b7fc28]
         at java.lang.Object.wait(Native Method)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb8ee8ca8> (a com.tangosol.coherence.component.util.daemon.QueueProcessor$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "DistributedCache:dist-hibernate-default:EventDispatcher" daemon prio=5 tid=0x015273f0 nid=0x54 in Object.wait() [95c7f000..95c7fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xb8ee8e80> (a com.tangosol.coherence.component.util.daemon.queueProcessor.Service$EventDispatcher$Queue)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb8ee8e80> (a com.tangosol.coherence.component.util.daemon.queueProcessor.Service$EventDispatcher$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "DistributedCache:dist-hibernate-default" daemon prio=5 tid=0x00ea1328 nid=0x53 in Object.wait() [9607f000..9607fc28]
         at java.lang.Object.wait(Native Method)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb8ee8f50> (a com.tangosol.coherence.component.util.daemon.QueueProcessor$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "Invocation:Management" daemon prio=5 tid=0x003d8968 nid=0x52 in Object.wait() [95d7f000..95d7fc28]
         at java.lang.Object.wait(Native Method)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb8448698> (a com.tangosol.coherence.component.util.daemon.QueueProcessor$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "Invocation:Management:EventDispatcher" daemon prio=5 tid=0x007e6040 nid=0x51 in Object.wait() [95e7f000..95e7fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xb84487f0> (a com.tangosol.coherence.component.util.daemon.queueProcessor.Service$EventDispatcher$Queue)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb84487f0> (a com.tangosol.coherence.component.util.daemon.queueProcessor.Service$EventDispatcher$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "TcpRingListener" daemon prio=6 tid=0x007e6f40 nid=0x50 runnable [95f7f000..95f7fc28]
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
         - locked <0xb84488d0> (a java.net.PlainSocketImpl)
         at java.net.ServerSocket.implAccept(ServerSocket.java:448)
         at java.net.ServerSocket.accept(ServerSocket.java:419)
         at com.tangosol.coherence.component.net.socket.TcpSocketAccepter.accept(TcpSocketAccepter.CDB:17)
         at com.tangosol.coherence.component.util.daemon.TcpRingListener.acceptConnection(TcpRingListener.CDB:9)
         at com.tangosol.coherence.component.util.daemon.TcpRingListener.onNotify(TcpRingListener.CDB:1)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:34)
         at java.lang.Thread.run(Thread.java:534)
    "Cluster" daemon prio=5 tid=0x00c94738 nid=0x4e in Object.wait() [9617f000..9617fc28]
         at java.lang.Object.wait(Native Method)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb8448ac0> (a com.tangosol.coherence.component.net.Cluster$ClusterService$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "PacketPublisher" daemon prio=6 tid=0x00d83418 nid=0x4d runnable [9627f000..9627fc28]
         at java.lang.Object.wait(Native Method)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb8448c78> (a com.tangosol.coherence.component.net.Cluster$PacketPublisher$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "PacketReceiver" daemon prio=7 tid=0x00b3cd70 nid=0x4c in Object.wait() [9637f000..9637fc28]
         at java.lang.Object.wait(Native Method)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb8448dc0> (a com.tangosol.coherence.component.net.Cluster$PacketReceiver$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "PacketListenerN" daemon prio=8 tid=0x003d7cd0 nid=0x4b runnable [9647f000..9647fc28]
         at java.net.PlainDatagramSocketImpl.receive(Native Method)
         at java.net.DatagramSocket.receive(DatagramSocket.java:711)
         - locked <0xb84494c8> (a java.net.DatagramPacket)
         - locked <0xb84494e8> (a java.net.MulticastSocket)
         at com.tangosol.coherence.component.net.socket.UdpSocket.receive(UdpSocket.CDB:18)
         at com.tangosol.coherence.component.net.UdpPacket.receive(UdpPacket.CDB:17)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.packetProcessor.PacketListener.onWait(PacketListener.CDB:5)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "PacketListener1" daemon prio=8 tid=0x00df5538 nid=0x4a runnable [9657f000..9657fc28]
         at java.net.PlainDatagramSocketImpl.receive(Native Method)
         at java.net.DatagramSocket.receive(DatagramSocket.java:711)
         - locked <0xb8449cb8> (a java.net.DatagramPacket)
         - locked <0xb8449cd8> (a java.net.DatagramSocket)
         at com.tangosol.coherence.component.net.socket.UdpSocket.receive(UdpSocket.CDB:18)
         at com.tangosol.coherence.component.net.UdpPacket.receive(UdpPacket.CDB:17)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.packetProcessor.PacketListener.onWait(PacketListener.CDB:5)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "Logger@13785534 3.1.2/343" daemon prio=3 tid=0x006b7358 nid=0x49 in Object.wait() [9667f000..9667fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xb8449e90> (a com.tangosol.coherence.component.application.console.Coherence$Logger$Queue)
         at com.tangosol.coherence.component.util.Daemon.onWait(Daemon.CDB:9)
         - locked <0xb8449e90> (a com.tangosol.coherence.component.application.console.Coherence$Logger$Queue)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:31)
         at java.lang.Thread.run(Thread.java:534)
    "ExecuteThread: '5' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x011384b0 nid=0x48 in Object.wait() [9677f000..9677fc28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <0xb82c91f8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '4' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x01137bc8 nid=0x47 in Object.wait() [9687f000..9687fc28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <0xb82c9278> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '3' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x0111d4e0 nid=0x46 in Object.wait() [9697f000..9697fc28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <0xb82c92f8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '2' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x010dd218 nid=0x45 in Object.wait() [96a7f000..96a7fc28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <0xb82c9378> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '1' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x00bb1c98 nid=0x44 in Object.wait() [96b7f000..96b7fc28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <0xb82c93f8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '0' for queue: 'JMS.TimerClientPool'" daemon prio=5 tid=0x00979ac8 nid=0x43 in Object.wait() [96c7f000..96c7fc28]
         at java.lang.Object.wait(Native Method)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <0xb82c9478> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "Thread-12" daemon prio=5 tid=0x00200610 nid=0x42 waiting on condition [96d7f000..96d7fc28]
         at java.lang.Thread.sleep(Native Method)
         at com.geico.log.HeartbeatLogger$1.run(HeartbeatLogger.java:133)
    "Thread-10" daemon prio=5 tid=0x00200470 nid=0x41 waiting on condition [96e7f000..96e7fc28]
         at java.lang.Thread.sleep(Native Method)
         at com.geico.log.StreamLogger.pause(StreamLogger.java:267)
         at com.geico.log.StreamLogger.access$300(StreamLogger.java:19)
         at com.geico.log.StreamLogger$WorkerThread.run(StreamLogger.java:221)
         at java.lang.Thread.run(Thread.java:534)
    "ClockDaemonThread-0" daemon prio=5 tid=0x00ab6a48 nid=0x40 in Object.wait() [96f7f000..96f7fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xb8051b20> (a com.geico.util.concurrent.ClockDaemon)
         at com.geico.util.concurrent.ClockDaemon.nextTask(ClockDaemon.java:328)
         - locked <0xb8051b20> (a com.geico.util.concurrent.ClockDaemon)
         at com.geico.util.concurrent.ClockDaemon$RunLoop.run(ClockDaemon.java:362)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-9" prio=5 tid=0x008912e0 nid=0x3f in Object.wait() [9ad7f000..9ad7fc28]
         at java.lang.Object.wait(Native Method)
         at java.util.TimerThread.mainLoop(Timer.java:429)
         - locked <0xb8051bc0> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:382)
    "ExecuteThread: '0' for queue: 'JMS.TimerTreePool'" daemon prio=5 tid=0x001d7fa8 nid=0x3e in Object.wait() [9ae7f000..9ae7fc28]
         at java.lang.Object.wait(Native Method)
         at weblogic.jms.backend.BETimerTree.execute(BETimerTree.java:146)
         - locked <0xb8051c90> (a weblogic.jms.backend.BETimerTree)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    "Thread-8" prio=5 tid=0x00247418 nid=0x3d in Object.wait() [9af7f000..9af7fc28]
         at java.lang.Object.wait(Native Method)
         - waiting on <0xb8051d20> (a java.util.TaskQueue)
         at java.util.TimerThread.mainLoop(Timer.java:429)
         - locked <0xb8051d20> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:382)
    "Thread-7" prio=5 tid=0x001d8a28 nid=0x3c in Object.wait() [9b07f000..9b07fc28]
         at java.lang.Object.wait(Native Method)
         at java.util.TimerThread.mainLoop(Timer.java:429)
         - locked <0xb8051dc0> (a java.util.TaskQueue)
         at java.util.TimerThread.run(Timer.java:382)
    "ExecuteThread: '0' for queue: 'weblogic.cluster.MulticastManager'" daemon prio=5 tid=0x00da0a60 nid=0x3b runnable [9b17f000..9b17fc28]
         at java.net.PlainDatagramSocketImpl.receive(Native Method)
         at java.net.DatagramSocket.receive(DatagramSocket.java:711)
         - locked <0xa22dc3e8> (a java.net.DatagramPacket)
         - locked <0xb7558130> (a java.net.MulticastSocket)
         at weblogic.cluster.FragmentSocket.receive(FragmentSocket.java:169)
         at weblogic.cluster.MulticastManager.execute(MulticastManager.java:395)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    "SSLListenThread.Administrator" prio=5 tid=0x00c7db08 nid=0x3a runnable [9b27f000..9b27fc28]
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
         - locked <0xb75582a0> (a java.net.PlainSocketImpl)
         at java.net.ServerSocket.implAccept(ServerSocket.java:448)
         at javax.net.ssl.impl.SSLServerSocketImp

    Hi,
    I guess this issue is related to your connectivity and hyperion services. Can you take a restart and try to execute the reports. Also try to check all your Hyperion services are up and running before executing the FR Reports. You can also check the Reporting services by login to Weblogic server (if you have applied it in your environment). In weblogic it should be in Running mode and not in Admin mode. If it is not in Running mode then try to check the Data Source setting from Connection Pool in Weblogic Server.
    Soumya

  • Server Hangs when I tried to Access web Application that deployed in Managed Server

              Hai All!
              Here is my problem ! I started Admin Server and Managed server in a same machine.
              I deployed HttpClusterServlet in web.xml of Managed server. When i started servers
              they start fine and says Clustering started.... But when i tried to Access index.jsp
              that is in Managed Server default web application ..Nothing happens. It neither
              throws exception nor shows the desired page.. Seems to be Browser hang and server
              hang. At this stage i am unable to access Admin console also.(I can access before
              i tried index.jsp of managed server).. It seems to be Hang Allover..
              Pls suggest me how to come out of this hanging...
              Rgds
              Manohar
              

    See my answer to your last post. The short answer is that the HttpClusterServlet is
              likely to be the problem and not the cluster. You can try one of the web server plugins
              or a hardware load balancer as a temporary workaround. You should file a case with
              support too...
              Manu Kar wrote:
              > Hai All!
              >
              > Here is my problem ! I started Admin Server and Managed server in a same machine.
              > I deployed HttpClusterServlet in web.xml of Managed server. When i started servers
              > they start fine and says Clustering started.... But when i tried to Access index.jsp
              > that is in Managed Server default web application ..Nothing happens. It neither
              > throws exception nor shows the desired page.. Seems to be Browser hang and server
              > hang. At this stage i am unable to access Admin console also.(I can access before
              > i tried index.jsp of managed server).. It seems to be Hang Allover..
              >
              > Pls suggest me how to come out of this hanging...
              >
              > Rgds
              > Manohar
              

  • CS4 InDesign Server hangs

    I've ran into a problem where the my CS4 InDesign Server hangs. 
    I'm adding pages dynamically using the JAVA API.  Basically I go through all the content, check to see if I've reached the ParagraphStyle that indicates the "end" of the document.  If not, I add a page, flow the content into a text frame on that page & check if I've reached the end.  If not I add another page.  And so on until I finally reach the end. But it ends up hanging while attempting to do this.  What's odd, it works the first 5-10 times, but it takes longer and longer each time it adds a page until around the 10th page or so, it completely stops.  I'm using the "duplicate(OptLocationOptionsEnum arg0, OptVariableType arg1)" method on the com.adobe.ids.layout.Page object.
    Any ideas?  I can provide sample code if it would help.
    -Josh

    Hi Chandi,
          If Microsoft fix is not working or it is too old to apply then go for manual process i.e.;
          In the Microsoft KB article follow this :-
         Services that use the local system account to log on to a Windows Server 2003-based computer start if the Allow service to interact with desktop
         option is turned on. To turn this option on, follow these steps:
    In the Services tool, click the service that you want to start, and then click Properties.
    Right-click the Log On tab, and then click to select the Allow service to interact with desktop check box.
    Click OK to exit the Properties dialog box.
       This will solve your problem.
       Thanks,
       Akansh Upadhyaya,
       System Engineer,
       (Windows + Unix.)

  • Server hangs and session variable value not maintained.

    dear all,
    this is exteremetly urgent. i upgraded my tomcat to 4.1.24.but i have problems running the same code which was working earlier, i get null in the value of session variable. and also get the following error
    ////////////////error got /////////////
    Compile failed; see the compiler error output for details.
    at org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:842)
    at org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:682)
    at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:317)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:370)
    at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext
    .java:473)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper
    .java:190)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:2
    95)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:193)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
    alve.java:256)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
    alve.java:191)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:
    2415)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:180)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatche
    rValve.java:171)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
    ava:172)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:174)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:22
    3)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
    :594)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
    ssConnection(Http11Protocol.java:392)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java
    :565)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadP
    ool.java:619)
    at java.lang.Thread.run(Thread.java:536)
    ///////////////end of error messsge ////////////
    the code where i am getting this message is as follows
    <%@ page session="true"%>
    <HTML>
    <HEAD><TITLE> LOGGED IN ok</TITLE> </HEAD>
    <%@ page import="java.sql.*" %>
    <%! // declaring variables
    String s = "";
    java.sql.ResultSet rs=null;
    java.sql.Connection con;
    java.sql.Statement stmt=null,stmt1=null;
    String username = "";
    String password = "";
    String Ousername = "";
    String Opassword = "";
    String changepass="";
    String usertype ="",useremail="",EmpName="";
    %>
    <body>
         <%      
         try
         //set session for max of 100 milliseconds
         // session.setMaxInactiveInterval(10000);
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         con = java.sql.DriverManager.getConnection("jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};" +"DBQ=c:/vishal/HelpDesk.mdb;DriverID=22;READONLY=false","","");
              stmt = con.createStatement();
              s = "select * from LoginUser";     
         username = request.getParameter("LogonId"); //get this through prev. form
         password = request.getParameter("txtPassword");
         out.println(username + " " + password);
         // make explicitly to lower case
         username = username.toLowerCase();
         rs = stmt.executeQuery(s);               
                        while(rs.next())
                        //getting data from database
                        Ousername = rs.getString("EmpName");
                        Opassword = rs.getString("Password");
                        useremail = rs.getString("EmailId");
                        usertype = rs.getString("UserType");     
                        if(Opassword.equals(password) && Ousername.equals(username)) //found match correct entry
                             changepass = request.getParameter("PasswordNew");
                             if(changepass != null)
                             stmt1 = con.createStatement(java.sql.ResultSet.TYPE_SCROLL_INSENSITIVE,java.sql.ResultSet.CONCUR_UPDATABLE);     
                             s = "update LoginUser set Password = '" + changepass + "' where EmpName = '" + username +"'";
                             out.println(s);
                             stmt1.executeUpdate(s);
                             stmt1.close();
                             if(usertype.equals("User") == false)//ie admin
                             session.setAttribute("username",username);     
    ************************this value not maintained *********************
                             session.setAttribute("useremail",useremail);
                             session.setAttribute("usertype",usertype);
    ************************this value not maintained *********************
                             //closing connections
                             %>                                                       
                                  <jsp:forward page= "ComplaintType.jsp" />                         
                             <%
                             else //user
                             EmpName = username;
                             session.setAttribute("EmpName",EmpName);                         
                             session.setAttribute("useremail",useremail);
                             //closing connections
                             %>
                             <jsp:forward page="ComplaintCategory.jsp" />
                             <%     
                             }//end if
                        }//while loop                                   
                        //first closing connections then forwarding                    
         %>
                        <jsp:forward page="InvalidLOGIN.jsp" />
                        <%     
                        ///rs.close();
                        ////closing
                        //stmt.close();
         // con.close();
         }//try
              catch(Exception ep)
              out.println(ep);
              System.exit(1);
         %>
    </BODY>
    </HTML>

    hi all,
    thanx a lot for your help,specially hari52
    hari52 strangely enough the code started working,but
    now i have another problem
    after a while my server hangs or gets shutdown ,a
    message is shown as
    "java.exe has generated error and will be shutdown"
    i know that more connections can be a prob. but i
    make sure that connections r closed on each page,also
    i am a newbie and do not have the time at present to
    learn abt. connection pool ,can this problem be
    solved easily?
    it would be a great help again on your part,
    thanx again,You remove the System.exit(1) line from the code inside the catch block
    and try again. That's the reason tomcat getting down. System.exit(1) should not be used inside jsp. it will make the underlaying Servlet Engine to shutdown.

  • EIS Server hangs

    Dear All,
    We have Hyperion 9.3V EIS running on windows. A schedule job runs every hour which
    1. Builds and loads data into an ASO cube
    2. Only builds a BSO cube.
    The problem here is that the EIS server hangs during the BSO outline build (after loading the Metadata Catalog information). It is needed to restart the server each time it hangs and runs sucessfully for some time and then starts hang. Searched the EIS server log and essbase and application log but no information was found. But in the event viewer it shows there has been a problem with the GLOBLC.32 dll.
    Need your help identifying what exactly the issue is and how can i overcome it?
    Thanks,
    Praveen

    EIS is notorious for crashing. I found if I stop and start the service between steps, I don't run into a problem. I just add a netstop and netstart into my batch script (I also put in a sleep 30 to allow it time to stop and start)

  • Connect To Server Hangs Before Prompting For Name And Password

    Hi Everyone.
    Connect to Server hangs for 25 seconds before prompting for name and password.
    I am trying to access a share on a Windows 2008 R2 domain controller via a Mac running 10.6.8 (Snow Leopard) using SMB.
    Example: smb://192.168.101.11/sharename
    Once connected, browsing is fine - it's just the connecting that takes a long time.
    I have specified port 139 and login name, I have disabled IP6 on the Mac, the Mac and Windows 2008 server are on the same LAN and are wired.
    Again, once connected, browsing is fine - it's just the connecting that takes a long time.
    Any help would be appreciated.
    Damian

    Something to add ...
    Connecting to a Windows 2008 stand-alone server outside of the domain (e.g., workgroup) does not have the same problem - the name and password prompt shows immediately.

  • Rendering 2k1556 to dpx - Once it starts it ain't gonna stop!

    I'm rendering Full Frame 2k1556 material in the color timeline. It renders fine... but should I wish to STOP the rendering by using the escape key, it CRASHES!!! So once you start rendering you can't stop without crashing it out!! Nuts!!! Its happening only on 2k material.. it has happened on 2 machines (as I wanted to test another system to see if it was the config of the main system causing the trouble...)
    I'm exporting dpx files and not QT movies... it seems to be fine if I export QT movies.
    Anyone come accross this... Apple please fix this!!
    Thanks

    You can try running "Apple Hardware Test" to see if it confirms it (note: AHT is not fail safe)
    If CD's came with your computer it is on a CD labeled "Hardware Test" To test with CD, insert the CD and restart holding the "c" key until you see the spinning gear.
    If DVD insert DVD then:
    1. Turn on or restart the computer.
    2. Immediately press and hold the Option key. After a few seconds, the Startup Manger screen appearsThe Startup Manager scans for available volumes.
    3. Optional: Clicking the circular arrow rescans for other volumes, including NetBoot Server volumes. You can eject any disc in the drive or open an empty tray-loading drive by holding down the Command (Apple) and Period (.) keys. The Command-Period key combination will also close the drive. After inserting a CD capable of starting up your computer, you could rescan for volumes.
    4. Click the startup volume you want to use. "Hardware Test"
    If hardware test does not mount or does not run bring the computer to Authorized Apple Repair.
    -mj
    [email protected]

  • BI Server Hanging and spiking CPU

    Hello all,
    The BI Server on my linux environment started today spiking the CPU and hanging. I restarted the services and the same issues happened again right after loading the subject areas metadata and running the init blocks. I thought it was one of the init blocks or something of that nature, but alas, it happens whenever it sends a query to an Oracle DB. There have been no changes to the RPD, startup scripts, the server/bin libnqsdbgatewayoci* files nor the Oracle client from what I can see. I tnspinged the Oracle DBs and also logged in via sqlplus with success. So at this point, I am at a loss as to why the bi server all of a sudden have this issue.
    I looked at the nqsserver.log and there is nothing that it shows of what is happening and why the bi server will peg the CPU. I looked at the NQQuery.log and see only that the queries are there and logged with no other messages that it returned. I even monitored the database sessions to see if the db conn pool logged in and submitted the query, which it did not. So I can only assume the connections where never made and the queries were never sent and it is in an infinite loop trying to connect and send the query. So how else can I tell or find more information to solve this one.
    I am running on Linux OS, OBI version 10.1.3.4.1.090414.1900. Oracle DB is 10gR2 and using 10g client.
    Thanks for any and all help on this. I searched google, the forums and metalink. Hopefully someone out there knows or can guide me.

    We met the same issue. Can you tell me more details how to resolve it? You mentioned restart the Linux instance, DB instance or what's kind of other instance? Thanks you in advanced for your response.

  • Server Hangs while compiling some EJB in Weblogic 6.1 SP5 on AIX 4.3.3

    Hi,
    Iam not able to deploy a J2EE application in WebLogic 6.1 SP5 on an AIX 4.3.3
    box.
    CMP is being used and my EJBs are not being compiled( though there are no errors
    thrown).
    Iam using IBM DB2 ver 8.0 DB as client and server.
    While compiling, the server Hangs, displaying the message "<Info> <Management>
    <Configuration changes for domain saved to the repository.>"
    Is there any configuration Issues with weblogic 6.1 SP5 and AIX 4.3.3?
    Because the same EAR works in SP3.
    Please help ASAP.
    Thanks in advance.
    Nagesh

    The only thing to do again with "hangs" is to take thread dumps. As for why
    things are going wrong...... I am at a loss other than some AIX weirdness.
    Cheers
    mbg
    "Deshpande" <[email protected]> wrote in message
    news:[email protected]...
    >
    Hi Mark,
    I tried it out ....I ran EJBC on all my EJB's and then tried to deploy myapplication.
    Application got deployed and the server was up, but JSP's dosent getcompiled(
    i.e when I want to run my application, my server hangs again).
    I tried one more option.. I pointed my JAVAHOME in startweblogic.sh to anSP3
    JDK .. and it worked!! Now with this JDK Iam able to deploy my entireapplication
    ( with out precompiled) also run through the application without anyproblems.
    I then over wrote the existing JDK ( of SP5 ) with that of SP3 and thentried.
    Which also works fentastically!!!
    I can feel something fishy here ....
    Any help in this regard is most welcome.
    Thanks and Regards...
    Nagesh
    "Mark Griffith" <[email protected]> wrote:
    Deshpande:
    "Deshpande" <[email protected]> wrote in message
    news:[email protected]...
    Hi Mark,
    Thanks again.
    For
    Q1> How much time was between the two dumps?
    A1> There was a minute gap B/w the two dumps. ( since it took so longto
    write
    the Core)
    Q2> How long have you waited with no progress seeming to be made?
    A1> Over a whole night. ( appx 14 hours).
    Now I believe you would have figured out what the problem is.Not sure if this is a statement saying you think I have figured it out,
    or a
    statement saying you think I should have figured it out but I haven't.
    Anyway... Did you try running ejbc on the "app" first?
    Meanwhile also it would be great, if you would tell me the proceduresto
    get support
    form the BEA and AIX to solve the Issue.
    http://www.bea.com/framework.jsp?CNT=index.htm&FP=/content/services/custome
    r_support/contacts/
    >>
    I would suggest sending as much detail as possible, including zips of
    the
    thread dumps and pointers to this newsgroup conversation [email protected]
    >>
    I do however suggest you first try running ejbc.
    Cheers
    mbg
    Thanks in advance.
    R
    Deshpande.
    "Mark Griffith" <[email protected]> wrote:
    Nagesh:
    Wow, AXI outputs some interesting thread dumps. ;)
    So the interesting thread (and the problem) is:
    "main" (TID:0x300C41D8, sys_thread_t:0x30010A60, state:CW, native
    ID:0x1)
    prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:429)
    at java.lang.UNIXProcess.waitFor(UNIXProcess.java:130)
    at weblogic.utils.Executable.exec(Executable.java(Compiled Code))
    at weblogic.utils.Executable.exec(Executable.java(Inlined CompiledCode))
    at
    weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.j
    a
    v
    a(Compiled Code))
    at
    weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java(Inlin
    e
    d
    Compiled Code))
    at
    weblogic.ejb20.ejbc.EJBCompiler.compileEJB(EJBCompiler.java(Compiled
    Code))
    at weblogic.ejb20.deployer.Deployer.runEJBC(Deployer.java(InlinedCompiled
    Code))
    at weblogic.ejb20.deployer.Deployer.compileEJB(Deployer.java(Compiled
    Code))
    at weblogic.ejb20.deployer.Deployer.deploy(Deployer.java(CompiledCode))
    at weblogic.j2ee.EJBComponent.deploy(EJBComponent.java:33)
    at weblogic.j2ee.Application.addComponent(Application.java:176)
    at weblogic.j2ee.J2EEService.addDeployment(J2EEService.java:117)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(Deploymen
    t
    T
    arget.java(Compiled Code))
    at
    weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(Deployme
    n
    t
    Target.java:286)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments
    D
    eploymentTarget.java:239)
    at
    weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(Deplo
    y
    m
    entTarget.java:199)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanIm
    p
    l
    ..java(Compiled Code))
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java
    C
    ompiled Code))
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMB
    e
    a
    nImpl.java:374)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java(Compiled
    Code))
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java(Compiled
    Code))
    at $Proxy34.updateDeployments(Unknown Source)
    at
    weblogic.management.configuration.ServerMBean_CachingStub.updateDeployment
    s
    ServerMBean_CachingStub.java:3015)
    at
    weblogic.management.mbeans.custom.ApplicationManager.startConfigManager(Ap
    p
    l
    icationManager.java:376)
    at
    weblogic.management.mbeans.custom.ApplicationManager.start(ApplicationMana
    g
    e
    r.java:164)
    at java.lang.reflect.Method.invoke(Native Method)
    at
    weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanIm
    p
    l
    ..java(Compiled Code))
    at
    weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java
    C
    ompiled Code))
    at
    weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMB
    e
    a
    nImpl.java:374)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    atcom.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java(Compiled
    Code))
    atweblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java(Compiled
    Code))
    at $Proxy48.start(Unknown Source)
    at
    weblogic.management.configuration.ApplicationManagerMBean_CachingStub.star
    t
    ApplicationManagerMBean_CachingStub.java:480)
    at weblogic.management.Admin.startApplicationManager(Admin.java:1309)
    at weblogic.management.Admin.finish(Admin.java:650)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:547)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:214)
    at weblogic.Server.main(Server.java:35)
    So the Server never gets out of the Main thread to run, because theEJBC
    compilation is "stuck", ejbc is running because either the EJB being
    deployed was previously deployed on a different version of WLS orejbc
    had
    never been run on those beans. Either there is a problem on the AIX
    VM
    where execing processes are not returning, OR the ejb that ejbc isrunning
    on is huge and is taking a REALLY long time. How much time was
    between
    the
    two dumps? How long have you waited with no progress seeming to bemade?
    Depending on the answers to these questions it maybe that there isa
    VM bug
    and you will need to contact BEA support to see the procedure forworking
    with AIX to resolve the issue.
    You maybe able to work around the problem by running EJBC on the ejb
    in
    question prior to starting the server.
    http://edocs.bea.com/wls/docs61/ejb/EJB_utilities.html#1075296
    Cheers
    mbg
    "deshpande" <[email protected]> wrote in message
    news:[email protected]...
    Hi, Mark,
    Thanks for the early reply.
    I have attached two consecutive dumps Zipped.
    Pls look into the same and helpme out.
    Thanks in advance.
    Regards,
    Nagesh
    "Mark Griffith" <[email protected]> wrote:
    When it hangs, you need to get thread dumps.
    "kill -3 PID" is how this works on Solaris. Additionally if the
    terminal/shell has focus that started the process you can do "CTRL
    Break"
    as
    well. The thread dumps will go to std-out/err, so you'll have
    to
    redierect
    std-out and err of the shell. (Make sure you don't nohup the
    process
    (if
    AIX even supports that) since this prevents sigquits). When thehang
    occurs
    take a thread dump, wait 10 seconds and take another one, thenplease
    zip
    and attach the file in a post.
    Cheers
    mbg
    "Deshpande" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    Iam not able to deploy a J2EE application in WebLogic 6.1 SP5
    on
    an
    AIX
    4.3.3
    box.
    CMP is being used and my EJBs are not being compiled( though
    there
    are no
    errors
    thrown).
    Iam using IBM DB2 ver 8.0 DB as client and server.
    While compiling, the server Hangs, displaying the message "<Info><Management>
    <Configuration changes for domain saved to the repository.>"
    Is there any configuration Issues with weblogic 6.1 SP5 and AIX
    4.3.3?
    Because the same EAR works in SP3.
    Please help ASAP.
    Thanks in advance.
    Nagesh

  • Manages Exchange server health Service is NOT starting after installing EDGE role using Exchange2013 SP1+CU5 setup

    I used Exchange 2013 SP1+CU5 to install Edge role on Windows server 2012 R2 workgroup machine
    then after installation the service "Exchange server health Service" was not starting automatically or manually with the following error "Error 1075: The dependency service does not exist or has been marked for deletion"
    and in the Event Viewer I have this error:
    Event Id: 7003
    The Microsoft Exchange Health Manager service depends on the following service: MSExchangeADTopology. This service might not be installed.
    please advice

    The Exchange 2013 Edge Role has a reduced set of services compare to a CAS or MBX server role:
    Active Directory Web Services
    Microsoft Exchange ADAM
    Microsoft Exchange Anti-spam Update
    Microsoft Exchange Diagnostics
    Microsoft Exchange Credential Service
    Microsoft Exchange Health Manager
    Microsoft Exchange Service Host
    Microsoft Exchange Transport
    Microsoft Exchange Transport Log Search
    The above one was from Exchange 2013 Sp1. Not sure whether Microsoft Exchange Health Manager service has been replaced from CU5.
    Just restart the edge server once again and ensure that you are able to see this service again in services console.
    Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com

  • Weblogic 11g hangs after adding -Xmanagement start parameter

    Hi.
    I've got very strange problem with Weblogic 11g.
    After adding to startup parameter:
    -Xmanagement:port=3107,authenticate=false,ssl=false
    server hangs during start.
    <May 2, 2012 2:45:19 PM> <INFO> <NodeManager> <Server output log file is '/u01/app/Oracle/Middleware/user_projects/domains/jmsZycie/servers/srv1/logs/srv1.out
    '>
    JAVA Memory arguments: -Xms512m -Xmx512m
    WLS Start Mode=Production
    CLASSPATH=/u01/app/Oracle/Middleware/patch_wls1036/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/Oracle/Middleware/jrockit-jdk1.6.0_29-R
    28.2.2-4.1.0/lib/tools.jar:/u01/app/Oracle/Middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/u01/app/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.ja
    r:/u01/app/Oracle/Middleware/modules/features/weblogic.server.modules_10.3.6.0.jar:/u01/app/Oracle/Middleware/wlserver_10.3/server/lib/webservices.jar:/u01/ap
    p/Oracle/Middleware/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/u01/app/Oracle/Middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/u01/a
    pp/Oracle/Middleware/wlserver_10.3/common/derby/lib/derbyclient.jar:/u01/app/Oracle/Middleware/wlserver_10.3/server/lib/xqrl.jar:/u01/app/Oracle/Middleware/pa
    tch_wls1036/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/Oracle/Middleware/jrockit-jdk1.6.0_29-R28.2.2-4.1.0/lib/tools.jar:/u01/app/Ora
    cle/Middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/u01/app/Oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar:/u01/app/Oracle/Middleware/modules/fe
    atures/weblogic.server.modules_10.3.6.0.jar:/u01/app/Oracle/Middleware/wlserver_10.3/server/lib/webservices.jar:/u01/app/Oracle/Middleware/modules/org.apache.
    ant_1.7.1/lib/ant-all.jar:/u01/app/Oracle/Middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar::/u01/app/Oracle/Middleware
    PATH=/u01/app/Oracle/Middleware/wlserver_10.3/server/bin:/u01/app/Oracle/Middleware/modules/org.apache.ant_1.7.1/bin:/u01/app/Oracle/Middleware/jrockit-jdk1.6
    .0_29-R28.2.2-4.1.0/jre/bin:/u01/app/Oracle/Middleware/jrockit-jdk1.6.0_29-R28.2.2-4.1.0/bin:/u01/app/Oracle/Middleware/wlserver_10.3/server/bin:/u01/app/Orac
    le/Middleware/modules/org.apache.ant_1.7.1/bin:/u01/app/Oracle/Middleware/jrockit-jdk1.6.0_29-R28.2.2-4.1.0/jre/bin:/u01/app/Oracle/Middleware/jrockit-jdk1.6.
    0_29-R28.2.2-4.1.0/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http://hostname:port/console *
    starting weblogic with Java version:
    java version "1.6.0_29"
    Java(TM) SE Runtime Environment (build 1.6.0_29-b11)
    Oracle JRockit(R) (build R28.2.2-7-148152-1.6.0_29-20111221-2104-linux-x86_64, compiled mode)
    Starting WLS with line:
    /u01/app/Oracle/Middleware/jrockit-jdk1.6.0_29-R28.2.2-4.1.0/bin/java -jrockit -Xms512m -Xmx512m -Dweblogic.Name=srv1 -Djava.security.policy=/u01/app/Oracle
    /Middleware/wlserver_10.3/server/lib/weblogic.policy -Dweblogic.ProductionModeEnabled=true -Dweblogic.system.BootIdentityFile=/u01/app/Oracle/Middleware/user
    _projects/domains/jmsZycie/servers/srv1/data/nodemanager/boot.properties -Dweblogic.nodemanager.ServiceEnabled=true -Dweblogic.security.SSL.ignoreHostnameVeri
    fication=false -Dweblogic.ReverseDNSAllowed=false -Xms2048m -Xmx2048m -Xnohup -Xverbose:gcpause,gcreport,memory -Xverify=none -Xmanagement:port=3107,authentic
    ate=false,ssl=false -Xss:512k -Xdebug -da -Dplatform.home=/u01/app/Oracle/Middleware/wlserver_10.3 -Dwls.home=/u01/app/Oracle/Middleware/wlserver_10.3/server
    -Dweblogic.home=/u01/app/Oracle/Middleware/wlserver_10.3/server -Dweblogic.management.discover=false -Dweblogic.management.server=http://10.2.124.194:7080
    -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false -Dweblogic.ext.dirs=/u01/app/Oracle/Middleware/patch_wls1036/profiles/default
    /sysext_manifest_classpath weblogic.Server
    [INFO ][memory ] Running with 32 bit heap and compressed references.
    [INFO ][memory ] GC mode: Garbage collection optimized for throughput, strategy: Generational Parallel Mark & Sweep.
    [INFO ][memory ] Heap size: 2097152KB, maximal heap size: 2097152KB, nursery size: 1048576KB.
    [INFO ][memory ] <start>-<end>: <type> <before>KB-><after>KB (<heap>KB), <time> ms, sum of pauses <pause> ms.
    [INFO ][memory ] <start> - start time of collection (seconds since jvm start).
    [INFO ][memory ] <type> - OC (old collection) or YC (young collection).
    [INFO ][memory ] <end> - end time of collection (seconds since jvm start).
    [INFO ][memory ] <before> - memory used by objects before collection (KB).
    [INFO ][memory ] <after> - memory used by objects after collection (KB).
    [INFO ][memory ] <heap> - size of heap after collection (KB).
    [INFO ][memory ] <time> - total time of collection (milliseconds).
    [INFO ][memory ] <pause> - total sum of pauses during collection (milliseconds).
    [INFO ][memory ] Run with -Xverbose:gcpause to see individual phases.
    [INFO ][mgmnt  ] Remote JMX connector started at address poc1:3107
    [INFO ][mgmnt  ] Local JMX connector started
    <May 2, 2012 2:45:22 PM CEST> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable th
    is check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <May 2, 2012 2:45:23 PM CEST> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disab
    le this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <May 2, 2012 2:45:24 PM CEST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Oracle JRockit(R) Version R28.2.2-7-148152-1.6.0_29-20111221
    -2104-linux-x86_64 from Oracle Corporation>
    <May 2, 2012 2:45:26 PM CEST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.6.0 Tue Nov 15 08:52:36 PST 2011 1441050 >
    <May 2, 2012 2:45:29 PM CEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <May 2, 2012 2:45:29 PM CEST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    And this is it.
    I am able to connetct from JRMC. After removing -Xmanagement all is working.

    Can you please take a thread dump and copy paste the stack trace for the Thread called "main" thread.
    Please take atleast 3 thread dumps with an interval of 10 seconds and paste the "main" thread stack trace from all the 3 thread dumps.
    After analyzing the stack trace we might be able to determine where it is hanging and thus giving us a clue where the issue could be.
    Arun

Maybe you are looking for

  • Stuck in HashMap + equals() behaviour

    I am studying the SCJP 6, and got stuck in one example from the book. package map583; import java.util.*; public class Dog {     public Dog(String n) {         name = n;     public String name;     public boolean equals(Object o) {         if(o insta

  • SQL Developer Export hangs - version 3.2.20.09

    Hi, I installed SQL Developer Version 3.2.20.09 Build MAIN-09.87 and try to export a query into csv file, it hangs after writing 100 rows, I don't see the file grows on OS, the progress-bar keeps saying 100 row I also tried .xls format, the problem r

  • Develop module - manual entry invisible

    In the Develop module, when manually type in an entry for any parameter (and don't leave the input box), the digits display while typing, but then disappear after about a second, such that you cannot see what you just typed in.  I think the font is j

  • Latest IOS displays fault code 1671, what does this mean?

    latest IOS displays fault code 1671, what does this mean?

  • How to rganize projects in albums

    I have a number of projects under Library Albums, one project per day, like events in iphoto. So when trying to organize, creating an album per month, then putting all the projects in a month in to this alum it is not possible - I must be very stupid