13 lines
326 B
Bash
13 lines
326 B
Bash
#!/bin/sh
|
|
|
|
curuser=`whoami`
|
|
|
|
if [ $curuser = "root1" ];then
|
|
echo "root Operation is not allowed!!"
|
|
exit -1
|
|
fi
|
|
|
|
./up_conf.sh
|
|
|
|
./json_logload_svr a5game_zs_999 --id 10.999.93.1 --log-conf-file ./jsonlogload_svr_log.xml --log-level 300 --conf-file ./jsonlogload_svr.xml --pid-file=./logload_json_10_999_svr.pid --daemon start
|