Conan Exiles Enhanced looking over ruins next to a river

Editorial • guide

Conan Exiles Dedicated Server Setup: Launcher, Settings, and SteamCMD

Learn how to set up a Conan Exiles dedicated server with SteamCMD or the dedicated server launcher, configure server settings, open ports, and start hosting.

Published 5/12/20269 min read

Conan Exiles Dedicated Server Setup: Get Your Server Running

Want to host your own Conan Exiles server? This guide walks through the practical SteamCMD route for a Conan Exiles dedicated server setup: install the dedicated server tool, start it once, then edit the generated server settings while the server is offline.

Funcom also provide a Conan dedicated server launcher if you prefer a guided tool. The manual setup path below is useful when you want repeatable updates, custom scripts, or a server that runs on your own Windows or Linux machine.

If you are searching after the Conan Exiles Enhanced update, the basics are the same: install the current dedicated server build, check the generated config files, and test ports before inviting players.

What you need

  • SteamCMD
  • A folder for your Conan Exiles server files
  • Firewall/router access if players will connect from outside your network
  • Enough CPU, RAM, disk, and upload bandwidth for your planned player count
  • A server name, optional player password, and separate admin password

If you do not already have SteamCMD installed, start with the SteamCMD setup guide, then come back here.

Step 1: Generate your Conan Exiles update batch file

Replace the example SteamCMD and server folder paths. This uses the Conan Exiles Dedicated Server app ID 443030. Click Copy and save it in a new text file as Update.bat.

Batch file

@echo off
D:\Tools\SteamCMD\steamcmd.exe +force_install_dir D:\GameServers\ConanExiles +login anonymous +app_update 443030 +quit
call ConanSandboxServer.exe -log

Run this script whenever you want to install, validate, or update the dedicated server files.

Step 2: Install or update the server

Run Update.bat. SteamCMD will download or update the Conan Exiles dedicated server files in your chosen install folder.

If you prefer to run the SteamCMD command manually first, the core command looks like this:

Batch file

D:\Tools\SteamCMD\steamcmd.exe +force_install_dir D:\GameServers\ConanExiles +login anonymous +app_update 443030 validate +quit

That command does four things:

  1. chooses the install folder
  2. logs in anonymously
  3. installs or updates Conan Exiles Dedicated Server app 443030
  4. validates the files before quitting SteamCMD

Step 3: Start the server once

After the install finishes, start the server once so it can generate folders and config files. On Windows, the server executable is commonly launched as:

Batch file

D:\GameServers\ConanExiles\ConanSandboxServer.exe -log

Let the server finish creating its files, then shut it down cleanly before editing settings.

You have the server files installed

The next step is configuration: server name, player password, admin password, Conan Exiles dedicated server settings, ports, and a reliable start script.

Launcher vs SteamCMD

Both options can get a Conan Exiles server online. Pick the one that matches how much control you want over hosting and updates.

Option
Best for
Tradeoff

Conan dedicated server launcher

A guided setup flow with less command-line work

Less ideal if you want fully scripted installs and updates

SteamCMD

Repeatable dedicated server hosting, scheduled updates, and custom folders

Requires editing scripts and config files manually

Steam Library Tools install

A quick first test on a Windows gaming PC

Not as clean for long-running server operations

Edit config while the server is offline

Start the server once, stop it cleanly, then edit generated config files. If you edit while the server is running, changes may be overwritten or ignored.

Conan Exiles server quick reference

Use this as the quick reference while you are setting up the server.

Item
Value
Notes

Dedicated server app ID

443030

SteamDB lists this as the Conan Exiles Dedicated Server tool.

Windows launch executable

ConanSandboxServer.exe

Funcom's guide says you can run the executable directly or use StartServer.bat.

Common launch flag

-log

Useful for keeping a visible server log while testing.

Server config folder

ConanSandbox\Saved\Config\WindowsServer

Generated after the first launch on Windows.

Official guided option

Dedicated Server App

Funcom links a dedicated server application from the official setup page.

Step 4: Configure Conan Exiles dedicated server settings

Funcom's official manual guide points to two main config files for the first settings most server owners need:

  • Engine.ini for the public server name and optional player password
  • ServerSettings.ini for the in-game admin password

For a Windows install, the folder is usually:

Code Example:

D:\GameServers\ConanExiles\ConanSandbox\Saved\Config\WindowsServer

In Engine.ini, add or edit the online subsystem section:

INI

[OnlineSubsystem]
ServerName=YOUR_SERVER_NAME_HERE
ServerPassword=YOUR_DESIRED_PASSWORD_HERE

