JeffesonSemR Posted October 18, 2020 Share Posted October 18, 2020 Hello I'm using a linux dedi server in google cloud and today I trying to enter in return of them beta with my server just won't loading any server in beta or not I used that tutorial to config my beta server: https://steamcommunity.com/sharedfiles/filedetails/?id=590565473 . And I trying uses he to solve that again and was a totally unssuceful. I made some changes in the update.sh archive and nothing: after trying to enter beta: steamcmd steamcmd +login anonymous +app_update 343050 -beta returnofthembeta validate +quit after try to get out beta: steamcmd steamcmd +login anonymous +app_update 343050 validate +quit I tried remove the DoNotStarveTogetherReturnOfThemBeta folder but after load: sh update.sh well he comes back and still without work doesn't work in any of them, using htop comand I see only reading "screen 1" and 2 open, but only they and nothing more And only that process loads Anyone know how to solve that? Link to comment Share on other sites More sharing options...
Daniel86268 Posted October 18, 2020 Share Posted October 18, 2020 Any logs? Cause I have no idea what you did, or what your servers are doing. Maybe you forgot to change the cluster path from DoNotStarveTogether to DoNotStarveTogetherReturnOfThemBeta in your start script? Link to comment Share on other sites More sharing options...
cezarica Posted October 19, 2020 Share Posted October 19, 2020 The "DoNotStarveTogetherReturnOfThemBeta" folder is created again cos you are still running the update part to keep you in the beta branch. This is how I start my shards (dst-start.sh): #!/bin/bash install_dir="$HOME/dontstarvetogether_dedicated_server" cd "$install_dir/bin" # Start DsT Dedicated Server echo Starting main world ... screen -dmS "DST_M" ./dontstarve_dedicated_server_nullrenderer -cluster MyDediServer -shard Master echo Starting caves ... screen -dmS "DST_C" ./dontstarve_dedicated_server_nullrenderer -cluster MyDediServer -shard Caves #echo Done! screen -list and this is how i update them manually (dst-update.sh): #!/bin/bash steamcmd_dir="$HOME/steamcmd" install_dir="$HOME/dontstarvetogether_dedicated_server" function fail() { echo Error: "$@" >&2 exit 1 } cd "$steamcmd_dir" || fail "Missing $steamcmd_dir directory!" #steamcmd.sh +force_install_dir "$install_dir" +login anonymous +app_update 343050 -beta returnofthembeta +quit steamcmd.sh +force_install_dir "$install_dir" +login anonymous +app_update 343050 +quit Link to comment Share on other sites More sharing options...
Daniel86268 Posted October 19, 2020 Share Posted October 19, 2020 Any logs? The start scripts seem to be correct, but we have no clue, what the rest of your server is doing. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.
Please be aware that the content of this thread may be outdated and no longer applicable.