Jvm not terminating in Solaris 8

We are running Weblogic 7.0 sp1 on Solaris 8.
When we attempt to shutdown managed servers or admin server with a graceful
shutdown the java process is still in the process table?? We didnt
notice this
with Weblogic 7.0.
Also if you do a force shutdown then the jave process terminates
Any ideas

This is a known issue. Contact [email protected] and reference CR087180.
For now use kill -9 or weblogic.Admin SHUTDOWN to shutdown the managed
server.
Larry Presswood wrote:
As a note this happens only in the following situation
We have an admin server and two managed servers.
When we shutdown the manged server but not the admin server their jvms
ie managed server jvms dont terminate nor do their scripts. We are not
using
node manager. Now if you shutdown the admin server then all jvms will
terminate
So it appears as though the jvms in the managed servers are waiting on
something
from the admin server prior to terminating??
Larry Presswood wrote:
We are running Weblogic 7.0 sp1 on Solaris 8.
When we attempt to shutdown managed servers or admin server with a
graceful
shutdown the java process is still in the process table?? We didnt
notice this
with Weblogic 7.0.
Also if you do a force shutdown then the jave process terminates
Any ideas
Rajesh Mirchandani
Developer Relations Engineer
BEA Support

Similar Messages

  • File comparaison works on win32 JVM, not on 64bit solaris JVM

    Hi all!
    I have the following code comparing 2 files. It works on win2000 but doesnt work on unix solaris. (same JVM version)
    win32 JVM is 32 bit, solaris JVM 64 bit
    private boolean fichierIdentiqueBytePourByte( InputStream in1, InputStream in2 ) throws IOException{
              int a = 0, b = 0;
              while(true){
                // read next byte from both stream
                a = in1.read();
                b = in2.read();
                // if its different then files are different and we are done
                if (a!=b) return false;
                // if both are at eof then all checked must be the same
                if (a==-1&&b==-1) return true;
                // if either are at eof then they are different sizes
                if (a==-1||b==-1) return false;
         }any ideas of what the problem might be?
    Thanks

    Presumably when you say it didn't work you mean that in one case it returned true and in the other it returned false.
    If something else then you need to explain what it is.
    Naturally one obvious source of the problem is that in fact the files are not the same on the 64 bit machine. For example they were transferred using ftp and one was transferred using ftp text and other via ftp binary. Then the lengths would be different.
    Another possibility is that you are not running the code that you think you are.
    If the files are very large then it is possible there is some difference there.

  • Why keyboard and mouse right click not working in Solaris and Linux?

    Hi all,
    I have two problems:
    1) I am working on AWT/Swing application and its working fine in window enviornment,but while running on solaris and linux mouse right-click option window not poping up.
    2) Ctrl+c,Ctrl+v,Home and End keyboard key are not working in solaris and linux OS for same application.
    Pls provide me some solution for these problem.
    -Dinesh

    Hi Nik,
    Thanks for reply. I found some solution for the above problem.
    For mouse right click there was problem in my source code.I have not implemented the mousePressed() method
    In case of keyboard Home, End and arrow key working fine after exporting AWTUSE_TYPE4_PATCH=false; in solaris and linux
    But still Ctrl-c and Ctrl-v not working.
    I am using JDK1.5.0_07+Eclipse IDE 3.1
    -Dinesh

  • CNA 6 InstallShield Wizard will not install with a JVM not found message

    I ran CNA 5.5 up until last week when Java 7 71 update hit. When I tried to launch, I received JVM Not Found, that was all. So I figured it was time to install CNA 6, however during the install process I now get a pop up box stating  InstallShield Wizard will not install with a JVM not found message. No other error messages, no logs, and the installation ceases. Tried installing CNA 5.8.9.1, and CNA 5.5 again, all stop at the same point with the same message. Anyone else see this issue?

    When you start Network Assistant, Java determines whether the resources it needs are available. If they are not, Java displays the message Could not create Java Virtual machine, and the session ends. To overcome this problem, open the file C:\Program Files\Cisco Systems\CiscoSMB\Cisco Network Assistant\startup\startup.properties (the default installation path), and modify this entry:
    JVM_MAXIMUM_HEAP=1024m
    Replace 1024m with a lower setting that does not exceed the available RAM. There is no way to foresee what value will work. Try 512m , and lower it further if necessary. You can use the dial peer tag range 2500 to 2999 out-of-band to define your own dial peers.
    If the Network Assistant InstallShield wizard fails to start, it is likely that the temporary folder location defined through the environment variables TMP and TEMP has some problem. Assigning a correct temporary folder location can fix such problems.
    Source:  http://www.cisco.com/c/en/us/td/docs/net_mgmt/cisco_network_assistant/version6/relnotes/ol32368.html#pgfId-840748

  • BufferReader using reaLine() is not terminating when end of message.

    Hi folks,
    Newby Java here. I have a situation where I am writing a Server Socket Java program where I am accepting connection from a client and the client is sending messages me. I am able to connected to the client and the client successfully send messages to me, but the problem I am running into is that it's not terminating the while loop when I read to the end of the message using a reaLine(). It's like it's hung up or something...
    Here is a copy of the code.....
    ss = new ServerSocket(6500, 5);
    System.out.println("Listenning........waiting for connection from client");
    try {
    response = ss.accept();
    System.out.println("Accepted connection from client");
    InputStream in = response.getInputStream();
    System.out.println("Input Stream Opened");
    BufferedReader br = new BufferedReader(new InputStreamReader(in));
    System.out.println("Buffered Stream Opened");
    System.out.println("Server received: " + "\n" );
    BufferedWriter bw = new BufferedWriter(new FileWriter("testing001.txt"));
    String input = br.readLine();
    while (input != null) {
    bw.write(input);
    bw.newLine();
    input = br.readLine();
    br.close();
    bw.close();
    System.out.println("Done receiving message" + "\n" );
    OutputStream out = response.getOutputStream();
    BufferedWriter buf = new BufferedWriter(new OutputStreamWriter(out));
    buf.write(result);
    System.out.println("Server sent: "+result);
    buf.flush();
    buf.close();
    response.close();
    ss.close();
    catch (IOException e) {
    System.out.println("Failure accepting connection: " + e);
    What am I doing wrong that the while loop does not terminate when it reads to end of the message using this "readLine()"?
    It does not execute the next statement after the while-loop unless you disconnect the connection from the client.
    Help!

    readLine() will wait for more lines forever, or until the other end closes the connection. (For completeness: there are other termination situations too, mostly error conditions.)
    You have a multi-line message? Send some kind of an end-of-message line and check for it in your read loop. E.g. "." on a line all by itself. Caveat: if the message itself can contain a line like that you'll need to quote that line somehow. Another approach: send the number of lines in the message first. Requires that you know the number beforehand.

  • The task TS20000166 in PO release workflow( WS20000075 ) is not terminating

    Dear Experts ,
    The task TS20000166 in PO release workflow( WS20000075 ) is not terminating after release the PO .
    In the WS20000075 ,the event RELEASESTEPCREATED is triggeing and move to the next step.The next step is 'Release of purchase order'  , the task TS20000166  is not terminating after release of PO .So Workflow is not move to next step i.e  TS20000168.
    I have noted TS20000166  is having three terminating event ( RELEASED,RESET,SIGNIFICANTLYCHANGED ) but still it is not terminating.
    Is it Clear.If you want more details please let me know .Please help me.
    Thanks and Regards
    Rajesh

    Dear Raj,
    Please check agent assignment. And also check graphical mode error and check how many events fire one after one. Because for rejecting there is one more workflow u have to activate but i dont think so u have to activate it after realease . In agent assign ment check workflow with normal agent assignment dont use release stretargy then check it again if it is working fine then it must be problem of agent assignment step.
    Reagrds,
    Gurprit Bhatia

  • Terminating Event in PO Release Workflow. Workitem is not terminating

    Hi WF Experts,
                            I have done Purchase Order Release Workflow with 10 level release With 2 days dead line. Since standard release supports only 8 level release i have opted for Role Resolution Via User Exit 9 . and i am picking release codes from ztable.
    I was working fine till now.But suddenly end users are facing problem that workitem is not terminating even after they have released the PO.
    What could be the issue what is the terminating event for PO Release workitem.
    Please suggest me how to resolve this issue.
    Regards,
    Hari

    Hi Hari,
    Please check if the following links helps:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/sap%252bworkflow%252bevents
    http://help.sap.com/saphelp_nw04/helpdata/en/c5/e4b590453d11d189430000e829fbbd/frameset.htm
    Hope this helps!
    Regards,
    Saumya

  • JVM not Installed.

    Hi guys,
                        I have installed sap BO 4.0 64 bit SP6 server on my machine.Everything is fine, but when i try to open Webi it is showing JVM not installed. We have already installed JVM in the machine and we have given path also.
    Error:Cannot Launch Java Report Panel, please make sure you have installed a java virtual machine.
    Thanks&regards,
    Krishna

    I am facing same issue I am using BO 4.1sp1 64bit windows 2008  server
    when I go http://BOhostname:port/BOE/BI
    When I click Web intelligence icon
    I will run webi report and also edit it what JAVA version need to install in client Machine and also 32bit or 64bit because BOBJ server is 64bit but BOBJ client is 32bit .
    Regards

  • Oracle Reports Team Please Help..! Arabic Reports PDF not working in Solaris

    Hi,
    I am not able to Generate Arabic PDF reports (HTMLCSS is working fine with me.....)
    O/s is Solaris........O/s supports Arabic....
    NLS_LANG is set to "ARABIC_EGYPT.AR8ISO8859P6"
    In place of arabic content its showing Junk characters..... In win2k Its working fine........ I have checked my uifont.ali I am giving my PDF section details..
    [ PDF:Embed ]
    helvetica = "helvetica.afm helvetica.pfa"
    [ PDF:Subset ]
    Arial = "Arial.ttf"
    helvetica = "Arial.ttf"
    "Andale Duospace WT J" = "Aduoj.ttf"
    "Albany WT J"="AlbanWTJ.ttf"
    "MS UI Gothic" = "msgothic.ttc"
    And i have Included the Fonts folder entry in REPORTS_PATH variable entries...Is there any thing needs to be done.....??????
    Why its not working in Solaris........PLEASE HELP ME OUT...........!!!!!
    Thanks in Advance........
    sharat ([email protected])

    Hi Sharat
    I see that you have two entries for helvetica font in your uifont.ali. Be aware that order of precedence is alias->embed->subset. If the helvetica part is appearing junk, try and comment out the entry in embed section and let the subsetting happen.
    On Solaris, ensure that the case of font file names match.
    Regards
    Sripathy

  • Soc not recognized in Solaris 10

    I have installed a soc card (501-2069) into a Ultra Sparc 2 running Solaris 10 and connected it to a Enterprise Network Array (not sure of the model). I can see the card using prtdiag, but am not able to see the drives in the array or even tell if the OS is seeing the array at all. Any help would be greatly appreciated.

    I've been pondering this question since the first day you posted it.
    I do not think that Solaris 10 has support for such an older generation Fibre hardware.
    That card and its FCOM modules (100mbit speed), as well as the arrays are a bit too old for Solaris-10.
    You may have to go back to Sol9, else replace the adapters and the RSM arrays (with GBICs and A5x00's for example).
    I have not been able to find any web link to confirm that the support was EOL'd, however.

  • D-Link 562M modem does not works in Solaris 10 (?)

    I use D-Link 562M external USB 56K modem. Modem works in Windows but does not works in Solaris 10 (?). Help me!

    pat.gibbons wrote:
    Not supported yet but will be in a future Solaris Express release.Many USB modems are not really modems but the entire signal processing is done by the host computer. Such "winmodems" require signal processing software which is quite complex. I do not think that such modems are supported in the following versions of Solaris.
    If the 562M is NOT such a modem (but a "real" one) it should be quite easy to adapt a driver to work with this modem.
    Martin

  • Some Executions Are Not Terminated by Using Terminate All in Parallel Process Model

    Hi,
    This issue confued me recently, I'd like to use a parallel model process, and to terminate all execution at once.
    If there's some action steps in the sequence, it seemed all execution will be terminated.
    However, I put a wait function instead of action steps, there are some executions not terminated while I pressed the Terminate All button in the toolbar.
    Hope someone can give me some help. Thanks a lot.
    ps. the number of testsockets is set to 9 in my teststand.
    Solved!
    Go to Solution.
    Attachments:
    Terminate_Test.seq ‏7 KB

    Hi, Ting,
    Thanks for your help.
    I'd like to add some additional remarks,
    What I'd like to know is what cause the termination unstable in such a situation.
    The timing seemed to play an important role, but it is not my orignal concern.
    I used the testsocket of the last one to send the TerminateAll() command, but the choise is an accident...
    Originally I take the first testsocket to send TerminateAll() command, it works "well".
    I've notice the terminating action is always done in the reverse order of the testsocket(i,e, from the last testsocket to the first one),
    it seemed to make each testsocket go to cleanup and then not allow the testsocket continue.
    If we trace the executions more detailedly, it can be found the executions not terminated are actually received the command of the TerminateAll().
    They went to cleanup, and waited for the following "not continue" procedure, but somehow it missed so that they survived to repeat the execution.
    This consquence is a little like the termination is terminated...(not tongue twister...XD)
    If my postulation is true, it is safe to put the TerminateAll() command to the first testsocket so that the latter executions will be terminated before the first one terminated.
    If I put it to the latter testsocket or the last one, the termination will be terminated and some executions will revive.
    If I skip the wait function in the cleanup, the situation is not optimistic as my thought, the last testsocket will revive itself and back to the terminate command to send it again so that it makes me feel that it is better if I skipped the wait function.
    The above is my unconfirmed idea, maybe it totally wrong, if someone can correct my understanding I would be greatly appreciated.
    BTW, it is really special case, so we can take it easy, hope this will not add your loading and we can discuss freely as an amateur

  • JVM not allowing a jDialog to pop up?

    I wrote a date picker class that extends JDialog using Eclipse: VE. everything works fine in eclipse when I run the code, but when I export the project to a .jar file the date picker will not pop up. I assume this is a safety feature of the JVM not popping up an extension of JDialog. Has anyone heard of this happening or know how to get around it.

    well, it was a problem with how it accessed images... I figured it out.

  • Swedish chars ��� not working under Solaris

    Hi All,
    I created the following little code and it is not working under Solaris 7, JDK1.4.1_01. (also tested some other but does not work)
    public class HelloSweden
    public static void main(String [] args)
    String newName="���";
    String charsetName = "iso-8859-2";
    byte [] s = {(byte)229, (byte)228, (byte)246};
    try
    newName = new String(s, 0, s.length, charsetName);
    catch ( java.io.UnsupportedEncodingException e )
    System.err.println(e.getMessage());
    e.printStackTrace();
    System.out.println("new name is: "+newName);
    for(int i=0; i<newName.getBytes().length; i++)
    System.out.println(i+"."+":"+newName.getBytes());
    The problem is that on Solaris 7 the output is:
    new name is: ???
    0.:63
    1.:63
    2.:63
    Whereas on Linux it works fine:
    new name is: ���
    0.:-27
    1.:-28
    2.:-10
    I also tried the "javac -encoding iso8859-1" option but no use.
    Could anybody help?
    Thnx,
    GF

    I also tried the "javac -encoding iso8859-1" option
    but no use.
    Was the output exactly the same or were the numbers correct, at least?
    You may need to compile with:
    javac -encoding ISO-8859-1 ClassName.java
    and then run with:
    java -Dfile.encoding=ISO-8859-1 ClassName
    You can set the character encoding explicitely like that. The character encoding depends on locale settings; if you set LC_ALL to a Swedish locale ("sv_SE"?) javac and java should start using the correct encodings automatically.

  • While loop not terminating

    hmm. very strange to me. i have a condition that if a person enters QUIT then the program should terminate but for some reason its not terminating.
    import java.util.*;
    class BicycleTest {
         public static void main(String[] args) {
              BNode start, tail, next;
              start = null;
              Scanner s = new Scanner(System.in);
              System.out.println("Enter name");
              String name = s.next();
              if(!name.equalsIgnoreCase("QUIT")) {
                   start = new BNode(new Bicycle(name), null);
                   tail = start;
                   while(true) {
                        name = s.next();
                        if(name.equalsIgnoreCase("QUIT")) break;
                        next = new BNode(new Bicycle(name), null);
                        tail.setNext(next);
                        tail = next;
    }

    jverd when you say an older version that means the
    java version or the compiler? No, an older version of your code. Like you changed it (to what you first posted) but forgot to save or recompile. Maybe before you had equals instead of equalsIgnoreCase, or something like that.

Maybe you are looking for

  • Adobe Photoshop CS6: Photoshop.exe - System Error  The program can't start because ONCoreFoundation7

    I get this error after updating ONONE premium edition 8 to 8.1 been to their site no luck in resoving error. I click ok to error PS cs6 still launches, just annoying. ONCoreFoundation7.dll  is part of ONONE 7

  • Inserting & symbol to table through procedure

    I want to insert a data with & symbol into a table through the procedure. Is it possible. through the console i put set define off. it works fine on console. but in plsql i am unable to use set commands since it is a console command. please advice.

  • Upgrade to iPhoto 6, keep library on external HD

    I am finally upgrading from iPhoto 2 (go ahead, mock me) to iPhoto 6. Since my internal HD is so small, I keep my entire iPhoto library on my external firewire drive. When I do the install of 6, will I have to move the new library like I did the old

  • Question on Schedule Line category in Sales Order not relevant to MRP

    Hi experts, I want to know whether the sales order having any schedule line category like CP, CN, etc will not be relevant for MRP. In other words, If I do the MRP run for the Sales Order Requiremnt having any Schedule Line Category in particular wil

  • XMLEncoder problem

    Hi all!! when i was using XMLEncoder class for serializing some objects in a xml file using Jrun4 application server, it is creating the file(xml) in bin folder.But i need to have a xml file to have in webapp folder... please guide me on this......