Skip to content

Instantly share code, notes, and snippets.

@neesonqk
Created April 13, 2019 01:51
Show Gist options
  • Save neesonqk/771f9b023901f06939608a2e27398fa1 to your computer and use it in GitHub Desktop.
Save neesonqk/771f9b023901f06939608a2e27398fa1 to your computer and use it in GitHub Desktop.
Run, Stop SpringBoot jar @ background
# START
# hit `enter` after below command
nohup java -jar my.jar > my.out &
# STOP
ps -A |grep java
kill -9 PID
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment