28 lines
1.7 KiB
Bash
28 lines
1.7 KiB
Bash
#!/usr/bin/env bash
|
|
nohup ./gate -config ./gate_config.yaml -server gate1> gate.out 2>&1 &
|
|
#nohup ./gate -config ./gate_config.yaml -server gate2> gate2.out 2>&1 &
|
|
#nohup ./gate -config ./gate_config.yaml -server gate3> gate3.out 2>&1 &
|
|
#nohup ./gate -config ./gate_config.yaml -server gate4> gate4.out 2>&1 &
|
|
|
|
nohup ./game -config ./game_config.yaml -server game1> game.out 2>&1 &
|
|
#nohup ./game -config ./game_config.yaml -server game2> game2.out 2>&1 &
|
|
|
|
nohup ./db -config ./db_config.yaml -server db1> db.out 2>&1 &
|
|
#nohup ./db -config ./db_config.yaml -server db2> db2.out 2>&1 &
|
|
|
|
nohup ./auth -config ./auth_config.yaml -server auth1> auth.out 2>&1 &
|
|
#nohup ./server_aoi -config ./aoi_config.yaml > aoi.out 2>&1 &
|
|
#nohup ./server_map_router -config ./map_router_config.yaml -server maprouter> map_router.out 2>&1 &
|
|
nohup ./social -config ./social_config.yaml -server social1> social1.out 2>&1 &
|
|
nohup ./battleboss -config ./battleboss_config.yaml> battleboss.out 2>&1 &
|
|
nohup ./rank -config ./rank_config.yaml> rank.out 2>&1 &
|
|
nohup ./guild -config ./guild_config.yaml> guild.out 2>&1 &
|
|
nohup ./gmweb -config ./gmweb_config.yaml > gmweb.out 2>&1 &
|
|
nohup ./battlerecord -config ./battlerecord_config.yaml > battlerecord.out 2>&1 &
|
|
|
|
#cross
|
|
#nohup ./crossrouter -config ./crossrouter_config.yaml -server crossrouter1 > crossrouter1.out 2>&1 &
|
|
#nohup ./crossserver -config ./crossserver_config.yaml -server crossserver1 > crossserver1.out 2>&1 &
|
|
#nohup ./crossrank -config ./crossrank_config.yaml -server crossrank1 > crossrank1.out 2>&1 &
|
|
#nohup ./gcrossrouter -config ./gcrossrouter_config.yaml -server gcrossrouter1 > gcrossrouter1.out 2>&1 &
|
|
#nohup ./gcrossmap -config ./gcrossmap_config.yaml -server gcrossmap1 > gcrossmap1.out 2>&1 & |