[GH-ISSUE #2660] Dont Starve Together Server Install Failure #1927

Closed
opened 2026-02-27 02:59:50 +03:00 by kerem · 5 comments
Owner

Originally created by @MMoudry3 on GitHub (Dec 19, 2019).
Original GitHub issue: https://github.com/GameServerManagers/LinuxGSM/issues/2660

User Story

I am installing a clean Don't Starve Together server. During the install when the section 'Downloading Don't Starve Together Configs' is reached the following errors are shown :

Downloading Don't Starve Together Configs
=================================
default configs from https://github.com/GameServerManagers/Game-Server-Configs
    fetching cluster.ini...OK
    fetching server.ini...OK
copying cluster.ini config file.
'/home/dstserver/lgsm/config-default/config-game/cluster.ini' -> '/home/dstserver/.klei/DoNotStarveTogether/Cluster_1/cluster.ini'
cp: cannot create regular file '/home/dstserver/.klei/DoNotStarveTogether/Cluster_1/cluster.ini': No such file or directory
copying server.ini config file.
mkdir: cannot create directory ‘/Master’: Permission denied
'/home/dstserver/lgsm/config-default/config-game/server.ini' -> '/Master/server.ini'
cp: cannot create regular file '/Master/server.ini': No such file or directory
grep: /home/dstserver/.klei/DoNotStarveTogether/Cluster_1/cluster.ini: No such file or directory
cluster.ini is already configured.
sed: can't read /Master/server.ini: No such file or directory
sed: can't read /Master/server.ini: No such file or directory
changing shard name.
sed: can't read /Master/server.ini: No such file or directory
changing master setting.
sed: can't read /Master/server.ini: No such file or directory

Basic info

  • Distro: Ubuntu 18.04
  • Game: Don't Starve Together
  • Command: ./dstserver install
  • LinuxGSM version: v19.12.5

Further Information

It seems that the script attempts to create a directory on the root of the filesystem /Master instead of creating a directory in the user directory ./Master

To Reproduce

Steps to reproduce the behavior:

  1. Follow the installation instructions at https://linuxgsm.com/lgsm/dstserver/
  2. The bug is shown when reaching the 'Downloading Don't Starve Together Configs'
  3. See error

Expected behavior

The configs are downloaded without issue.

Originally created by @MMoudry3 on GitHub (Dec 19, 2019). Original GitHub issue: https://github.com/GameServerManagers/LinuxGSM/issues/2660 # User Story I am installing a clean Don't Starve Together server. During the install when the section 'Downloading Don't Starve Together Configs' is reached the following errors are shown : ``` Downloading Don't Starve Together Configs ================================= default configs from https://github.com/GameServerManagers/Game-Server-Configs fetching cluster.ini...OK fetching server.ini...OK copying cluster.ini config file. '/home/dstserver/lgsm/config-default/config-game/cluster.ini' -> '/home/dstserver/.klei/DoNotStarveTogether/Cluster_1/cluster.ini' cp: cannot create regular file '/home/dstserver/.klei/DoNotStarveTogether/Cluster_1/cluster.ini': No such file or directory copying server.ini config file. mkdir: cannot create directory ‘/Master’: Permission denied '/home/dstserver/lgsm/config-default/config-game/server.ini' -> '/Master/server.ini' cp: cannot create regular file '/Master/server.ini': No such file or directory grep: /home/dstserver/.klei/DoNotStarveTogether/Cluster_1/cluster.ini: No such file or directory cluster.ini is already configured. sed: can't read /Master/server.ini: No such file or directory sed: can't read /Master/server.ini: No such file or directory changing shard name. sed: can't read /Master/server.ini: No such file or directory changing master setting. sed: can't read /Master/server.ini: No such file or directory ``` ## Basic info * **Distro:** Ubuntu 18.04 * **Game:** Don't Starve Together * **Command:** ./dstserver install * **LinuxGSM version:** v19.12.5 ## Further Information It seems that the script attempts to create a directory on the root of the filesystem /Master instead of creating a directory in the user directory ./Master ## To Reproduce Steps to reproduce the behavior: 1. Follow the installation instructions at https://linuxgsm.com/lgsm/dstserver/ 2. The bug is shown when reaching the 'Downloading Don't Starve Together Configs' 4. See error ## Expected behavior The configs are downloaded without issue.
Author
Owner

@issue-label-bot[bot] commented on GitHub (Dec 19, 2019):

Issue-Label Bot is automatically applying the label type: bug to this issue, with a confidence of 0.56. Please mark this comment with 👍 or 👎 to give our bot feedback!

Links: app homepage, dashboard and code for this bot.

<!-- gh-comment-id:567473889 --> @issue-label-bot[bot] commented on GitHub (Dec 19, 2019): Issue-Label Bot is automatically applying the label `type: bug` to this issue, with a confidence of 0.56. Please mark this comment with :thumbsup: or :thumbsdown: to give our bot feedback! Links: [app homepage](https://github.com/marketplace/issue-label-bot), [dashboard](https://mlbot.net/data/GameServerManagers/LinuxGSM) and [code](https://github.com/hamelsmu/MLapp) for this bot.
Author
Owner

@dgibbs64 commented on GitHub (Dec 19, 2019):

DST is a candidate for unit testing as its a more complex server and more likely to break. This issue will be investigated as a priority for the next release

<!-- gh-comment-id:567512278 --> @dgibbs64 commented on GitHub (Dec 19, 2019): DST is a candidate for unit testing as its a more complex server and more likely to break. This issue will be investigated as a priority for the next release
Author
Owner

@dgibbs64 commented on GitHub (Dec 19, 2019):

I have discovered the issue clustercfgdir is called after servercfgdir that requires the clustercfgdir variable

servercfg="server.ini"
servercfgdir="${clustercfgdir}/${shard}"
servercfgfullpath="${servercfgdir}/${servercfg}"
servercfgdefault="server.ini"
clustercfg="cluster.ini"
clustercfgdir="${persistentstorageroot}/${confdir}/${cluster}"
clustercfgfullpath="${clustercfgdir}/${clustercfg}"
clustercfgdefault="cluster.ini"

as a temporary fix this copy the following into common.cfg

clustercfgdir="${persistentstorageroot}/${confdir}/${cluster}"
servercfgdir="${clustercfgdir}/${shard}"

This issue will be fixed for next release

<!-- gh-comment-id:567519089 --> @dgibbs64 commented on GitHub (Dec 19, 2019): I have discovered the issue clustercfgdir is called after servercfgdir that requires the clustercfgdir variable ``` servercfg="server.ini" servercfgdir="${clustercfgdir}/${shard}" servercfgfullpath="${servercfgdir}/${servercfg}" servercfgdefault="server.ini" clustercfg="cluster.ini" clustercfgdir="${persistentstorageroot}/${confdir}/${cluster}" clustercfgfullpath="${clustercfgdir}/${clustercfg}" clustercfgdefault="cluster.ini" ``` as a temporary fix this copy the following into common.cfg ``` clustercfgdir="${persistentstorageroot}/${confdir}/${cluster}" servercfgdir="${clustercfgdir}/${shard}" ``` This issue will be fixed for next release
Author
Owner

@Talkarcabbage commented on GitHub (Dec 24, 2019):

Workaround incomplete. clustercfgfullpath and servercfgfullpath depend on clustercfgdir and servercfgdir and must also be defined in common. Add them below definitions in the previous comment.

clustercfgdir="${persistentstorageroot}/${confdir}/${cluster}"
servercfgdir="${clustercfgdir}/${shard}"
servercfgfullpath="${servercfgdir}/${servercfg}"
clustercfgfullpath="${clustercfgdir}/${clustercfg}"
<!-- gh-comment-id:568661683 --> @Talkarcabbage commented on GitHub (Dec 24, 2019): Workaround incomplete. `clustercfgfullpath` and `servercfgfullpath` depend on `clustercfgdir` and `servercfgdir` and must also be defined in common. Add them below definitions in the previous comment. ``` clustercfgdir="${persistentstorageroot}/${confdir}/${cluster}" servercfgdir="${clustercfgdir}/${shard}" servercfgfullpath="${servercfgdir}/${servercfg}" clustercfgfullpath="${clustercfgdir}/${clustercfg}" ```
Author
Owner

@github-actions[bot] commented on GitHub (Mar 15, 2021):

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

<!-- gh-comment-id:799007063 --> @github-actions[bot] commented on GitHub (Mar 15, 2021): This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Sign in to join this conversation.
No labels
Atomic
Epic
cannot reproduce
command: backup
command: console
command: debug
command: details
command: fast-dl
command: install
command: mods
command: monitor
command: post-details
command: restart
command: send
command: start
command: stop
command: update
command: update-lgsm
command: validate
command: wipe
distro: AlmaLinux
distro: Arch Linux
distro: CentOS
distro: Debian
distro: Fedora
distro: RedHat
distro: Rocky Linux
distro: Ubuntu
distro: openSUSE
engine: goldsrc
engine: source
game: 7 Days to Die
game: ARMA 3
game: Ark: Survival Evolved
game: Assetto Corsa
game: Avorion
game: BATTALION: Legacy
game: Barotrauma
game: Battalion 1944
game: Battlefield 1942
game: Black Mesa: Deathmatch
game: Blade Symphony
game: Call of Duty 2
game: Call of Duty 4
game: Call of Duty: United Offensive
game: Counter-Strike 1.6
game: Counter-Strike 2
game: Counter-Strike: Global Offensive
game: Counter-Strike: Source
game: Day of Infamy
game: Dayz
game: Death Match Classic
game: Don't Starve Together
game: ET: Legacy
game: Eco
game: Factorio
game: Factorio
game: Garry's Mod
game: Half-Life
game: Hurtword
game: Insurgecy
game: Insurgecy
game: Insurgency: Sandstorm
game: Just Cause 3
game: Killing Floor
game: Killing Floor 2
game: Left 4 Dead 2
game: Minecraft
game: Minecraft Bedrock
game: Mordhau
game: Multi Theft Auto
game: Mumble
game: Natural Selection 2
game: No More Room in Hell
game: Pavlov VR
game: Post Scriptum
game: Project Zomboid
game: Quake 3
game: QuakeWorld
game: Red Orchestra: Ostfront 41-45
game: Return to Castle Wolfenstein
game: Rising World
game: Rust
game: San Andreas Multiplayer
game: Satisfactory
game: Soldat
game: Soldier of Fortune 2
game: Squad
game: Squad 44
game: Starbound
game: Stationeers
game: Sven Co-op
game: Team Fortress 2
game: Teamspeak 3
game: Teeworlds
game: Terraria
game: The Front
game: Unreal Tournament 2004
game: Unreal Tournament 3
game: Unreal Tournament 99
game: Unturned
game: Valheim
game: Wurm Unlimited
game: Zombie Master Reborn
game: label missing
good first issue
help wanted
info: alerts
info: dependency
info: docker
info: docs
info: email
info: query
info: steamcmd
info: systemd
info: tmux
info: website
info: website
needs more info
outcome: duplicate
outcome: issue resolved
outcome: issue resolved
outcome: issue unresolved
outcome: pr accepted
outcome: pr rejected
outcome: unconfirmed
outcome: wontfix
outcome: wrong forum
potential-duplicate
priority
pull-request
type: bug
type: feature
type: feature
type: feature request
type: game server request
type: refactor
waiting response
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/LinuxGSM#1927
No description provided.