9 lines
384 B
Bash
9 lines
384 B
Bash
#!/bin/sh
|
|
source /etc/profile
|
|
|
|
cd $(dirname $0)
|
|
|
|
|
|
nohup java -jar -Xms128m -Xmx2048m -XX:PermSize=128M -XX:MaxPermSize=256M -XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+ExplicitGCInvokesConcurrent -XX:MaxInlineLevel=15 ./data-metadata-service-console/data-metadata-service-console.jar --server.port=8821 > data-metadata-service-console.log 2>&1 &
|
|
|