9 lines
189 B
Bash
9 lines
189 B
Bash
#!/bin/bash
|
|
export ENV_CLUSTER=cmc
|
|
export APP_NAME=fms
|
|
export SERVICE_NAME=sns
|
|
export POD_NAME=linux
|
|
cd /opt/cap/fms-sns
|
|
nohup /opt/cap/fms-sns/fms-sns > nohup.log 2>&1 &
|
|
echo $! > sns.pid
|