ok, so as long as I keep the load below 10GB RAM, there's no issue, which still strikes me as odd that the threshold is that low with 16GB of RAM, but I'll live.
I was considering adding this to the bottom of ./start.sh to see if the maps loaded using less memory.
Code:
# Start selected 'maps' below:
cd /pwserver/gamed
# The following config will start 'all' maps:
./gs gs01 gs.conf gmserver.conf gsalias.conf is01 is02 is05 is06 is07 is08 is09 is10 is11 is12 is13 is14 is15 is16 is17 is18 is19 is20 is21 is22 is23 is24 is25 is26 is27 is28 is29 is31 is32 is33 is34 is35 b05 house1 house2 house3 house4 house5 house6 z9 q20 arena04 arena01 arena02 arena03 jail bg01 bg02 bg03 bg04 bg05 bg06 > /pwserver/logs/gs_all.log &
Then the whole script looks like...
Code:
#!/bin/sh
# Start all necessary 'services':
# logservice
cd /PWServer/logservice
./logservice logservice.conf > /PWServer/logs/logservice.log &
# uniquenamed
cd /PWServer/uniquenamed
./uniquenamed gamesys.conf > /PWServer/logs/uniquenamed.log &
# authd
cd /PWServer/authd
./authd > /PWServer/logs/authd.log &
# gamedbd
cd /PWServer/gamedbd
./gamedbd gamesys.conf > /PWServer/logs/gamedbd.log &
# gacd
cd /PWServer/gacd
./gacd gamesys.conf > /PWServer/logs/gacd.log &
# gfactiond
cd /PWServer/gfactiond
./gfactiond gamesys.conf > /PWServer/logs/gfactiond.log &
# gdeliveryd
cd /PWServer/gdeliveryd
./gdeliveryd gamesys.conf > /PWServer/logs/gdeliveryd.log &
# glinkd
cd /PWServer/glinkd
./glinkd gamesys.conf 1 > /PWServer/logs/glink1.log &
./glinkd gamesys.conf 2 > /PWServer/logs/glink2.log &
./glinkd gamesys.conf 3 > /PWServer/logs/glink3.log &
./glinkd gamesys.conf 4 > /PWServer/logs/glink4.log &
# Start selected 'maps' below:
cd /pwserver/gamed
# The following config will start 'all' maps:
./gs gs01 gs.conf gmserver.conf gsalias.conf is01 is02 is05 is06 is07 is08 is09 is10 is11 is12 is13 is14 is15 is16 is17 is18 is19 is20 is21 is22 is23 is24 is25 is26 is27 is28 is29 is31 is32 is33 is34 is35 b05 house1 house2 house3 house4 house5 house6 z9 q20 arena04 arena01 arena02 arena03 jail bg01 bg02 bg03 bg04 bg05 bg06 > /PWServer/logs/gs_all.log &
But then I start thinking, that's my map list from 343's Now I need to go check the maps in the 1.4.4 version and make sure that they are all listed in pwAdmin, and also in my script.
I was also considering limiting the initial script to the World map and connected open maps, then making a separate script for the set of FB maps, another for TT maps, ect.