Created
April 13, 2019 01:51
-
-
Save neesonqk/771f9b023901f06939608a2e27398fa1 to your computer and use it in GitHub Desktop.
Run, Stop SpringBoot jar @ background
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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