GameCP Logo
DiscoverLaunch Your Panel
GameCP Logo
GameCP

The next-generation game server management platform. Built for performance, security, and ease of use.

Product

  • Features
  • Integrations
  • App Store
  • Pricing
  • Custom Development
  • Compare Panels

Resources

  • Documentation
  • API Reference
  • Referral Program
  • Support
  • System Status

Company

  • About
  • Contact

Ā© 2026 GameCP. All rights reserved.

Privacy PolicyTerms of Service
Rust gameplay

Host a Rust Dedicated Server

The only aim in Rust is to survive. To do this you will need to overcome struggles such as hunger, thirst and cold. Build a fire. Build a shelter. Kill animals for meat. Protect yourself from other players, and kill them for meat. Create alliances with other players and form a town. Do whatever it takes to survive.

Skip the Setup — Deploy Nowor read the full guide below
RequirementsSetup GuideInstallation

Hardware Requirements

Here's what you need to run a Rust dedicated server.

Economy

Small server, 1-40 players, vanilla

CPU3 cores
RAM8 GB
Storage10 GB SSD

Standard

Medium server, 40-150 players with plugins

CPU3.5 cores
RAM10 GB
Storage10 GB SSD

Pro

Large server, 150-500 players, modded

CPU5 cores
RAM16 GB
Storage10 GB SSD

Start hosting from your own computer

Run a Rust server on your desktop, laptop, VPS, or dedicated machine — GameCP automates Docker setup, resource allocation, and Rust configuration instantly. Automatic port forwarding means your friends can connect without touching your router. Start local, scale to a VPS when you're ready.

Get Started FreeNo credit card required

Setup in 4 Steps

Skip the manual SteamCMD installation, port forwarding, and systemd configuration. Install on your own computer and start hosting instantly.

Step 01

Create a GameCP Account

Sign up for free at gamecp.com. No credit card required. Your dashboard is ready in seconds.

GameCP gives you a full control panel with Docker containerization, file management, automatic port forwarding, and automatic updates — all built in.

Step 02

Connect Your Hardware

Install GameCP on your own desktop, laptop, VPS, or dedicated machine. One-line install — no SSH expertise needed.

GameCP installs Docker, configures networking, and sets up automatic port forwarding so your friends can connect instantly. Start hosting from your own PC and scale to a VPS later. Supports Windows, macOS, and Linux.

Step 03

Deploy Rust

Select "Rust" from the template library and hit deploy. GameCP handles SteamCMD (App ID: 258550), ports, startup commands, and all configuration automatically.

Uses the aioegg:production image. Everything is configured out of the box. ~10 GB storage.

Step 04

Start Playing

Hit start and share your server address. Automatic port forwarding handles the rest — no router config needed.

GameCP provides live SOURCE console access from your browser. Your friends connect using the address GameCP gives you.

The Manual Way vs. GameCP

Manual Setup

  • āœ— Install SteamCMD manually
  • āœ— Configure 4+ firewall ports and router settings
  • āœ— Write systemd service files
  • āœ— SSH into server to edit configs
  • āœ— Requires a VPS or dedicated server
  • āœ— 30-60 minutes if experienced

With GameCP

  • One-click SteamCMD install
  • Automatic port forwarding — no router config
  • Host from your own PC, VPS, or dedicated server
  • Docker container with auto-restart
  • Visual config editor in browser
  • Under 5 minutes total

Under the Hood

The full manual process to host a Rust dedicated server on a VPS. Or install GameCP on your own computer and skip all of this.

Step 1

Configure & Prepare

Set your server settings, then install Docker, SteamCMD, and pull the Rust container image.

Server ConfigurationEdit values to update all commands
terminal
# Update system and install Docker
sudo apt update && sudo apt install -y docker.io
sudo systemctl enable --now docker

# Create game server directory
sudo mkdir -p /opt/gameserver

# Install SteamCMD
sudo mkdir -p /opt/steamcmd
curl -sqL "https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz" | sudo tar zxvf - -C /opt/steamcmd

# Server configuration
export LEVEL="Procedural Map"
export WORLD_SIZE="3000"
export WORLD_SEED="0"
export GAMEMODE="vanilla"
export FRAMEWORK="vanilla"
export MODDING_ROOT="carbon"
export SAVEINTERVAL="60"
export AUTO_UPDATE="1"

# Pull the container image
docker pull ghcr.io/sturdystubs/aioegg:production
Step 2

Install Server Files via SteamCMD

Download the Rust dedicated server using Steam App ID 258550.

terminal
# Download Rust server files (App ID: 258550)
/opt/steamcmd/steamcmd.sh \
  +force_install_dir /opt/gameserver \
  +login anonymous \
  +app_update 258550 validate \
  +quit
Step 3

Open Firewall Ports

Rust requires 4 ports to be open for game traffic and queries.

terminal
sudo ufw allow 2302/both
sudo ufw allow 28016/both
sudo ufw allow 28017/both
sudo ufw allow 28082/both
2302/BOTH(PORT)28016/BOTH(RCON_PORT)28017/BOTH(QUERY_PORT)28082/BOTH(APP_PORT)
Step 4

Launch the Server

Start the Rust server using the configuration from Step 1.

Create the startup script

terminal
# Create the startup script
cat > /opt/gameserver/start.sh << 'EOF'
#!/bin/bash
# Build startup arguments
ARGS=(-batchmode)
ARGS+=(+server.port 2302)
ARGS+=(+server.queryport 28017)
ARGS+=(+server.identity "rust")
ARGS+=(+rcon.ip 0.0.0.0)
ARGS+=(+rcon.port 28016)
ARGS+=(+rcon.web true)
ARGS+=(+server.hostname "")
ARGS+=(+server.level "Procedural Map")
ARGS+=(+server.maxplayers )
ARGS+=(+app.port 28082)
ARGS+=(+server.saveinterval 60)
ARGS+=(+server.gamemode "vanilla")
# Modding framework
if [ "vanilla" == "oxide" ]; then
ARGS+=(+oxide.directory carbon)
elif [ "vanilla" != "vanilla" ]; then
ARGS+=(-carbon.rootdir carbon)
fi
# Optional fields - only include if value is non-empty
[ -n "" ] && ARGS+=(+server.description "")
[ -n "" ] && ARGS+=(+server.url "")
[ -n "" ] && ARGS+=(+server.headerimage "")
[ -n "" ] && ARGS+=(+server.logoimage "")
[ -n "" ] && ARGS+=(+rcon.password "")
[ -n "" ] && ARGS+=(+server.tags "")
# Map configuration
if [ -z "" ]; then
ARGS+=(+server.worldsize "3000")
ARGS+=(+server.seed "0")
else
ARGS+=(+server.levelurl "")
fi
# Execute
exec ./RustDedicated "[@]}"
EOF
chmod +x /opt/gameserver/start.sh

Run the container

terminal
docker run -d \
  --name rust-server \
  -p 2302:2302/both \
  -p 28016:28016/both \
  -p 28017:28017/both \
  -p 28082:28082/both \
  -e LEVEL="Procedural Map" \
  -e WORLD_SIZE="3000" \
  -e WORLD_SEED="0" \
  -e GAMEMODE="vanilla" \
  -e FRAMEWORK="vanilla" \
  -e MODDING_ROOT="carbon" \
  -e SAVEINTERVAL="60" \
  -e AUTO_UPDATE="1" \
  -v /opt/gameserver:/opt/gameserver \
  -w /opt/gameserver \
  ghcr.io/sturdystubs/aioegg:production \
  ./start.sh

Or skip all of this

GameCP automates every step above: Docker, SteamCMD, port forwarding, startup, and config. Install on your own PC and deploy a Rust server in under 5 minutes.

Deploy with GameCP

More Hosting Guides

Explore step-by-step setup guides for other popular games supported by GameCP.

7 Days to Die

7 Days to Die

Survival

ARK: Survival Ascended

ARK: Survival Ascended

Survival

ARK: Survival Evolved

ARK: Survival Evolved

Survival

Aska

Aska

Survival

Conan Exiles

Conan Exiles

Survival

DayZ

DayZ

Survival

Don't Starve Together

Don't Starve Together

Survival

Enshrouded

Enshrouded

Survival

View all supported games

Ready to Host Your Rust Server?

Install GameCP on your own computer and start hosting in minutes. Automatic port forwarding, zero config — your friends connect instantly.

Deploy NowView Pricing

No credit card required Ā· Free tier available Ā· Install local, scale later

Host Rust from your own computer. Automatic port forwarding. Zero config.

No credit card requiredDeploy Free