Sunday, February 21, 2010

Useful UNIX commands for WebSphere Application server...

These are some useful commands that i came across when administrating WebSphere Application Server. Note these commands are specifically written for LINUX but most of them would for other UNIX platforms like Solaris, AIX and other flavours of LINUX like SUSE or REDHAT.


Performance related Commands to monitor system performance


-------------------------------------------------------------------------

1) Find the process that uses most CPU

ps -eo pcpu,pid,user,args
sort -k 1 -r
head -2

(eg) output of the above command when websphere server process is utilizing the most of the CPU


%CPU     PID    USER       COMMAND
71.7       31237   root          /cust/IBM/WebSphere/AppServer/java/bin/java -Xbootclasspath/p:/cust/IBM/WebSphere/AppServer/java/jre/lib/ext/ibmorb.jar:/cust/IBM/WebSphere/AppServer/java/jre/lib/ext/ibmext.jar -Dwas.status.socket=54859 -classpath
 /cust/IBM/WebSphere/AppServer/profiles/AppSrv02/properties:/cust/IBM/WebSphere/AppSer

No comments:

Post a Comment