[GH-ISSUE #732] Rust server fails to start #588

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

Originally created by @walliski on GitHub (Mar 2, 2016).
Original GitHub issue: https://github.com/GameServerManagers/LinuxGSM/issues/732

Debian Jessie 64bit fails to start Rust server after install. No errors other than "Cant start Rust Server".

When trying to install Rust manually using instructions from https://developer.valvesoftware.com/wiki/Rust_Dedicated_Server it says "Illegal instruction". Missing dependencies in the script?

Originally created by @walliski on GitHub (Mar 2, 2016). Original GitHub issue: https://github.com/GameServerManagers/LinuxGSM/issues/732 Debian Jessie 64bit fails to start Rust server after install. No errors other than "Cant start Rust Server". When trying to install Rust manually using instructions from https://developer.valvesoftware.com/wiki/Rust_Dedicated_Server it says "Illegal instruction". Missing dependencies in the script?
kerem closed this issue 2026-02-27 02:02:29 +03:00
Author
Owner

@reesey275 commented on GitHub (Mar 2, 2016):

Have you installed all dependencies?

sudo dpkg --add-architecture i386; sudo apt-get update; sudo apt-get install tmux mailutils postfix ca-certificates curl lib32gcc1 libstdc++6 libstdc++6:i386

<!-- gh-comment-id:190990426 --> @reesey275 commented on GitHub (Mar 2, 2016): Have you installed all dependencies? sudo dpkg --add-architecture i386; sudo apt-get update; sudo apt-get install tmux mailutils postfix ca-certificates curl lib32gcc1 libstdc++6 libstdc++6:i386
Author
Owner

@UltimateByte commented on GitHub (Mar 2, 2016):

Using LGSM, you should get a log.
As always, what does the log say ?
cat serverfiles/game*.log

<!-- gh-comment-id:191141788 --> @UltimateByte commented on GitHub (Mar 2, 2016): Using LGSM, you should get a log. As always, what does the log say ? `cat serverfiles/game*.log`
Author
Owner

@walliski commented on GitHub (Mar 2, 2016):

Yes I have installed the dependencies. Well not postfix since I have Exim from before.

Logs below:

gaben@herderp:~/tmprust$ ls
functions  gsquery.py  log  rustserver  serverfiles  steamcmd
gaben@herpderp:~/tmprust$  cat serverfiles/game*.log
cat: serverfiles/game*.log: No such file or directory
gaben@herpderp:~/tmprust$ 

gaben@herpderp:~/tmprust$ ls serverfiles/
Bundles          RustDedicated       server           steamapps
libsteam_api.so  RustDedicated_Data  steam_appid.txt
gaben@herpderp:~/tmprust$ 

As I said, even when trying to run the server manually it just instantly fails without doing anything.

<!-- gh-comment-id:191260788 --> @walliski commented on GitHub (Mar 2, 2016): Yes I have installed the dependencies. Well not postfix since I have Exim from before. Logs below: ``` gaben@herderp:~/tmprust$ ls functions gsquery.py log rustserver serverfiles steamcmd gaben@herpderp:~/tmprust$ cat serverfiles/game*.log cat: serverfiles/game*.log: No such file or directory gaben@herpderp:~/tmprust$ gaben@herpderp:~/tmprust$ ls serverfiles/ Bundles RustDedicated server steamapps libsteam_api.so RustDedicated_Data steam_appid.txt gaben@herpderp:~/tmprust$ ``` As I said, even when trying to run the server manually it just instantly fails without doing anything.
Author
Owner

@UltimateByte commented on GitHub (Mar 2, 2016):

Well, it doesn't even create a logfile... Did you at least try the start command after installing that instance ?

This is weird, i'm using Debian 8.3 x64 too so... Are you sure you installed all the 32 bit dependencies ?

If you don't have sudo, just remove "sudo" from the commands and run them as root. (But you don't seem like a noob so i guess you got that).

If you got your dependencies as you should, one explaination could be the lack of RAM (Rust, even the server version, is very demanding).

PS : Nice user ;)

PS2 : make sure you don't have a crashed rust process running already. I use webmin for that kind of stuff, very handy.

<!-- gh-comment-id:191274755 --> @UltimateByte commented on GitHub (Mar 2, 2016): Well, it doesn't even create a logfile... Did you at least try the start command after installing that instance ? This is weird, i'm using Debian 8.3 x64 too so... Are you sure you installed all the 32 bit dependencies ? If you don't have sudo, just remove "sudo" from the commands and run them as root. (But you don't seem like a noob so i guess you got that). If you got your dependencies as you should, one explaination could be the lack of RAM (Rust, even the server version, is very demanding). PS : Nice user ;) PS2 : make sure you don't have a crashed rust process running already. I use webmin for that kind of stuff, very handy.
Author
Owner

@walliski commented on GitHub (Mar 2, 2016):

gaben@herpderp:~/tmprust$ ./rustserver start
[ FAIL ] Starting rust-server: Unable to start Rust
gaben@herpderp:~/tmprust$ 

gaben@herpderp:~/tmprust/serverfiles$ ./RustDedicated
Illegal instruction
gaben@herpderp:~/tmprust/serverfiles$ 

gaben@herpderp:~/tmprust$ free -m
             total       used       free     shared    buffers     cached
Mem:          7837       7707        129        172        168       4131
-/+ buffers/cache:       3406       4430
Swap:         5665         21       5644
gaben@herpderp:~/tmprust$ 

All deps listed installed, and the 32 architecture also added. The command that Reesey posted apart from postfix since I have exim4 as MTA... Strange...

<!-- gh-comment-id:191313495 --> @walliski commented on GitHub (Mar 2, 2016): ``` gaben@herpderp:~/tmprust$ ./rustserver start [ FAIL ] Starting rust-server: Unable to start Rust gaben@herpderp:~/tmprust$ gaben@herpderp:~/tmprust/serverfiles$ ./RustDedicated Illegal instruction gaben@herpderp:~/tmprust/serverfiles$ gaben@herpderp:~/tmprust$ free -m total used free shared buffers cached Mem: 7837 7707 129 172 168 4131 -/+ buffers/cache: 3406 4430 Swap: 5665 21 5644 gaben@herpderp:~/tmprust$ ``` All deps listed installed, and the 32 architecture also added. The command that Reesey posted apart from `postfix` since I have `exim4` as MTA... Strange...
Author
Owner

@walliski commented on GitHub (Mar 2, 2016):

Tried installing a new VM, and it works on it. Suppose I have something strange going on on the server, have to look into it... If someone finds similar errors we might see a pattern.. I'll just close this issue...

<!-- gh-comment-id:191339176 --> @walliski commented on GitHub (Mar 2, 2016): Tried installing a new VM, and it works on it. Suppose I have something strange going on on the server, have to look into it... If someone finds similar errors we might see a pattern.. I'll just close this issue...
Author
Owner

@walliski commented on GitHub (Mar 2, 2016):

Packages that are installed on the VM but not on the server are just some laptop specific ones; WiFi, Bluetooth, smartcard reader etc.

Packages on the server not on the VM I could not find anything interesting...

I think my problem is not software, but HW... I now remembered that I've had problems with CS:GO before also on another, older, server. This was due to missing instruction sets on the CPU, which makes sense taking the error message into consideration :<

Thanks for the help anyways! Hope (or not :D ) that someone else will have use of this..

<!-- gh-comment-id:191480735 --> @walliski commented on GitHub (Mar 2, 2016): Packages that are installed on the VM but not on the server are just some laptop specific ones; WiFi, Bluetooth, smartcard reader etc. Packages on the server not on the VM I could not find anything interesting... I think my problem is not software, but HW... I now remembered that I've had problems with CS:GO before also on another, older, server. This was due to missing instruction sets on the CPU, which makes sense taking the error message into consideration :< Thanks for the help anyways! Hope (or not :D ) that someone else will have use of this..
Author
Owner

@UltimateByte commented on GitHub (Mar 3, 2016):

Thanks for your feedback, it might help ! If you could mention your hardware specs, would be perfect to help future people with that issue even more (and i'm a bit curious about it !).

<!-- gh-comment-id:191503598 --> @UltimateByte commented on GitHub (Mar 3, 2016): Thanks for your feedback, it might help ! If you could mention your hardware specs, would be perfect to help future people with that issue even more (and i'm a bit curious about it !).
Author
Owner

@walliski commented on GitHub (Mar 3, 2016):

AMD Opteron 275 O:)

<!-- gh-comment-id:191616475 --> @walliski commented on GitHub (Mar 3, 2016): AMD Opteron 275 O:)
Author
Owner

@UltimateByte commented on GitHub (Mar 3, 2016):

Lol, you're pretty optimistic, Rust server is very demanding !
Thanks a lot btw, it might help :)

<!-- gh-comment-id:191689071 --> @UltimateByte commented on GitHub (Mar 3, 2016): Lol, you're pretty optimistic, Rust server is very demanding ! Thanks a lot btw, it might help :)
Author
Owner

@lock[bot] commented on GitHub (Jul 19, 2018):

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:406290431 --> @lock[bot] commented on GitHub (Jul 19, 2018): 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#588
No description provided.