10 lines
367 B
Bash
10 lines
367 B
Bash
#!/bin/bash
|
|
|
|
CLEARING_HOME=/opt/mfd/clearing/
|
|
cd $CLEARING_HOME/bin
|
|
|
|
echo Warinig: start test module "test-api-clearing.jar". Do not use this on real system, please.
|
|
CMD="java -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:7702 -jar test-api-clearing.jar --spring.config.location=$CLEARING_HOME/settings/test-api-clearing/"
|
|
|
|
$CMD >/dev/null 2>&1 &
|
|
|