Skip to content

Quick Start Guide

JLangisch edited this page Sep 18, 2025 · 14 revisions

This guide provides the quickest way to get your Stationeers server up and running. Follow these straightforward steps for a minimal, working setup.

๐Ÿš€ TL;DR FOR THE IMPATIENT

(like me) Download executable from GitHub, run it, follow the om-screen instructions. You will be redriected to https://[your-ip]:8443/setup for a initial setup, but might as well skip it entirely to use the defaults. Then hit Start. Functioning Stationeers Server on Localhost. But seriously, read a bit.. :)

๐Ÿ“‹ Quick Installation

Windows

  1. Download the latest release from GitHub Releases
  2. Place the executable in an empty folder of your choice
  • (NOTE: Make sure YOU have full permission to this folder. It is recommended to NOT create this folder under the root of your C: drive. Your Documents Folder, ie: %USERPROFILE%\Documents\SSUI, would be a good starting point.)
  1. Run the executable. SSUI will download Steamcmd, Steamcmd will download Stationeers.
  2. Access the WebUI at https://[your-server-ip]:8443

Linux

sudo apt-get update && sudo apt-get install -y lib32gcc-s1
# Download and make executable (replace X.X.X with version number)
wget https://github.com/jacksonthemaster/StationeersServerUI/releases/download/vX.X.X/StationeersServerControlX.X.X_release
chmod +x StationeersServerControlX.X.X_release
./StationeersServerControlX.X.X_release

# Access the WebUI at https://[your-server-ip]:8443

Docker

# Pull and run with Docker
docker run -d --name stationeers-ui -p 8443:8443 -p 27016:27016/tcp \
  -v ./config:/app/config -v ./saves:/app/saves \
  stationeers-server-ui:latest

Warning

For reliable backup operations, use local storage or block-level network storage (iSCSI, Fibre Channel). Network shares like SMB, NFS1/2, CIFS are NOT supported and cause issues. See Backup-System-v2/Important Notes on Filesystem Support for further details if you want to use Network Storage.

โš™๏ธ Minimal Configuration

  1. Click the Config button in the WebUI
  2. Set these essential parameters:
    • ServerName: Give your server a name
    • SaveInfo: Name your save (e.g., "MyBase Moon" for a new Moon world)
    • ServerMaxPlayers: Set number of players (e.g., "8")
    • LocalIpAddress: Your server's IP address (required for Linux)
    • ServerVisible: Set to true to appear in server list
    • AutoSave: Set to true for automatic saving
    • SaveInterval: "300" (5 minutes between saves)
  3. Click Save to apply your settings

Important

For a working Server running on Linux, you need to configure LocalIpAddress correctly.

๐Ÿš€ Start Your Server

  1. Return to the dashboard by clicking Back
  2. Click Start Server
  3. Watch the console for startup progress
  4. Connect via the Stationeers game client when ready

๐Ÿ”Œ Network Setup for External Players

  1. Forward these ports on your router:

    • TCP 27016: Game port
    • TCP 27015: Update port
    • TCP 8443: WebUI (optional, only if remote admin needed)
  2. Configure Windows Firewall:

    • Add inbound rules for ports 27016, 27015, and 8443

๐Ÿš€ Advanced Features (Optional)

Enable these as needed:

Discord Integration

Backup Cleanup

Custom Detections

๐Ÿ› ๏ธ Troubleshooting

  • Server Won't Start: Check that save name is correctly capitalized with no spaces
  • Can't Connect: Verify port forwarding and firewall settings
  • WebUI Issues: Restart the executable completely

๐Ÿ“š Next Steps

For more detailed information:

Clone this wiki locally