[GH-ISSUE #1522] [Rust] Server will start then stop when I do ./rustserver start #1190

Closed
opened 2026-02-27 02:55:47 +03:00 by kerem · 11 comments
Owner

Originally created by @RussianRonin on GitHub (Jul 11, 2017).
Original GitHub issue: https://github.com/GameServerManagers/LinuxGSM/issues/1522

So, I recently clean installed a rust server using LGSM. I can run the server but only in debug mode. If I try to run it with start, it will start, then stop after a bit. Logs and details are pasted. I also looked for other issues but they were all resolved.

Details: https://hastebin.com/ezaroqodiz

Log file: https://hastebin.com/imohiteyeg.coffeescript

Please let me know if you need any other details.

Originally created by @RussianRonin on GitHub (Jul 11, 2017). Original GitHub issue: https://github.com/GameServerManagers/LinuxGSM/issues/1522 So, I recently clean installed a rust server using LGSM. I can run the server but only in debug mode. If I try to run it with start, it will start, then stop after a bit. Logs and details are pasted. I also looked for other issues but they were all resolved. Details: https://hastebin.com/ezaroqodiz Log file: https://hastebin.com/imohiteyeg.coffeescript Please let me know if you need any other details.
kerem 2026-02-27 02:55:47 +03:00
Author
Owner

@RussianRonin commented on GitHub (Jul 11, 2017):

This is with Oxide installed. Shouldn't have said clean install. Testing a clean install now.

<!-- gh-comment-id:314298040 --> @RussianRonin commented on GitHub (Jul 11, 2017): This is with Oxide installed. Shouldn't have said clean install. Testing a clean install now.
Author
Owner

@RussianRonin commented on GitHub (Jul 11, 2017):

This is also confirmed with a completely new clean installed rust server using the LGSM script.

Here is the log: https://hastebin.com/ikahahedeg.coffeescript

Here is the log file of the debug command: https://hastebin.com/uqicomaviv.sql

From the differences I see, it seems like the start command is somehow not picking up either mono or steam correctly?

<!-- gh-comment-id:314298977 --> @RussianRonin commented on GitHub (Jul 11, 2017): This is also confirmed with a completely new clean installed rust server using the LGSM script. Here is the log: https://hastebin.com/ikahahedeg.coffeescript Here is the log file of the debug command: https://hastebin.com/uqicomaviv.sql From the differences I see, it seems like the start command is somehow not picking up either mono or steam correctly?
Author
Owner

@BenDrysdale commented on GitHub (Jul 13, 2017):

I had the same problem, seems there has been an issue raised for this previously (1171).

Follow instructions here and that should hopefully resolve the issue:
https://github.com/GameServerManagers/LinuxGSM/issues/1171#issuecomment-258606441

<!-- gh-comment-id:315111167 --> @BenDrysdale commented on GitHub (Jul 13, 2017): I had the same problem, seems there has been an issue raised for this previously ([1171](https://github.com/GameServerManagers/LinuxGSM/issues/1171#issuecomment-258606441)). Follow instructions here and that should hopefully resolve the issue: https://github.com/GameServerManagers/LinuxGSM/issues/1171#issuecomment-258606441
Author
Owner

@RussianRonin commented on GitHub (Jul 13, 2017):

Where I am confused is the fact that that is a closed issue. Closed meaning it is fixed. I am using a clean install after that issue was fixed. Maybe it never actually got fixed somehow. Not too sure.

<!-- gh-comment-id:315131748 --> @RussianRonin commented on GitHub (Jul 13, 2017): Where I am confused is the fact that that is a closed issue. Closed meaning it is fixed. I am using a clean install after that issue was fixed. Maybe it never actually got fixed somehow. Not too sure.
Author
Owner

@BenDrysdale commented on GitHub (Jul 13, 2017):

I think you are right. I had a look at the closed issue and it does indicate that a pull request was made to fix the problem so I checked the master and I don't see the fix. Give it a try, hopefully, it will fix your problem like it did mine.

<!-- gh-comment-id:315204089 --> @BenDrysdale commented on GitHub (Jul 13, 2017): I think you are right. I had a look at the closed issue and it does indicate that a pull request was made to fix the problem so I checked the master and I don't see the fix. Give it a try, hopefully, it will fix your problem like it did mine.
Author
Owner

@RussianRonin commented on GitHub (Jul 13, 2017):

That seemed to do the trick.
I see a commit was made for it here: github.com/GameServerManagers/LinuxGSM@9bf74b80c2

but not sure how it isn't in the current build.

<!-- gh-comment-id:315225309 --> @RussianRonin commented on GitHub (Jul 13, 2017): That seemed to do the trick. I see a commit was made for it here: https://github.com/GameServerManagers/LinuxGSM/commit/9bf74b80c266c92110029a1aa6333acec1580299 but not sure how it isn't in the current build.
Author
Owner

@RussianRonin commented on GitHub (Jul 13, 2017):

Also, now the debug command doesn't work. I threw the fix into my common.cfg and now I get

/home/*****/rustserver/lgsm/functions/command_debug.sh: line 101: LD_LIBRARY_PATH=:./serverfiles/RustDedicated_Data/Plugins/x86_64: No such file or directory

on debug. But start works fine now.

<!-- gh-comment-id:315226050 --> @RussianRonin commented on GitHub (Jul 13, 2017): Also, now the debug command doesn't work. I threw the fix into my common.cfg and now I get `/home/*****/rustserver/lgsm/functions/command_debug.sh: line 101: LD_LIBRARY_PATH=:./serverfiles/RustDedicated_Data/Plugins/x86_64: No such file or directory ` on debug. But start works fine now.
Author
Owner

@MrGraversen commented on GitHub (Oct 15, 2017):

I experience the same issue currently.

Running ./rustserver start results in starting, then stopping.

Running .rustserver debug works fine.

<!-- gh-comment-id:336739696 --> @MrGraversen commented on GitHub (Oct 15, 2017): I experience the same issue currently. Running `./rustserver start` results in starting, then stopping. Running `.rustserver debug` works fine.
Author
Owner

@riemers commented on GitHub (Nov 6, 2017):

Had the same, adding the

executable="LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`dirname $0`/serverfiles/RustDedicated_Data/Plugins/x86_64 ./RustDedicated"

To my lgsm/config-lgsm/rustserver/common.cfg

Fixed the start issue.

<!-- gh-comment-id:342189164 --> @riemers commented on GitHub (Nov 6, 2017): Had the same, adding the ``` executable="LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`dirname $0`/serverfiles/RustDedicated_Data/Plugins/x86_64 ./RustDedicated" ``` To my lgsm/config-lgsm/rustserver/common.cfg Fixed the start issue.
Author
Owner

@RussianRonin commented on GitHub (Mar 7, 2019):

This seems resolved.

<!-- gh-comment-id:470743146 --> @RussianRonin commented on GitHub (Mar 7, 2019): This seems resolved.
Author
Owner

@lock[bot] commented on GitHub (Mar 10, 2020):

This thread 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:597275509 --> @lock[bot] commented on GitHub (Mar 10, 2020): This thread 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#1190
No description provided.