arkmanager / ark-server-tools

Set of server tools used to manage ARK: Survival Evolved servers on Linux
MIT License
684 stars 144 forks source link

Servers with custom maps wont start #1084

Closed Hiranus closed 4 years ago

Hiranus commented 4 years ago

I have cluster with 6 maps (Aberration, Extinction, ScorchedEarth, Valguero, Ragnarok, EbenusAstrum) with ton of mods and all servers were running till ~8 months ago when I decided that i want break from ark and turned everything off. Yesterday I decided that i want to go back so i updated everything and only 3 serves properly start (Aberration, Extinction, ScorchedEarth) but other 3 wont start.

arkmanager status @all Running command 'status' for instance 'aberration' Server running: Yes Server PID: 29505 Server listening: Yes Server Name: Hirans Playground - Aberration - (v310.11) Players: 0 / 5 Active Players: 0 Server online: Yes ARKServers link: http://arkservers.net/server/5.189.165.61:27017 Steam connect link: steam://connect/5.189.165.61:27017 Server build ID: 4871947 Running command 'status' for instance 'ebenus' Server running: Yes Server PID: 3682 Server listening: No Server build ID: 4871947 Running command 'status' for instance 'extinction' Server running: Yes Server PID: 29549 Server listening: Yes Server Name: Hirans Playground - Extinction - (v310.11) Players: 0 / 5 Active Players: 0 Server online: Yes ARKServers link: http://arkservers.net/server/5.189.165.61:27018 Steam connect link: steam://connect/5.189.165.61:27018 Server build ID: 4871947 Running command 'status' for instance 'ragnarok' Server running: No Server listening: No Server build ID: 4871947 Running command 'status' for instance 'scorched' Server running: Yes Server PID: 29608 Server listening: Yes Server Name: Hirans Playground - Scorched Earth - (v310.11) Players: 0 / 5 Active Players: 0 Server online: Yes ARKServers link: http://arkservers.net/server/5.189.165.61:27019 Steam connect link: steam://connect/5.189.165.61:27019 Server build ID: 4871947 Running command 'status' for instance 'valguero' Server running: Yes Server PID: 4817 Server listening: No Server build ID: 4871947

netstat -tunlp | grep 'ShooterGame' tcp 0 0 0.0.0.0:32332 0.0.0.0: LISTEN 29505/ShooterGameSe tcp 0 0 0.0.0.0:32333 0.0.0.0: LISTEN 29549/ShooterGameSe tcp 0 0 0.0.0.0:32334 0.0.0.0: LISTEN 29608/ShooterGameSe udp 46848 0 0.0.0.0:27016 0.0.0.0: 4817/ShooterGameSer udp 0 0 0.0.0.0:27017 0.0.0.0: 29505/ShooterGameSe udp 0 0 0.0.0.0:27018 0.0.0.0: 29549/ShooterGameSe udp 0 0 0.0.0.0:27019 0.0.0.0: 29608/ShooterGameSe udp 49152 0 0.0.0.0:27020 0.0.0.0: 3682/ShooterGameSer udp 0 0 0.0.0.0:7780 0.0.0.0: 29505/ShooterGameSe udp 0 0 0.0.0.0:7781 0.0.0.0: 29549/ShooterGameSe udp 0 0 0.0.0.0:7782 0.0.0.0:* 29608/ShooterGameSe

Only difference between those instances is map and server name. I even tried removing save for instance @ebenus but it still wont start. Do you have any idea what i can do?

EDIT: and here is my port-opener.

!/bin/bash

serversnum=6 port_unlock () { for (( i=$2 ; i<$2+$3 ; i++ )); do sudo iptables -t filter -A INPUT -p $1 --dport $i -j ACCEPT done } port_unlock "tcp" 7777 $serversnum port_unlock "udp" 7777 $serversnum port_unlock "tcp" 27015 $serversnum port_unlock "udp" 27015 $serversnum port_unlock "tcp" 32330 $serversnum

EDIT 2: Once or twice i noticed that Server running was No for instances that cant start. Its only my assumption, but maybe they are restarting for some reason? There is nothing weird in logs though.

Hiranus commented 4 years ago

Fixed