1234567891011 |
- #!/bin/sh
- RESOURCE_NAME=scene_zhuhai_partyhistor.jar
- APP_DEBUG=5005
- rm -f tpid
- nohup java -jar -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=${APP_DEBUG} $RESOURCE_NAME --spring.profiles.active=sit --server.port=8012 & echo $! > tpid
- echo Start Success!
|