Archive for the ‘Uncategorized’ Category
How to kill my WebSphere JVM
It seems to happen often enough that I had to note this
If your in WebSphere counsole and stop your JVM but it doesn’t go down, or it partially goes down.. Open a command line on the server
If the JVM is called: server1
run this: ps -ef|grep server1
Then find the processID and run: kill -9 (procID)
cat /proc/loadavg
5.2.16. /proc/loadavg This file provides a look at the load average in regard to both the CPU and IO over time, as well as additional data used by uptime and other commands. A sample /proc/loadavg file looks similar to the following:
0.20 0.18 0.12 1/80 11206
The first three columns measure CPU and IO utilization of the last one, five, and 10 minute periods. The fourth column shows the number of currently running processes and the total number of processes. The last column displays the last process ID used.
good link to explain load: