Sunkenland Dedicated Server: WorldGUID & Launch Args Guide
Data Verified: May 2026Complete Sunkenland dedicated server reference. Configure WorldGUID, password (8-char max), max players (cap 15), region, ports, and right-size hardware for stable waterworld co-op servers.
Commands & configuration database
| Command | Default Value | Description | Action |
|---|---|---|---|
-WorldGUID=<guid> | (required) | GUID of the world folder to host. Pre-generated in the game client. The server will not start without this. | |
-Password=<pw> | (empty) | Optional join password. Hard cap of 8 characters. | |
-MaxPlayer=<n> | 3 | Concurrent player cap. Hard limit 15. | |
-Region=<code> | eu | Server region: eu, na, asia. Affects Steam matchmaking visibility. | |
-SessionInvisible=<bool> | false | If true, server is hidden from the public list; only joinable by ServerID or Steam invite. | |
-Port=<n> | 27015 | UDP gameplay port. Run multiple instances on different ports for >15 players. |
Showing 6 of 6 configuration parameters.
| Command | Default Value | Description | Action |
|---|---|---|---|
| No commands match your search. | |||
Showing 0 of 0 admin console commands.
Recommended hosting providers
Vetted hosts with one-click Sunkenland installs. Links are affiliate placeholders and marked rel="sponsored".
Hardware specifications
Sizing guidance for self-hosting a Sunkenland dedicated server.
| Tier | Specification | Use case |
|---|---|---|
| Small (3-5 players) | 4 GB RAM / 2-core 3.5 GHz+ CPU | Early raft + small island base. |
| Standard (8-10 players) | 6 GB RAM / 4-core 4.0 GHz+ CPU / SSD | Established multi-island bases. |
| Max (15 players) | 12 GB RAM / 4-core 4.5 GHz+ Dedicated Node / NVMe | Full cap with heavy builds, single-thread clock matters; the server is Windows binary run under Wine on Linux hosts. |
Default file locations
Default installation paths for Sunkenland dedicated servers installed via SteamCMD.
Windows
%USERPROFILE%\AppData\LocalLow\Vector3 Studio\Sunkenland\Worlds\Linux
Wine prefix: ~/.wine/drive_c/users/<user>/AppData/LocalLow/Vector3 Studio/Sunkenland/Worlds/Pro-Tip: Always stop the server completely before editing configuration files, or the server will overwrite your changes upon restart.
Default ports for port forwarding
Open these on your router and firewall before exposing the server to the internet.
| Service | Protocol | Port |
|---|---|---|
| Game Port | UDP | 27015 |
| Query Port | - | N/A (Steam P2P) |
| RCON / Telnet | - | N/A |
Quick start: launch your Sunkenland server
Copy-paste these two commands to install and start a Sunkenland dedicated server. Tested against SteamCMD on a fresh box.
Step 1, Install via SteamCMDSteam App ID 2667530
steamcmd +@sSteamCmdForcePlatformType windows +force_install_dir /home/steam/sunkenland +login anonymous +app_update 2667530 validate +quitStep 2, Launch the Sunkenland server
cd /home/steam/sunkenland && wine Sunkenland.exe -batchmode -nographics -WorldGUID=YOUR_WORLD_GUID -Password=changeMe -MaxPlayer=8 -Region=eu -Port=27015Note: No native Linux binary, Vector3 Studio ships only the Windows build. Run under Wine, or use the community Docker image (melle2/sunkenland-ds) which wraps Wine + SteamCMD.
Step 1, Install via SteamCMDSteam App ID 2667530
steamcmd +force_install_dir "C:\SunkenlandServer" +login anonymous +app_update 2667530 validate +quitStep 2, Launch the Sunkenland server
"C:\SunkenlandServer\Sunkenland.exe" -batchmode -nographics -WorldGUID=YOUR_WORLD_GUID -Password=changeMe -MaxPlayer=8 -Region=eu -Port=27015Note: Pre-generate a world in the game client first, then copy its folder name from AppData\LocalLow\Vector3 Studio\Sunkenland\Worlds\ and paste it as -WorldGUID. Password is hard-capped at 8 chars; MaxPlayer is hard-capped at 15.
Starter start-sunkenland.sh
A working baseline config with sensible defaults for Sunkenland. Copy it, tweak the marked values, and drop it into your server directory.
#!/usr/bin/env bash
# Sunkenland has no server.cfg, every option is a launch argument.
# Pre-generate a world in the game client first, then paste its folder
# name (the GUID) from AppData/LocalLow/Vector3 Studio/Sunkenland/Worlds/
# as -WorldGUID below.
WORLD_GUID="paste-your-world-guid-here"
PASSWORD="8charMax" # hard-capped at 8 characters
MAX_PLAYER=8 # hard-capped at 15
REGION="eu" # eu | na | asia
PORT=27015
SESSION_INVISIBLE="false" # true = hidden, join via ServerID only
wine Sunkenland.exe \
-batchmode -nographics \
-WorldGUID="$WORLD_GUID" \
-Password="$PASSWORD" \
-MaxPlayer=$MAX_PLAYER \
-Region=$REGION \
-Port=$PORT \
-SessionInvisible=$SESSION_INVISIBLE
Frequently asked questions
Other dedicated servers you might run
Browse all games →Nightingale
SurvivalComplete Nightingale dedicated server reference. Configure ServerSettings.ini, set admin password, max players, realm options, port forwarding, and right-size hardware for stable Realm hosting.
8 configs · 4 consoleOpen guideARK: Survival Evolved
Creature SurvivalComplete ARK: Survival Evolved admin reference. GameUserSettings.ini & Game.ini tuning, taming/harvest multipliers, RCON commands, cluster setup, and hardware sizing for large tribes.
16 configs · 10 consoleOpen guideATLAS
Creature SurvivalComplete ATLAS pirate MMO admin reference. Configure ServerGrid.json grid clusters, RedisDB sharing, taming/harvest rates, and hardware sizing for multi-server PvP fleets.
13 configs · 8 consoleOpen guideCitadel: Forged with Fire
Creature SurvivalComplete Citadel: Forged with Fire admin reference. Configure Game.ini & GameUserSettings.ini, spell/taming multipliers, RCON, and hardware sizing for magic-survival PvP servers.
13 configs · 9 consoleOpen guidePalworld
Creature SurvivalComplete Palworld dedicated server reference. Master PalWorldSettings.ini multipliers, RCON admin commands, port forwarding, and the hardware needed for stable 32-player guilds.
16 configs · 10 consoleOpen guidePath of Titans
Creature SurvivalComplete Path of Titans dedicated server reference. Configure Game.ini, PostgreSQL backend, mods.io sync, crossplay (PC/iOS/Android/Console), and size hardware for stable 200-slot servers.
10 configs · 6 consoleOpen guide
Host your own Sunkenland server
All hosting guides →Step-by-step install and deploy walkthroughs (panels, ports, RAM sizing). Pair these with the command reference above.