Blog

How to host a Conan Exiles server

JSJesse Schokker·August 11, 2026·7 min read
How to host a Conan Exiles server
DiskLarge, growingEvery building piece is a database row.
The saveA databaseBack this up, not just the folder.
Must configureDecayDisabled decay is the usual cause of slowdown.
ModsOrder mattersPlayers must match the server’s order.

Substantial disk and generous memory, both growing over a season. Every placed building piece on the map is a row in that database, and Conan players build enormously. A server that felt quick at launch can become sluggish months later purely through accumulation.

How to install it

  1. Provision generous disk first. Conan is large on install and grows steadily from there.
  2. Install Steam’s command-line tool, then the Conan Exiles dedicated server using an anonymous login.
  3. Start it once to generate its settings files and the database, then stop it.
  4. Set the server name, admin password and decay settings before anyone joins. Decay especially — retrofitting it onto a full map is unpleasant.
  5. Add mods last, and make sure your players load them in the same order the server does.
steamcmd \
  +force_install_dir /home/conan/server \
  +login anonymous \
  +app_update 443030 validate \
  +quit

# Start once, stop it cleanly, then edit the configs —
# Conan rewrites them on shutdown and will discard live edits.

How to configure it

ServerSettings.inirates, decay, PvP, admin password
Engine.iniserver name and password, network tuning
ConanSandbox/Saved/where both live, plus the world database
The name is in a different file from the passwords

This catches people constantly. Your server name and the join password live in Engine.ini under [OnlineSubsystem]; the admin password and the gameplay rules live in ServerSettings.ini. Editing the wrong file is why a change appears to do nothing.

Engine.ini
[OnlineSubsystem]
; The name players see in the server browser.
ServerName=Your server name

; Empty means anyone can join.
ServerPassword=
ServerSettings.ini
[ServerSettings]
; Needed for any in-game admin command.
AdminPassword=change-me

; The message shown to players when they join.
serverMessageOfTheDay=Welcome. Building decay is on - log in weekly.

PVPEnabled=False
MaxNudity=0

; Decay is not optional on a long-running server. Turning it
; off is the usual reason a Conan server slowly grinds to a halt.
ServerSettingsBuildingDecayEnabled=True
PlayerActiveThresholdDays=14
PortProtocolWhat it carries
7777UDPGame traffic.
7778UDPThe pinger. Without it your server looks unresponsive in the browser.
27015UDPSteam query — how the server gets listed at all.
25575TCPRemote console, if you want it.
  • The database is the server. Everything players have built is in it. A backup that misses it is not a backup.
  • Decay settings are not optional on a long-running server. They are the difference between a map that stays playable and one that grinds to a halt.
  • Edit with the server stopped. Conan rewrites its settings on shutdown, so live edits get discarded.
  • Mod order is part of your configuration. Publish your list and order somewhere players can copy it.
The mistake almost everyone makes

Never cleaning up. Abandoned bases from players who left months ago are still fully simulated and still in the database. Turning decay off is the most common cause of a Conan server that "just got slow for no reason".

Written from experience running these servers. If something here no longer matches what you are seeing, tell us and we will recheck it.

Share this article

JS
Jesse SchokkerFounder & Engineer, GameDash

Building GameDash at Schokker IT — the game server control panel we always wished existed. Writes about infrastructure automation, the SDK and running game servers at scale.

Get early access

GameDash is not open for sign-ups yet. Leave your e-mail and we will tell you the moment it is. Your address is never shared with any 3rd parties and is used exclusively for GameDash news.