yd-yunxing-server/start.sh

9 lines
207 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
## jar包名与之前服务名保持一致
java -Xms128m -Xmx128m -jar /home/app/${serverName}.jar --spring.profiles.active=dev
if [ $? != 0 ]; then
echo Failed to start java >&2
exit 1
fi