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