5 lines
210 B
Bash
5 lines
210 B
Bash
#!/bin/bash
|
|
cd /opt/cap/fms-master
|
|
nohup /usr/bin/java -Dconfig.file=master2.conf -Dlogback.configurationFile=/opt/cap/fms-master/logback.xml -jar fms-master.jar 2552 > master2.log 2>&1 &
|
|
echo $! > master2.pid
|