Conan Exiles' dedicated server is a Windows binary with no Linux build, so before anything else works you have to get a compatibility layer running headless on a box with no desktop. Get that part wrong and the server never starts; get the memory budget wrong and it starts fine, then a month later thrall camps and player builds have pushed it somewhere your tier never had room for.Der Dedicated Server von Conan Exiles ist eine Windows-Binary ohne Linux-Build, also musst du zuerst eine Kompatibilitätsschicht headless auf einer Maschine ohne Desktop zum Laufen bringen, bevor überhaupt irgendetwas anderes funktioniert. Machst du das falsch, startet der Server gar nicht erst; unterschätzt du das Speicherbudget, startet er zunächst problemlos, und einen Monat später haben Thrall-Lager und Spielerbauten ihn dorthin getrieben, wo für deine Stufe nie Platz war.
The dedicated server is a separate, free Steam application from the game itself, published under its own app ID 443030, installable anonymously with SteamCMD — you do not need to own Conan Exiles on the account running it. The main game carries a different app ID, 440900, which matters later because that is the ID Steam Workshop mods are filed under, not the server's own.Der Dedicated Server ist eine separate, kostenlose Steam-Anwendung vom eigentlichen Spiel, veröffentlicht unter ihrer eigenen App-ID 443030, anonym installierbar mit SteamCMD — du musst Conan Exiles auf dem Account, der ihn betreibt, nicht besitzen. Das Hauptspiel trägt eine andere App-ID, 440900, was später wichtig wird, weil das die ID ist, unter der Steam-Workshop-Mods abgelegt sind, nicht die des Servers.
The catch, same as several other survival titles on Unreal Engine, is that this is a Windows-only build. There is no ConanSandboxServer binary for Linux, so something has to stand in for Windows to run ConanSandboxServer.exe on a headless VPS: either Wine, run directly against the executable, or a standalone Proton-GE build (a community-maintained fork of Valve's Proton with compatibility patches Valve's own releases lack), run outside of a Steam client entirely. A maintained community Docker image wraps one of those two approaches in a container for anyone who would rather not own the compatibility layer by hand.Der Haken, wie bei mehreren anderen Survival-Titeln auf Unreal Engine, ist, dass es sich um einen reinen Windows-Build handelt. Es gibt keine ConanSandboxServer-Binary für Linux, also muss etwas Windows auf einem headless VPS ersetzen, um ConanSandboxServer.exe auszuführen: entweder Wine, direkt gegen die ausführbare Datei gefahren, oder ein eigenständiger Proton-GE-Build (ein von der Community gepflegter Fork von Valves Proton mit Kompatibilitäts-Patches, die Valves eigenen Releases fehlen), außerhalb eines Steam-Clients betrieben. Ein gepflegtes Community-Docker-Image wickelt einen dieser beiden Ansätze in einen Container ein, für alle, die die Kompatibilitätsschicht nicht selbst verantworten wollen.
Do not size this off the SteamCMD download, which is a few gigabytes. Size it off free -h on a running server, checked once shortly after boot and again after a base or two has gone up.Bemiss das nicht am SteamCMD-Download, der ein paar Gigabyte groß ist. Bemiss es an free -h auf einem laufenden Server, einmal kurz nach dem Boot geprüft und noch einmal, nachdem ein oder zwei Basen hochgezogen wurden.
A freshly started server on the full Exiled Lands map, with nobody built yet, settles at a few gigabytes once Wine or Proton, the map, and the game's own systems are all resident — modest on its own. What changes that is thrall population, building piece count, and placed containers, all of which stay loaded in memory for as long as the server runs and do not meaningfully shrink between restarts. A server with an actual community on it — several active clans, thrall camps, a scattering of bases across the map — routinely settles past 8 GiB, and a couple of active mods (new building sets, new thrall types, extra map content) push that further still.Ein frisch gestarteter Server auf der vollen Exiled-Lands-Map, auf der noch niemand gebaut hat, pendelt sich bei ein paar Gigabyte ein, sobald Wine oder Proton, die Map und die eigenen Systeme des Spiels vollständig geladen sind — für sich genommen bescheiden. Was das ändert, sind Thrall-Bevölkerung, Anzahl der Baustücke und platzierte Behälter, die alle für die gesamte Laufzeit des Servers im Speicher bleiben und zwischen Neustarts nicht nennenswert schrumpfen. Ein Server mit einer echten Community darauf — mehrere aktive Clans, Thrall-Lager, verstreute Basen über die Map — pendelt sich routinemäßig jenseits von 8 GiB ein, und ein paar aktive Mods (neue Bau-Sets, neue Thrall-Typen, zusätzlicher Map-Inhalt) treiben das noch weiter.
That is the honest read behind the tier choice here: Elite (6 vCPU / 16 GiB / 200 GB) is the size to plan around for a server you expect people to actually keep playing on, where the map fills in over weeks rather than staying empty. Pro (4 vCPU / 8 GiB / 120 GB) is workable for a small group — three or four friends, a fresh world, nobody sprawling yet — but headroom is thin the moment building starts in earnest, and it is the tier to watch closely rather than trust blind. This brief makes no claim about tick rate or exact CPU load either way; those depend on player count and mod choice in ways a general sizing guide cannot honestly promise.Das ist die ehrliche Lesart hinter der Stufenwahl hier: Elite (6 vCPU / 16 GiB / 200 GB) ist die Größe, mit der du für einen Server planen solltest, auf dem tatsächlich über Wochen gespielt wird und die Map sich füllt, statt leer zu bleiben. Pro (4 vCPU / 8 GiB / 120 GB) ist für eine kleine Gruppe machbar — drei oder vier Freunde, eine frische Welt, noch niemand baut ausufernd —, aber der Spielraum ist dünn, sobald ernsthaft gebaut wird, und es ist die Stufe, die du genau im Blick behalten solltest, statt ihr blind zu vertrauen. Dieser Überblick macht keine Aussage zu Tickrate oder exakter CPU-Last in die eine oder andere Richtung; das hängt von Spielerzahl und Mod-Wahl auf eine Weise ab, die ein allgemeiner Dimensionierungsleitfaden nicht ehrlich versprechen kann.
Deploy an Ubuntu LTS image, then do the security basics before anything is exposed to the internet — a non-root user, your SSH key on it, password login off, a firewall that defaults to deny. We wrote those up as connect to your VPS over SSH. SteamCMD is a 32-bit tool even when fetching 64-bit content, so the i386 runtime has to be present:Setze ein Ubuntu-LTS-Image auf und erledige dann die Sicherheitsbasics, bevor irgendetwas dem Internet ausgesetzt ist — ein Non-Root-User, dein SSH-Key darauf, Passwort-Login aus, eine Firewall, die standardmäßig blockiert. Das haben wir unter Über SSH mit deinem VPS verbinden beschrieben. SteamCMD ist ein 32-Bit-Tool, selbst wenn es 64-Bit-Inhalte holt, also muss die i386-Laufzeitumgebung vorhanden sein:
sudo dpkg --add-architecture i386
sudo apt update
sudo apt install -y lib32gcc-s1 curl tar xz-utils
sudo useradd -m -s /bin/bash conan
Everything from here runs as the conan user — never as root:Ab hier läuft alles als der Benutzer conan — niemals als root:
sudo -u conan -i
mkdir -p ~/steamcmd && cd ~/steamcmd
curl -sSL https://media.steampowered.com/client/installer/steamcmd_linux.tar.gz | tar zxf -
./steamcmd.sh +force_install_dir /home/conan/server \
+login anonymous \
+app_update 443030 validate \
+quit
Check that it actually pulled content: /home/conan/server/ConanSandbox should already be several gigabytes. SteamCMD defaults to the host's own platform, and a Windows-only depot can get silently filtered out on a Linux host — the command reports success while the folder stays near-empty, with nothing in the output pointing at why. If that happens, force the platform and rerun:Prüfe, ob es tatsächlich Inhalte gezogen hat: /home/conan/server/ConanSandbox sollte bereits mehrere Gigabyte groß sein. SteamCMD orientiert sich standardmäßig an der Plattform des Hosts, und ein reines Windows-Depot kann auf einem Linux-Host still herausgefiltert werden — der Befehl meldet Erfolg, während der Ordner nahezu leer bleibt, ohne dass die Ausgabe irgendeinen Hinweis auf den Grund gibt. Passiert das, erzwinge die Plattform und führe es erneut aus:
./steamcmd.sh +force_install_dir /home/conan/server \
+login anonymous \
+@sSteamCmdForcePlatformType windows \
+app_update 443030 validate \
+quit
The same command is also how you update later — rerun it, and check patch notes before you do, since a Conan Exiles update has broken mod compatibility before.Derselbe Befehl ist auch der Weg, später zu aktualisieren — führ ihn erneut aus, und prüf vorher die Patch Notes, denn ein Conan-Exiles-Update hat schon einmal die Mod-Kompatibilität gebrochen.
Plain Wine (install from the WineHQ apt repository for a current release rather than Ubuntu's own older package) runs ConanSandboxServer.exe headlessly with a dedicated WINEPREFIX:Reines Wine (installiere es aus dem WineHQ-apt-Repository für ein aktuelles Release, statt aus Ubuntus eigenem, älterem Paket) führt ConanSandboxServer.exe headless aus, mit einem dedizierten WINEPREFIX:
mkdir -p /home/conan/.wine-conan
WINEPREFIX=/home/conan/.wine-conan WINEARCH=win64 winecfg
Running winecfg once against a fresh prefix initializes it before the first real launch, so the actual start script in Step 6 does not stall on first-run prefix setup. Then install the Windows runtime components the binary actually needs into that same prefix with winetricks (sudo apt install -y winetricks if it is not already on the box):winecfg einmal gegen einen frischen Prefix auszuführen, initialisiert ihn vor dem ersten echten Start, sodass das eigentliche Startskript in Schritt 6 nicht am First-Run-Prefix-Setup hängen bleibt. Installiere dann die Windows-Laufzeitkomponenten, die die Binary tatsächlich braucht, mit winetricks in denselben Prefix (sudo apt install -y winetricks, falls es noch nicht auf der Maschine ist):
WINEPREFIX=/home/conan/.wine-conan winetricks -q vcrun2022 corefonts
A stock prefix is missing these, and ConanSandboxServer.exe — an Unreal Engine Windows binary like most of this game's siblings — will typically fail to start or crash on first launch without them, with nothing more useful in the log than an exit code.Einem Standard-Prefix fehlen diese, und ConanSandboxServer.exe — eine Unreal-Engine-Windows-Binary wie die meisten Geschwister dieses Spiels — wird beim ersten Start ohne sie typischerweise nicht starten oder abstürzen, ohne mehr Nützliches im Log als einen Exit-Code.
If you would rather run the same Proton-GE approach several other Windows-only survival servers use, download a current release (search the GloriousEggroll/proton-ge-custom releases on GitHub for the newest tag) and set up the two directories it expects:Willst du lieber denselben Proton-GE-Ansatz fahren, den mehrere andere reine Windows-Survival-Server nutzen, lade ein aktuelles Release herunter (durchsuche die Releases von GloriousEggroll/proton-ge-custom auf GitHub nach dem neuesten Tag) und richte die beiden Verzeichnisse ein, die es erwartet:
mkdir -p /home/conan/proton
tar xf GE-Proton-VERSION.tar.gz -C /home/conan/proton --strip-components=1
mkdir -p /home/conan/server/compatdata /home/conan/steam-client-stub
--strip-components=1 matters here — the release tarball extracts into its own version-named folder, and without that flag the proton script ends up a directory deeper than the fixed path the start script expects.--strip-components=1 ist hier wichtig — das Release-Tarball entpackt sich in einen eigenen, versionsbenannten Ordner, und ohne dieses Flag landet das proton-Skript ein Verzeichnis tiefer als der feste Pfad, den das Startskript erwartet.
Either way, if you would rather not own the compatibility layer at all, a maintained community Docker image built for Conan Exiles dedicated servers wraps the same SteamCMD-plus-Wine-or-Proton process in a container. Search Docker Hub or GitHub for one that is actively maintained for this specific game, read its README before pulling, and pin the exact tag it documents rather than latest — its environment variables and volume layout are the maintainer's choices, not Funcom's.So oder so: Willst du die Kompatibilitätsschicht gar nicht erst selbst verantworten, wickelt ein gepflegtes Community-Docker-Image, gebaut für Conan-Exiles-Dedicated-Server, denselben SteamCMD-plus-Wine-oder-Proton-Prozess in einen Container ein. Suche auf Docker Hub oder GitHub nach einem, das aktiv für genau dieses Spiel gepflegt wird, lies sein README, bevor du pullst, und pinn den exakten Tag, den es dokumentiert, statt latest — seine Umgebungsvariablen und sein Volume-Layout sind die Entscheidungen des Maintainers, nicht die von Funcom.
Both files live at:Beide Dateien liegen unter:
/home/conan/server/ConanSandbox/Saved/Config/WindowsServer/
Not a LinuxServer path — the config directory keeps the Windows-server naming the binary itself expects, whichever compatibility layer is actually running it. Looking in the wrong folder and editing nothing is the most common reason a change appears to do nothing.Kein LinuxServer-Pfad — das Konfigurationsverzeichnis behält die Windows-Server-Benennung, die die Binary selbst erwartet, egal welche Kompatibilitätsschicht sie gerade ausführt. Im falschen Ordner zu suchen und nichts zu ändern, ist der häufigste Grund, warum eine Änderung scheinbar nichts bewirkt.
ServerSettings.ini carries the server identity and ruleset basics:ServerSettings.ini trägt Serveridentität und Regelwerk-Basics:
[ServerSettings]
ServerName=My Server
AdminPassword=changeme
PvPEnabled=True
MaxNudity=2
Replace changeme with your own long, unique value for AdminPassword — and for RCONPassword below if you enable RCON — before you start the server for real. These are example values sitting in the brief, not placeholders the game swaps out for you; a default or guessable admin password hands console control to anyone who finds it.Ersetze changeme durch deinen eigenen langen, einzigartigen Wert für AdminPassword — und für RCONPassword weiter unten, falls du RCON aktivierst —, bevor du den Server richtig startest. Das sind Beispielwerte, die im Überblick stehen, keine Platzhalter, die das Spiel für dich austauscht; ein Standard- oder erratbares Admin-Passwort gibt jedem, der es findet, die Kontrolle über die Konsole.
Engine.ini carries networking and RCON:Engine.ini trägt Netzwerk und RCON:
[URL]
Port=7777
[OnlineSubsystemSteam]
GameServerQueryPort=27015
[RCON]
RCONEnabled=False
RCONPort=25575
RCONPassword=changeme
RCON is optional — it gives you a remote admin console over TCP, and it should stay off unless you actually plan to use it, since a port you don't need is a port you don't want reachable. Both files carry far more keys than shown; set the ones you want and leave the rest at their shipped defaults.RCON ist optional — es gibt dir eine Remote-Admin-Konsole über TCP, und es sollte aus bleiben, außer du planst tatsächlich, es zu nutzen, denn ein Port, den du nicht brauchst, ist ein Port, den du nicht erreichbar haben willst. Beide Dateien tragen weit mehr Schlüssel als gezeigt; setze die, die du willst, und lass den Rest bei den mitgelieferten Standardwerten.
Conan Exiles mods come from Steam Workshop, but they hang off the game's app ID, 440900, not the server's 443030 — download each one with SteamCMD's workshop tools against that ID:Conan-Exiles-Mods kommen aus dem Steam Workshop, hängen aber an der App-ID des Spiels, 440900, nicht an der 443030 des Servers — lade jeden einzeln mit den Workshop-Tools von SteamCMD gegen diese ID herunter:
./steamcmd.sh +login anonymous \
+workshop_download_item 440900 <workshop_id> \
+quit
That lands the mod's .pak file under ~/steamcmd/steamapps/workshop/content/440900/<workshop_id>/, which is not inside the server's install directory at all — this is the detail that bites later. The server only reads mods listed by full path in ConanSandbox/Mods/modlist.txt, one absolute path per line, in load order:Das legt die .pak-Datei des Mods unter ~/steamcmd/steamapps/workshop/content/440900/<workshop_id>/ ab, was überhaupt nicht im Installationsverzeichnis des Servers liegt — das ist das Detail, das später zubeißt. Der Server liest nur Mods, die in ConanSandbox/Mods/modlist.txt mit vollständigem Pfad gelistet sind, ein absoluter Pfad pro Zeile, in Ladereihenfolge:
/home/conan/steamcmd/steamapps/workshop/content/440900/123456789/mod.pak
/home/conan/steamcmd/steamapps/workshop/content/440900/987654321/mod.pak
Either point modlist.txt straight at the downloaded workshop paths, or copy the .pak files into ConanSandbox/Mods/ yourself and list those paths instead — either works, but the two must actually agree, and a stale entry left in modlist.txt after a mod is removed is a server that fails to start with no more explanation than a log line naming the missing file. Mods add directly to the memory floor from the sizing section above, sometimes substantially, so re-check free -h after adding one rather than assuming your tier still has room.Entweder zeigst du modlist.txt direkt auf die heruntergeladenen Workshop-Pfade, oder du kopierst die .pak-Dateien selbst nach ConanSandbox/Mods/ und listest stattdessen diese Pfade — beides funktioniert, aber die beiden müssen tatsächlich übereinstimmen, und ein veralteter Eintrag, der in modlist.txt stehen bleibt, nachdem ein Mod entfernt wurde, ist ein Server, der ohne mehr Erklärung als eine Log-Zeile mit der fehlenden Datei nicht startet. Mods erhöhen die Speicheruntergrenze aus dem Dimensionierungsabschnitt oben direkt, manchmal erheblich, also prüf free -h nach dem Hinzufügen eines Mods erneut, statt anzunehmen, dass deine Stufe noch Platz hat.
Read this before you buy: Conan Exiles listens on 7777/udp and 7778/udp for the game connection, and 27015/udp for the Steam query port the in-game server browser uses. All three are UDP, end to end — a rule opened as TCP leaves the process running with nobody able to join and nothing in the log pointing at why.Lies das, bevor du kaufst: Conan Exiles lauscht auf 7777/udp und 7778/udp für die Spielverbindung, und auf 27015/udp für den Steam-Query-Port, den der Server-Browser im Spiel nutzt. Alle drei sind UDP, durchgehend — eine Regel, die als TCP geöffnet wird, lässt den Prozess laufen, ohne dass jemand beitreten kann, und ohne dass das Log auf den Grund hinweist.
sudo ufw allow 7777/udp
sudo ufw allow 7778/udp
sudo ufw allow 27015/udp
If your VPS gives you NAT IPv4 rather than an address of your own, do not assume that trio is in your forwarded set just because it is the game's default — you get a fixed, small list of forwarded ports, and all three have to be on it. If they are not, change Port= in Engine.ini (and the matching query port) to whichever ports your provider actually forwards, open those instead, and give your players the new game port. The other route is a dedicated IPv4, arranged by e-mail rather than as a self-service add-on. Read NAT IPv4 vs a dedicated IP and NAT IPv4, ports and forwarding before you order if you are not sure which applies to you. If you enabled RCON in Step 3, keep its port off that forwarded list entirely — it is an admin channel, not something players need.Gibt dir dein VPS NAT-IPv4 statt einer eigenen Adresse, nimm nicht an, dass dieses Trio in deinem weitergeleiteten Set steckt, nur weil es der Standard des Spiels ist — du bekommst eine feste, kleine Liste weitergeleiteter Ports, und alle drei müssen darauf stehen. Stehen sie nicht darauf, ändere Port= in Engine.ini (und den passenden Query-Port) auf die Ports, die dein Provider tatsächlich weiterleitet, öffne stattdessen diese, und gib deinen Spielern den neuen Spiel-Port. Der andere Weg ist eine dedizierte IPv4, die per E-Mail geregelt wird, nicht als Self-Service-Add-on. Lies NAT IPv4 vs. dedizierte IP und NAT IPv4, Ports und Weiterleitung, bevor du bestellst, falls du nicht sicher bist, welche Situation bei dir zutrifft. Hast du RCON in Schritt 3 aktiviert, halte dessen Port vollständig von dieser weitergeleiteten Liste fern — es ist ein Admin-Kanal, nichts, was Spieler brauchen.
For the Wine or Proton-GE route, save a start script at /home/conan/server/start.sh:Für den Wine- oder Proton-GE-Weg speichere ein Startskript unter /home/conan/server/start.sh:
#!/bin/bash
export WINEPREFIX=/home/conan/.wine-conan
wine /home/conan/server/ConanSandboxServer.exe -log
(Swap the wine line for the Proton run invocation, pointed at the same binary with STEAM_COMPAT_DATA_PATH and STEAM_COMPAT_CLIENT_INSTALL_PATH set, if you went with Proton-GE instead.) Make it executable and owned by the service account, then wire it into systemd as /etc/systemd/system/conan.service:(Tausche die wine-Zeile gegen den Proton-run-Aufruf, auf dieselbe Binary gerichtet, mit gesetzten STEAM_COMPAT_DATA_PATH und STEAM_COMPAT_CLIENT_INSTALL_PATH, falls du stattdessen Proton-GE gewählt hast.) Mach es ausführbar und gib es dem Service-Account, und binde es dann als /etc/systemd/system/conan.service in systemd ein:
[Unit]
Description=Conan Exiles dedicated server
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
User=conan
WorkingDirectory=/home/conan/server
ExecStart=/home/conan/server/start.sh
Restart=on-failure
RestartSec=20
TimeoutStopSec=90
[Install]
WantedBy=multi-user.target
sudo systemctl enable --now conan, then watch it with journalctl -u conan -f. The first start is slower than every one after, while Wine or Proton finishes its own prefix setup.sudo systemctl enable --now conan, dann beobachte es mit journalctl -u conan -f. Der erste Start ist langsamer als jeder danach, während Wine oder Proton sein eigenes Prefix-Setup abschließt.
If you went with a community Docker image instead, the pattern is the same shape as any Compose-run game server: pin the image's documented tag (check its own tags page for the current one rather than trusting latest), map the three ports above as udp, mount the ConanSandbox/Saved path to a named volume or bind mount so the world survives a container recreate, and set restart: unless-stopped. The image's own README is the source of truth for its environment variables — do not guess at ones a different game's image happens to use.Bist du stattdessen mit einem Community-Docker-Image gefahren, ist das Muster dasselbe wie bei jedem per Compose betriebenen Gameserver: Pinn den dokumentierten Tag des Images (prüf seine eigene Tags-Seite auf den aktuellen, statt latest zu vertrauen), mappe die drei Ports oben als udp, hänge den ConanSandbox/Saved-Pfad an ein benanntes Volume oder einen Bind-Mount, damit die Welt eine Container-Neuerstellung übersteht, und setze restart: unless-stopped. Das README des Images selbst ist die Quelle der Wahrheit für seine Umgebungsvariablen — errate sie nicht anhand dessen, was das Image eines anderen Spiels zufällig verwendet.
The world lives under ConanSandbox/Saved/, and the core of it is a single SQLite database, game.db, alongside its -wal and -shm journal files while the server is running. Copying game.db alone while those journal files exist risks a save that looks complete but is not — either stop the server for the copy, or use a tool that understands SQLite's own backup API rather than a plain file copy mid-write.Die Welt liegt unter ConanSandbox/Saved/, und ihr Kern ist eine einzelne SQLite-Datenbank, game.db, zusammen mit ihren -wal- und -shm-Journal-Dateien, während der Server läuft. Nur game.db zu kopieren, während diese Journal-Dateien existieren, riskiert einen Save, der vollständig aussieht, es aber nicht ist — entweder stoppst du den Server für die Kopie, oder du nutzt ein Tool, das die eigene Backup-API von SQLite versteht, statt eines einfachen Datei-Kopiervorgangs mitten im Schreiben.
None of that protects you from losing the machine itself, since a copy on the same disk goes down with it. Push a copy somewhere else on a schedule; back up your VPS covers what that looks like and what is not included by default anywhere.Nichts davon schützt dich davor, die Maschine selbst zu verlieren, denn eine Kopie auf derselben Platte geht mit ihr unter. Schieb eine Kopie planmäßig woandershin; Backup deines VPS deckt ab, wie das aussieht und was standardmäßig nirgendwo enthalten ist.
Full disclosure: this is what we sell. A populated Conan Exiles server with the full Exiled Lands map and a handful of mods settles well past 8 GiB once buildings and thrall camps pile up, so Elite (6 vCPU / 16 GiB / 200 GB) is the honest size for a server people actually stay on — Pro (4 vCPU / 8 GiB / 120 GB) is fine for a small group on a mostly-empty fresh world, and it is worth watching free -h climb before you assume it will stay there.Zur vollen Transparenz: Das ist, was wir verkaufen. Ein bevölkerter Conan-Exiles-Server mit der vollen Exiled-Lands-Map und einer Handvoll Mods pendelt sich deutlich jenseits von 8 GiB ein, sobald sich Gebäude und Thrall-Lager häufen, also ist Elite (6 vCPU / 16 GiB / 200 GB) die ehrliche Größe für einen Server, auf dem tatsächlich gespielt bleibt — Pro (4 vCPU / 8 GiB / 120 GB) reicht für eine kleine Gruppe auf einer größtenteils leeren, frischen Welt, und es lohnt sich, free -h beim Steigen zu beobachten, bevor du annimmst, dass es dort bleibt.
Linux KVM VPS — EUR 4.99 to EUR 59.99 a month, on our own single-tenant bare metal in Dallas, TX and Charlotte, NC. Full hardware virtualisation (KVM), your own kernel, full root. Six tiers, vps-starter to vps-ultra. Starter is 1 vCPU, 1 GiB RAM, 25 GB disk.Linux-KVM-VPS — 4,99 bis 59,99 EUR im Monat, auf unserer eigenen Single-Tenant-Bare-Metal-Hardware in Dallas, TX und Charlotte, NC. Vollständige Hardware-Virtualisierung (KVM), eigener Kernel, volles Root. Sechs Tarife, vps-starter bis vps-ultra. Starter hat 1 vCPU, 1 GiB RAM, 25 GB Speicher.
You order in the shop, pay by card (Stripe) or SEPA bank transfer, and your login details are e-mailed to you once the service is set up. Support is e-mail, run by one person, with no guaranteed response time. All prices are final totals under the German small-business rule (§19 UStG); no VAT is added or shown.Du bestellst im Shop, zahlst per Karte (Stripe) oder SEPA-Überweisung, und deine Zugangsdaten werden dir per E-Mail zugeschickt, sobald der Dienst eingerichtet ist. Support läuft per E-Mail, von einer einzelnen Person betrieben, ohne garantierte Reaktionszeit. Alle Preise sind Endpreise. Gemäß § 19 UStG wird keine Umsatzsteuer ausgewiesen.
Order vps-elite → · Linux KVM VPS overviewvps-elite bestellen → · Übersicht Linux-KVM-VPS
Written by the person who runs overnight.host: a small, honest hosting company on dedicated bare metal — Linux VPS, game servers, web hosting. Live status at up.overnight.host.Geschrieben von der Person, die overnight.host betreibt: ein kleines, ehrliches Hosting-Unternehmen auf dedizierter Bare-Metal-Hardware — Linux-VPS, Gameserver, Webhosting. Live-Status unter up.overnight.host.
A few gigabytes to idle a fresh map with nobody built yet, climbing from there with thrall count, building piece count and mods together. A server with an actual community on it routinely settles past 8 GiB. Pro (8 GiB) covers a small group on a young world; Elite (16 GiB) is the size to plan around once people are actually staying and building.Ein paar Gigabyte, um eine frische Map im Leerlauf zu halten, auf der noch niemand gebaut hat, steigend von dort mit Thrall-Anzahl, Baustück-Anzahl und Mods zusammen. Ein Server mit einer echten Community darauf pendelt sich routinemäßig jenseits von 8 GiB ein. Pro (8 GiB) deckt eine kleine Gruppe auf einer jungen Welt ab; Elite (16 GiB) ist die Größe, mit der du planen solltest, sobald Leute tatsächlich bleiben und bauen.
7777/udp and 7778/udp for the game connection, and 27015/udp for the Steam query port the server browser uses. All three are UDP end to end — a rule opened as TCP is a common reason a running server shows nobody able to connect. RCON, if you enable it, is a separate TCP port and should never be forwarded.7777/udp und 7778/udp für die Spielverbindung, und 27015/udp für den Steam-Query-Port, den der Server-Browser nutzt. Alle drei sind durchgehend UDP — eine als TCP geöffnete Regel ist ein häufiger Grund, warum ein laufender Server niemanden verbinden lässt. RCON, falls du es aktivierst, ist ein separater TCP-Port und sollte niemals weitergeleitet werden.
No. The dedicated server is a separate, free Steam application (443030) that installs anonymously through SteamCMD. You do need to own Conan Exiles itself to actually connect and play.Nein. Der Dedicated Server ist eine separate, kostenlose Steam-Anwendung (443030), die anonym über SteamCMD installiert wird. Um tatsächlich zu verbinden und zu spielen, musst du Conan Exiles selbst besitzen.
There is no native Linux build. The binary is Windows-only, so it needs either Wine with a dedicated prefix, a standalone Proton-GE build, or a maintained community Docker image that wraps one of those two.Es gibt keinen nativen Linux-Build. Die Binary ist reines Windows, also braucht es entweder Wine mit einem dedizierten Prefix, einen eigenständigen Proton-GE-Build oder ein gepflegtes Community-Docker-Image, das eines der beiden einwickelt.
Mods are Steam Workshop items filed under the game's own app ID (440900), not the server's, so you download them with SteamCMD's workshop tools against that ID rather than the server's app ID. The server itself only loads what ConanSandbox/Mods/modlist.txt lists by full file path, one per line — a path that stops matching an actual .pak file, because a mod moved or was deleted, is a server that fails to start.Mods sind Steam-Workshop-Items, abgelegt unter der eigenen App-ID des Spiels (440900), nicht der des Servers, also lädst du sie mit den Workshop-Tools von SteamCMD gegen diese ID herunter, nicht gegen die App-ID des Servers. Der Server selbst lädt nur, was ConanSandbox/Mods/modlist.txt mit vollständigem Dateipfad listet, einen pro Zeile — ein Pfad, der nicht mehr zu einer tatsächlichen .pak-Datei passt, weil ein Mod verschoben oder gelöscht wurde, ist ein Server, der nicht startet.
Prices are final totals; no VAT is shown (§19 UStG). Need something the shop does not list? Email us for a written offer.Alle Preise sind Endpreise ohne ausgewiesene USt. (§19 UStG). Du brauchst etwas, das nicht im Shop steht? Schreib uns für ein schriftliches Angebot.
Order now →Jetzt bestellen → Request a custom configIndividuelle Konfiguration anfragen