You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
406 B
12 lines
406 B
#!/bin/bash
|
|
|
|
if [ -e jdk-17.0.12_linux-x64_bin.tar.gz ]; then
|
|
echo "jdk-17.0.12_linux-x64_bin.tar.gz >>> done"
|
|
else
|
|
wget http://192.168.1.88:9001/server-source/jdk-17.0.12_linux-x64_bin.tar.gz
|
|
tar -xzvf jdk-17.0.12_linux-x64_bin.tar.gz && mv jdk-17.0.12/ /usr/local/jdk-17.0.12 && chmod +x /usr/local/jdk-17.0.12/bin/java
|
|
fi
|
|
|
|
ECHO $JAVA_HOME
|
|
|
|
java -jar -XX:+HeapDumpOnOutOfMemoryError /app.jar
|