Quantcast
Channel: The Middleware Shop » WebSphere Shell Script
Viewing all articles
Browse latest Browse all 14

A simple bash script to kill WebSphere processes

$
0
0

A simple bash script to kill WebSphere processes

#!/bin/bash
export thePids=`ps -ef | grep -e '-Duser.install.root[^ ]*' | grep -v grep | awk -F" " '{print $2}'`
if [[ -z "${thePids}" ]]; then
            echo "No WAS process found!"
            exit 1
fi
for thePid in $thePids
    do
        echo "killing the pid=[${thePid}] using kill -9 ${thePid}"
        kill -9 ${thePid}
    done;

 


Viewing all articles
Browse latest Browse all 14

Trending Articles