Skip to content

Instantly share code, notes, and snippets.

@svenvarkel
Created January 14, 2014 19:27
Show Gist options
  • Save svenvarkel/8424172 to your computer and use it in GitHub Desktop.
Save svenvarkel/8424172 to your computer and use it in GitHub Desktop.
Kill glassfish easily, quickly and for sure: ./kill_glassfish.sh
#!/bin/bash
ps -ef | grep "[c]om.sun.enterprise.glassfish.bootstrap.ASMain" | awk '{print $2}' | xargs kill -9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment