Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RichardDally/dd90fd5a1b9ed559cea3ea4fe3a79ac7 to your computer and use it in GitHub Desktop.
Save RichardDally/dd90fd5a1b9ed559cea3ea4fe3a79ac7 to your computer and use it in GitHub Desktop.
Rust Windows Dedicated Server
--- How to setup and run a Rust dedicated server on steam ---
Download steamcmd:
https://steamcdn-a.akamaihd.net/client/installer/steamcmd.zip
Install/update the server:
steamcmd +force_install_dir D:\SteamCMD\RustServer +login anonymous +app_update 258550 +quit
Create a batch file to start server:
RustDedicated.exe ^
-nographics ^
-batchmode ^
-silent-crashes ^
+server.ip "XXX.XXX.XXX.XXX" ^
+server.port XXXX ^
+rcon.port XXXX ^
+app.port XXXX ^
+app.listenip "XXX.XXX.XXX.XXX" ^
+server.hostname "XXX" ^
+server.identity "XXX" ^
+server.description "XXX" ^
+server.maxplayers 4 ^
+server.tags pve ^
+server.gamemode vanilla ^
+server.worldsize 6000 ^
+server.seed 1522531 ^
+rcon.password "XXX" ^
+rcon.web 1 ^
-logfile "ServerLog.txt"
pause
More documentation:
- https://wiki.facepunch.com/rust/Creating-a-server
- https://www.easypc.io/game-hosts/rust/dedicated-server/
- http://playrust.io/gallery/
- https://umod.org/plugins/
- https://www.rustadmin.com/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment