Search code examples
weblogic

UNIX Command to list all the instances of weblogic running on a server


I want the list of all instances of weblogic presently running on a server


Solution

  • ps -ajx | grep java

    or

    ps -elf | grep java
    

    This will give all java processes running, you can figure out weblogic process from there.