Skip to content

Instantly share code, notes, and snippets.

@camsaul
Created June 22, 2016 22:44
Show Gist options
  • Save camsaul/54cc74fd4b65a7348f0c1cf370e37298 to your computer and use it in GitHub Desktop.
Save camsaul/54cc74fd4b65a7348f0c1cf370e37298 to your computer and use it in GitHub Desktop.
Killing process locking a file
# list process that owns a file
lsof | grep myfile
# kill all java processes
killall -9 java
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment