Created
July 15, 2021 01:58
-
-
Save luojiyin1987/5278ab682fcd084c5567f4f343a1bca6 to your computer and use it in GitHub Desktop.
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
| #/bin/bash | |
| while true; | |
| do | |
| count=`ps -p $(cat application.pid)|wc -l` | |
| if [ ${count} -lt 2 ]; then | |
| nohup jdk-11.0.11/bin/java -Xms2g -Xmx8g -jar auto-image-compose-server-0.0.1-SNAPSHOT.jar & | |
| else | |
| echo "image-compose-server is running" | |
| fi | |
| sleep 60 | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment