- 修改 msgq_config.xml 中的 IP 地址从 121.41.123.129 到 10.999.91.1 - 更新 relation_svr 相关配置,包括共享内存键值和日志路径 - 修改 zone_svr 启动和停止脚本中的 IP 地址
12 lines
239 B
Bash
Executable File
12 lines
239 B
Bash
Executable File
#!/bin/sh
|
|
|
|
curuser=`whoami`
|
|
|
|
if [ $curuser = "root1" ];then
|
|
echo "root Operation is not allowed!!"
|
|
exit -1
|
|
fi
|
|
|
|
../bin/zone_svr --id=10.999.91.1 --business-id=10 --conf-file ../cfg/zone_svr.xml --pid-file=./zone_svr_10_999_ag.pid stop
|
|
|