Enshrouded2026-06-17 · 8 min read

How to Host an Enshrouded Server

Enshrouded's dedicated server is easier to run than most survival game servers — the binary is on Steam, the config is a single JSON file and the defaults are sensible. The trickiest parts are RAM sizing and making sure both UDP ports are open. Here is the complete path.

Setup steps

1

Pick 4 GB RAM for up to 4 players or 6 GB for 5–16. The world cache grows with exploration so headroom matters.

2

Open UDP ports 15636 and 15637 in your firewall — these are the default Enshrouded game and query ports.

3

Edit enshrouded_server.json to set your server name, password, and player slot cap (max 16).

4

Start the server process and wait for 'Finished bootstrapping server' in the log before inviting players.

5

Take a backup of the Enshrouded/ save folder before making any config changes or updating the server.

Key config fields in enshrouded_server.json

FieldWhat it does
nameServer name shown in the browser
passwordJoin password — empty string for public
maxConnectedPlayersPlayer cap, 1–16
saveDirectoryPath to world save files
gamePortUDP game port (default 15636)
queryPortUDP query port (default 15637)

Skip the manual setup

CoalHost handles the SteamCMD install, port exposure and config scaffolding automatically. You fill in the server name and password in the panel, click start, and get a server address back in under 60 seconds. Updates run with one click and backups are automatic.

Get an Enshrouded server →

FAQ

What ports does an Enshrouded server use?

Enshrouded uses UDP 15636 (game) and UDP 15637 (query) by default. Both must be open in your firewall or security group. TCP is not used for the game connection.

How do I set a password on an Enshrouded server?

Edit enshrouded_server.json in your server root. Set the 'password' field to your desired password. Leave it as an empty string for a public server. Restart the server after changing this.

Can I transfer an Enshrouded world to a dedicated server?

Yes. Copy the save files from %USERPROFILE%\AppData\Local\Enshrouded\Saves\ on the host PC into the Enshrouded save folder on the server. Stop the server first, copy the files, then restart.

How do I update an Enshrouded dedicated server?

Stop the server, run SteamCMD with app_update 2278520 and restart. If you use a managed host, the panel handles updates automatically. Always back up before updating.

Can all 16 players join at once on a basic plan?

Yes if you have enough RAM. 4 GB covers 1–4 players, 6 GB covers 5–16. The player cap in enshrouded_server.json controls the maximum — set it to 16 for a full lobby.