8 lines
352 B
Bash
8 lines
352 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 ./system-service.jar --server.port=8000 --spring.profiles.active=dev > system-service.log 2>&1 &
|
|
|