hi,
using killall will affect all java processes, better use kill with pid
of current java instace You can obtain PID with command like this
PID=ps ux | awk '/n2hell.jar/ && \!/awk/ {print $2}'
kill $PID
also, you not need -9 signal, use common SIGTERM (kill without
parameters)