In ServerSettings.ini, add or edit the server settings section:

INI

[ServerSettings]
AdminPassword=YOUR_DESIRED_ADMIN_PASSWORD_HERE

Use a separate admin password. Do not reuse the public player password for administration.

Common Windows config folder

After first launch, check this folder for generated Conan Exiles server configuration.

Config path

D:\GameServers\ConanExiles\ConanSandbox\Saved\Config\WindowsServer
  • Back up config files before editing
  • Stop the server before saving changes
  • Restart after every config change

Key config files

These are the first files to check after the server has generated its default configuration.

File
What it controls
Example keys

Engine.ini

Server identity, player password, game port, and query port settings

ServerName, ServerPassword, Port, GameServerQueryPort

ServerSettings.ini

In-game server settings and admin access

AdminPassword

Game.ini

RCON settings when remote console access is enabled

RconPort

Step 5: Open the right ports

For friends or public players to join from outside your network, your firewall and router need to allow the ports used by the server.

Funcom's official port table lists these defaults:

  • 7777/UDP for the main game port
  • 7778/UDP for the server browser pinger, which is always the game port plus one
  • 27015/UDP for server query
  • 7777/TCP for mod download, opened on demand when needed
  • 25575/TCP for RCON if you use remote administration

At minimum, allow the game and query ports in your operating system firewall. If the server is behind a home or office router, forward the required ports to the server machine as well.

Default Conan Exiles server ports

Only expose the ports you actually need. RCON should stay closed unless you are deliberately using it and have secured it.

Port
Protocol
Purpose

7777

UDP

Main game traffic

7778

UDP

Server browser pinger; hardcoded as game port plus one

27015

UDP

Server query

7777

TCP

Mod download, opened on demand

25575

TCP

RCON remote administration

Be careful with RCON

RCON gives remote administrative access. If you do not actively use it, leave it closed. If you do use it, set a strong password and avoid exposing it broadly.

Troubleshooting checklist

If the server starts locally but players cannot find or join it, walk through these checks.

Problem
Likely cause
What to try

SteamCMD fails to install the server

Wrong app ID, install path, or login mode

Use app ID 443030, log in anonymously, and validate the install.

Server window opens then closes

Bad launch path, missing dependency, or config issue

Run from Command Prompt or PowerShell so the error stays visible, then check the server logs.

Server works locally but friends cannot join

Firewall, NAT, or router forwarding

Allow the executable and forward the UDP game/query ports used by your config.

Server does not appear in browser

Query port blocked or server still starting

Confirm 27015/UDP or your custom query port is reachable and wait for full startup.

Admin login does not work

Wrong file or stale setting

Stop the server, check ServerSettings.ini, save the admin password, then restart.

FAQ

Common questions

What is the Conan Exiles dedicated server app ID?

The Conan Exiles Dedicated Server app ID is 443030. You can use it with SteamCMD to install or update the server files.

How do I set up a Conan Exiles dedicated server?

The repeatable setup is: install the Conan Exiles Dedicated Server files with SteamCMD app ID 443030, start the server once, stop it cleanly, edit Engine.ini and ServerSettings.ini, open the required ports, then launch it with a start script.

Can I use the Conan Exiles dedicated server launcher instead?

Yes. Funcom's official dedicated server page links a dedicated server application, often searched for as the Conan dedicated server launcher. SteamCMD is still useful when you want scriptable installs, repeatable updates, and more control over where the server files live.

Where do I set the Conan Exiles server name?

After first launch, edit ConanSandbox\Saved\Config\WindowsServer\Engine.ini and set ServerName under [OnlineSubsystem].

Where do I set the Conan Exiles admin password?

Edit ConanSandbox\Saved\Config\WindowsServer\ServerSettings.ini and set AdminPassword under [ServerSettings] while the server is offline.

Which ports does a Conan Exiles server use by default?

Funcom's official guide lists 7777/UDP for game traffic, 7778/UDP for the pinger, 27015/UDP for server query, 7777/TCP for mod download when needed, and 25575/TCP for RCON.

End of guide

Thanks for reading

Conan Exiles server details can change after major updates. If you spot an outdated path, port, or launch note, send it through so this guide can stay useful for other server owners.

Article details

Author: Eps · Editorial Team

Published: 5/12/2026

Updated: 5/12/2026

Feedback

Spotted a problem, outdated step, or missing command? Let us know and we will keep this guide accurate.

Rate this guide

Hover the stars to rate this article. Your rating is saved to your account for this page.

Click a star to leave a rating.