wiki:waue/2009/0706
close Warning: Can't synchronize with repository "(default)" (Unsupported version control system "svn": /usr/lib/python2.7/dist-packages/libsvn/_core.so: failed to map segment from shared object: Cannot allocate memory). Look in the Trac log for more information.
pid=$(ps axw -eo pid,command | grep "org.apache.catalina.startup.Bootstrap" | grep "start" | awk '{print $1}')
if [ -z "$pid" ]; then
    echo "tomcat is not running"
else
    echo "tomcat is detected and the pid is $pid"
    kill -9 $pid
    if [ -z $? ];then
        echo " tomcat ($pid) is  killed ..."
    else
        echo "kill error ..." 
    fi
fi
Last modified 16 years ago Last modified on Jul 6, 2009, 4:46:08 PM