mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-05-27 23:47:49 +08:00
8 lines
435 B
Bash
8 lines
435 B
Bash
#!/bin/bash
|
|
echo ${WVP_IP}
|
|
echo ${WVP_CONFIG}
|
|
cd /opt/assist
|
|
nohup java ${ASSIST_JVM_CONFIG} -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/opt/assist/heapdump/ -jar *.jar --spring.config.location=/opt/assist/config/application.yml >assist.log &
|
|
cd /opt/wvp
|
|
nohup java ${WVP_JVM_CONFIG} -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/opt/wvp/heapdump/ -jar *.jar --spring.config.location=/opt/wvp/config/application.yml >wvp.log
|