Skip to content

Instantly share code, notes, and snippets.

@NbtKmy
Last active May 19, 2019 11:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NbtKmy/3c7f31d268dc2ccd151084bffb9d362a to your computer and use it in GitHub Desktop.
Save NbtKmy/3c7f31d268dc2ccd151084bffb9d362a to your computer and use it in GitHub Desktop.
#!/bin/bash
# für stoppen
path="/path/to/Cantaloupe-Ordner"
targetpath="$path/cantaloupe-4.0.2.war"
cd $path
echo "Stop $targetpath server."
pkill -f cantaloupe
# für starten
echo "restart $targetpath server."
nohup java -Dcantaloupe.config=$path/cantaloupe.properties -Xmx3g -jar $targetpath &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment