Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Guide: VPS/Dedicated install Rust dedicated game server #1417

Merged
merged 11 commits into from
Mar 25, 2025
76 changes: 76 additions & 0 deletions docs/dedicated-linux-rust.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
---
id: dedicated-linux-rust
title: "Dedicated Server: Rust Dedicated Server Linux Setup"
description: Information about setting up a Rust Dedicated Server on a Linux Dedicated Server from ZAP-Hosting - ZAP-Hosting.com documentation
sidebar_label: Rust
services:
- dedicated
---

import InlineVoucher from '@site/src/components/InlineVoucher';

## Introduction

Do you have a Linux Dedicated Server and you want to install the Rust Dedicated server service on it? You are in the right place. In this guide, we will explain the step by step process of installing this service on your Linux server through the use of SteamCMD. We will be using Ubuntu in the examples, but the process should be very similar for other distributions.

:::tip
Did you know that you can install our **ZAP GS/TS3 Interface** directly onto your dedicated server, allowing you to setup game server services, with direct integration to your ZAP-Hosting dashboard, in just a few clicks! Learn more about the [GS/TS3 Interface here](dedicated-linux-gs-interface.md).
:::

<InlineVoucher />

## Preparation

To begin with, connect to your Dedicated Server via SSH. Use our [SSH Initial Access](dedicated-linux-ssh.md) guide if you need help doing this.

You will also have to complete a first-time setup for SteamCMD if this is your first time using this on your Linux server. Please use our [SteamCMD Linux Setup](dedicated-linux-steamcmd.md) guide and ensure SteamCMD is fully setup before proceeding.

## Installation

Begin by logging in to your `steam` user and heading over to the root `home/steam` user directory to keep things organised.
```
sudo -u steam -s
cd ~
```

When logged in, you can start the installation process using the following command to easily start the installation through the use of SteamCMD directly to your `steam` user.
```
steamcmd +force_install_dir '/home/steam/Rust-Server' +login anonymous +app_update 258550 validate +quit
```

Please be patient as the download completes, it can take some time for games with larger sizes. Once successful, you will see a success message appear confirming this.

## Configuration

By this stage, you have finished the setup for your Rust server. You can perform further server configuration through a configuration files found within the directory of your server.

Head over to your root directory and create an `.sh` file. This will be the bash file used to start the server and to adjust various configuration parameters.
```
nano /home/steam/Rust-Server/start_server.sh
```

