Installation - SteamServerUI/StationeersServerUI GitHub Wiki
Installation
Overall installation
The install is supposed to be as easy as possible. No matter which plattform (Linux/Windows), you can just download the latest executable from the releases and run it. It will create all necessary files and folders for you.
Windows Installation
Setting up Stationeers Dedicated Server Control is designed to be straightforward. Follow these instructions to get your server up and running quickly.
Quick Installation Instructions
-
Download and Run the Application
- Download the latest release executable file from the releases page.
- Place it in an empty folder of your choice.
- Run the executable. A console window will open, displaying output. Read it and Navigate to
https://<IP-OF-YOUR-SERVER>:8443
.
-
Access the Web Interface
- Open your web browser.
- Navigate to
https://<IP-OF-YOUR-SERVER>:8443
.- Follow the setup track
Linux Installation
For Linux users, the installation process is similar:
(use some base image of your choise, Ubuntu and Debian 13 have been verified, if using Debian make sure you use debain 13 Trixie)
-
Install Dependencies, optional!!
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.xxx
chmod +x StationeersServerControlX.X.X.xxx
2: Execute
./StationeersServerControlX.X.X.xxx
3: Access the WebUI at https://[your-server-ip]:8443
4: To run SSUI on Startup, you can use a cronjob. Example:
echo "@reboot $(whoami) $(pwd)/StationeersServerControl* >/dev/null 2>&1" | crontab -
This runs SSUI as the user you are currently logged in as at every server startup and suppresses the logs. Edit to your liking.
- VERY OPTIONAL If you run into weird issues, try this:
Check and Install all sorts of possible dependencies I found while experimenting
sudo dpkg --add-architecture i386; sudo apt update; sudo apt install bsdmainutils bzip2 jq lib32gcc-s1 lib32stdc++6 libsdl2-2.0-0:i386 libxml2-utils netcat pigz steamcmd unzip
Updating StationeersServerUI
To update to the latest version, you can use the built-in update system if enabled in the configuration (see Configuration for IsUpdateEnabled
).
Alternatively, download the latest release from the GitHub releases page and read the release notes. Generally, a MAJOR.minor.patch release with a MAJOR increase indicates breaking changes that require migration of some sort.
Next Steps
- First-Time Setup - Configure your server for first use
- Docker Guide - For containerized deployment options
- Web Interface - Learn how to use the web interface