Now add the following contents into the bash file. In the command below, some of the basic and most used parameters have been added. If you wish to add more or wish to learn more about each, we recommend browsing the [official Rust wiki](https://wiki.facepunch.com/rust/Creating-a-server#startingtheserver) which provides all of the available configuration options.
```
#!/bin/bash
/home/steam/Rust-Server/RustDedicated -batchmode -nographics +server.hostname "your_server_name" +server.port 28015 +server.identity "my_server" +server.maxplayers 50 +server.worldsize 1000 +server.saveinterval 300
```

Save the file using `CTRL+X`, followed by `Y` and `Enter`. Lastly, to make the bash file runnable without sudo privilages, run the following command which adds the execute permission to the file.
```
chmod +x /home/steam/Rust-Server/start_server.sh
```

## Starting & Connecting to your server

Now it is time to start your server. Head over to the main game directory and run the **start_server.sh** shell file.
```
/home/steam/Rust-Server/start_server.sh
```

You should now see logs appear in your command prompt which signals that the start up was successful. Please note that first time start up could take some time as everything is setup. If everthing occurs as expected, your server will be visible in the server list. Alternatively, you will be able to connect directly by searching for: `[your_ip_address]:28015`.

## Conclusion

Congratulations, you have successfully installed and configured the Rust server on your Dedicated Server! As a next step, we recommend looking over our [Setup Linux Service](dedicated-linux-create-gameservice.md) guide, which covers setting up your new dedicated game server as a service. This provides various benefits including automatic server launching on boot, automatic server updates, easy management and access to logs, plus much more!

If you have any further questions or problems, please contact our support team, who are available to help you every day!
5 changes: 3 additions & 2 deletions docs/dedicated-linux-steamcmd.md
Original file line number Diff line number Diff line change
@@ -10,6 +10,7 @@ services:
import InlineVoucher from '@site/src/components/InlineVoucher';

## Introduction

SteamCMD is an essential tool that is necessary for installing dedicated servers for a wide variety of games including Palworld, Enshrouded and more. In this guide, we will explore the first-time setup process for installing SteamCMD to your Linux server. We will be using Ubuntu in the examples, but the process should be very similar for other distributions.

<InlineVoucher />
@@ -51,10 +52,10 @@ Now you will need to install a few packages. These are broken down as the follow
sudo apt install software-properties-common
sudo dpkg --add-architecture i386

// Debian & Ubuntu
// Ubuntu
sudo add-apt-repository multiverse

// Other Non-Debian Distros
// Debian & Other Non-Debian Distros
sudo apt-add-repository non-free
```

76 changes: 76 additions & 0 deletions docs/vserver-linux-rust.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
---
id: vserver-linux-rust
title: "VPS: Rust Dedicated Server Linux Setup"
description: Information about setting up a Rust Dedicated Server on a Linux VPS from ZAP-Hosting - ZAP-Hosting.com documentation
sidebar_label: Rust
services:
- vserver
---

import InlineVoucher from '@site/src/components/InlineVoucher';

## Introduction

Do you have a Linux VPS or root server and you want to install the Rust Dedicated server service on it? You are in the right place. In this guide, we will explain the step by step process of installing this service on your Linux server through the use of SteamCMD. We will be using Ubuntu in the examples, but the process should be very similar for other distributions.

:::tip
Did you know that you can install our **ZAP GS/TS3 Interface** directly onto your VPS or root server, allowing you to setup game server services, with direct integration to your ZAP-Hosting dashboard, in just a few clicks! Learn more about the [GS/TS3 Interface here](vserver-linux-gs-interface.md).
:::

<InlineVoucher />

## Preparation

To begin with, connect to your VPS or root server via SSH. Use our [SSH Initial Access](vserver-linux-ssh.md) guide if you need help doing this.

You will also have to complete a first-time setup for SteamCMD if this is your first time using this on your Linux server. Please use our [SteamCMD Linux Setup](vserver-linux-steamcmd.md) guide and ensure SteamCMD is fully setup before proceeding.

## Installation

Begin by logging in to your `steam` user and heading over to the root `home/steam` user directory to keep things organised.
```
sudo -u steam -s
cd ~
```

When logged in, you can start the installation process using the following command to easily start the installation through the use of SteamCMD directly to your `steam` user.
```
steamcmd +force_install_dir '/home/steam/Rust-Server' +login anonymous +app_update 258550 validate +quit
```

Please be patient as the download completes, it can take some time for games with larger sizes. Once successful, you will see a success message appear confirming this.

## Configuration

By this stage, you have finished the setup for your Rust server. You can perform further server configuration through a configuration files found within the directory of your server.

Head over to your root directory and create an `.sh` file. This will be the bash file used to start the server and to adjust various configuration parameters.
```
nano /home/steam/Rust-Server/start_server.sh
```

Now add the following contents into the bash file. In the command below, some of the basic and most used parameters have been added. If you wish to add more or wish to learn more about each, we recommend browsing the [official Rust wiki](https://wiki.facepunch.com/rust/Creating-a-server#startingtheserver) which provides all of the available configuration options.
```
#!/bin/bash
/home/steam/Rust-Server/RustDedicated -batchmode -nographics +server.hostname "your_server_name" +server.port 28015 +server.identity "my_server" +server.maxplayers 50 +server.worldsize 1000 +server.saveinterval 300
```

Save the file using `CTRL+X`, followed by `Y` and `Enter`. Lastly, to make the bash file runnable without sudo privilages, run the following command which adds the execute permission to the file.
```
chmod +x /home/steam/Rust-Server/start_server.sh
```

## Starting & Connecting to your server

Now it is time to start your server. Head over to the main game directory and run the **start_server.sh** shell file.
```
/home/steam/Rust-Server/start_server.sh
```

You should now see logs appear in your command prompt which signals that the start up was successful. Please note that first time start up could take some time as everything is setup. If everthing occurs as expected, your server will be visible in the server list. Alternatively, you will be able to connect directly by searching for: `[your_ip_address]:28015`.

## Conclusion

Congratulations, you have successfully installed and configured the Rust server on your VPS or root server! As a next step, we recommend looking over our [Setup Linux Service](vserver-linux-create-gameservice.md) guide, which covers setting up your new dedicated game server as a service. This provides various benefits including automatic server launching on boot, automatic server updates, easy management and access to logs, plus much more!

If you have any further questions or problems, please contact our support team, who are available to help you every day!
4 changes: 2 additions & 2 deletions docs/vserver-linux-steamcmd.md
Original file line number Diff line number Diff line change
@@ -50,10 +50,10 @@ Now you will need to install a few packages. These are broken down as following:
sudo apt install software-properties-common
sudo dpkg --add-architecture i386

// Debian & Ubuntu
// Ubuntu
sudo add-apt-repository multiverse

// Other Non-Debian Distros
// Debian & Other Non-Debian Distros
sudo apt-add-repository non-free
```

Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
---
id: dedicated-linux-rust
title: "Dedicated Server: Rust Dedicated Server Linux Setup"
description: Informationen zur Einrichtung eines Rust Dedicated Servers auf einem Linux Dedicated Server von ZAP-Hosting - ZAP-Hosting.com Dokumentation
sidebar_label: Rust
services:
- dedicated
---

import InlineVoucher from '@site/src/components/InlineVoucher';

## Einführung

Hast du einen Linux VPS oder Root Server und möchtest den Rust Dedicated Server Dienst darauf installieren? Dann bist du hier genau richtig. In dieser Anleitung erklären wir dir Schritt für Schritt, wie du diesen Dienst mithilfe von SteamCMD auf deinem Linux Server installierst. Wir verwenden in den Beispielen Ubuntu, aber der Prozess sollte bei anderen Distributionen sehr ähnlich sein.

:::tip
Wusstest du, dass du unser **ZAP GS/TS3 Interface** direkt auf deinem VPS oder Root-Server installieren kannst? Damit kannst du mit nur wenigen Klicks Gameserver-Dienste einrichten, die direkt in dein ZAP-Hosting Dashboard integriert sind! Erfahre mehr über das [GS/TS3 Interface](dedicated-linux-gs-interface.md).
:::

<InlineVoucher />

## Vorbereitung

Verbinde dich zunächst per SSH mit deinem VPS oder Root-Server. Benutze unsere Anleitung [Erstzugriff (SSH)](dedicated-linux-ssh.md), wenn du dabei Hilfe benötigst.

Du musst auch eine Ersteinrichtung für SteamCMD vornehmen, wenn du es zum ersten Mal auf deinem Linux-Server verwendest. Bitte benutze unsere [SteamCMD einrichten](dedicated-linux-steamcmd.md) Anleitung und stelle sicher, dass SteamCMD vollständig eingerichtet ist, bevor du fortfährst.

## Installation

Beginne damit, dich als Benutzer `Steam` anzumelden und gehe in das Stammverzeichnis `home/steam`, um Ordnung zu schaffen.
```
sudo -u steam -s
cd ~
```

Wenn du eingeloggt bist, kannst du den Installationsprozess mit dem folgenden Befehl starten, um die Installation mit Hilfe von SteamCMD direkt in deinem `Steam` Benutzer zu starten.
```
steamcmd +force_install_dir '/home/steam/Rust-Server' +login anonymous +app_update 258550 validate +quit
```

Bitte habe etwas Geduld, während der Download abgeschlossen wird, denn bei Spielen mit größeren Dateien kann es einige Zeit dauern. Sobald der Download erfolgreich war, erscheint eine Erfolgsmeldung, die dies bestätigt.

## Konfiguration

Zu diesem Zeitpunkt hast du die Einrichtung deines Rust Servers abgeschlossen. Du kannst weitere Serverkonfigurationen in den Konfigurationsdateien vornehmen, die sich im Verzeichnis deines Servers befinden.

Wechsel in dein Stammverzeichnis und erstelle eine `.sh`-Datei. Dies ist die Bash-Datei, die zum Starten des Servers und zum Anpassen verschiedener Konfigurationsparameter verwendet wird.
```
nano /home/steam/Rust-Server/start_server.sh
```

Füge nun den folgenden Inhalt in die Bash-Datei ein. Im folgenden Befehl wurden einige der grundlegenden und am häufigsten verwendeten Parameter hinzugefügt. Wenn du weitere hinzufügen oder mehr über die einzelnen Parameter erfahren möchtest, empfehlen wir dir, das [offizielle Rust-Wiki](https://wiki.facepunch.com/rust/Creating-a-server#startingtheserver) zu durchsuchen, das alle verfügbaren Konfigurationsoptionen enthält.
```
#!/bin/bash
/home/steam/Rust-Server/RustDedicated -batchmode -nographics +server.hostname "deine_server_name" +server.port 28015 +server.identity "mein_server" +server.maxplayers 50 +server.worldsize 1000 +server.saveinterval 300
```

Speichere die Datei mit `STRG+X`, gefolgt von `Y` und `Enter`. Damit die Bash-Datei ohne sudo Berechtigungen ausgeführt werden kann, führe abschließend den folgenden Befehl aus, der der Datei die Ausführungsberechtigung hinzufügt.
```
chmod +x /home/steam/Rust-Server/start_server.sh
```

## Starten und Verbinden mit deinem Server

Jetzt ist es an der Zeit, deinen Server zu starten. Gehe in das Hauptverzeichnis des Spiels und führe die Shell-Datei **start_server.sh** aus.
```
/home/steam/Rust-Server/start_server.sh
```

In der Eingabeaufforderung sollten nun Logs erscheinen, die zeigen, dass der Start erfolgreich war. Bitte beachte, dass der erste Start einige Zeit dauern kann, da alles eingerichtet wird. Alternativ kannst du dich auch direkt verbinden, indem du in der unteren Suchleiste der Serverliste nach `[deine_ip_address]:28015`.

## Abschluss

Herzlichen Glückwunsch, du hast den Rust Server erfolgreich auf deinem VPS installiert und konfiguriert! Als nächsten Schritt empfehlen wir dir einen Blick in unsere Anleitung [Linux Dienst einrichten](dedicated-linux-create-gameservice.md), in der du deinen neuen dedizierten Gameserver als Dienst einrichten kannst. Dies bietet verschiedene Vorteile, wie z. B. den automatischen Start des Servers beim Hochfahren, automatische Server-Updates, einfache Verwaltung und Zugriff auf Logs und vieles mehr!

Wenn du weitere Fragen oder Probleme hast, wende dich bitte an unser Support-Team, das dir jeden Tag zur Verfügung steht!
Original file line number Diff line number Diff line change
@@ -51,10 +51,10 @@ Jetzt musst du noch ein paar Pakete installieren. Diese sind wie folgt unterteil
sudo apt install software-properties-common
sudo dpkg --add-architecture i386

// Debian & Ubuntu
// Ubuntu
sudo add-apt-repository multiverse

// Andere Nicht-Debian-Distros
// Debian & Andere Nicht-Debian-Distros
sudo apt-add-repository non-free
```

Loading