{"id":16021,"date":"2023-12-17T10:57:01","date_gmt":"2023-12-17T10:57:01","guid":{"rendered":"https:\/\/xgamingserver.com\/blog\/?p=16021"},"modified":"2026-06-15T18:05:35","modified_gmt":"2026-06-15T18:05:35","slug":"how-to-create-enshrouded-dedicated-server-hosting","status":"publish","type":"post","link":"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/","title":{"rendered":"How to Create Enshrouded Dedicated Server Setup Guide"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Running your own <strong>Enshrouded dedicated server<\/strong> gives you a persistent voxel world that stays online whether or not the host player is logged in, with full control over difficulty, slots, and admin roles. Keen Games ships an official dedicated server tool, so you do not need a third-party hack to get a 24\/7 world up. This guide walks through the complete process: installing the server with SteamCMD, understanding every field in <code>enshrouded_server.json<\/code>, opening the correct ports, launching, and connecting from the game. The instructions are current as of the &#8220;Forging the Path&#8221; update (April 2026), the eighth and final major Early Access content update before the planned 1.0 release in Fall 2026.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What you need before you start<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The Enshrouded dedicated server is a <strong>separate Steam application<\/strong> from the game itself. The game client is Steam App ID <strong>1203620<\/strong>, but the dedicated server downloads under App ID <strong>2278520<\/strong> and installs anonymously \u2014 you do not need to own the game or log into a Steam account to pull the server files. A few baseline facts to keep in mind:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Platform:<\/strong> Windows is the only natively supported platform. Keen ships a Windows <code>.exe<\/code> only, and official setup guidance targets Windows Server 2022.<\/li>\n<li><strong>Linux:<\/strong> There is no native Linux server binary. Linux hosting works unofficially through Wine or Proton \u2014 the popular community Docker image ships explicit <code>wine<\/code> and <code>proton<\/code> variants.<\/li>\n<li><strong>Player cap:<\/strong> 16 players, a hard cap baked into the game&#8217;s networking. No host can legitimately exceed it.<\/li>\n<li><strong>RAM:<\/strong> Enshrouded is RAM-heavy. Keen documents a minimum of roughly 5 GB base, plus about 100 MB per player on top. In practice, plan for 16 GB+ for a healthy full server.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Install the server with SteamCMD<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">SteamCMD is Valve&#8217;s command-line tool for installing dedicated servers. Download it from Valve, extract it, then run the following command to pull the Enshrouded server into a folder of your choice. The <code>validate<\/code> flag verifies file integrity, which is worth keeping in your update routine:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>steamcmd +login anonymous +force_install_dir \"C:\\enshrouded-server\" +app_update 2278520 validate +quit<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Note the two key arguments: <code>+login anonymous<\/code> (no credentials required) and <code>+app_update 2278520<\/code> (the dedicated-server App ID, <em>not<\/em> the game&#8217;s 1203620). The same command re-run later updates the server in place, which is exactly how you stay in lockstep with client patches \u2014 when &#8220;Forging the Path&#8221; landed in April 2026, out-of-date servers stopped accepting connections until they were updated.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: First launch to generate the config<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The server binary is <code>enshrouded_server.exe<\/code>. The configuration file does not exist until the first run, so the sequence is: launch once, let it generate the file, stop the server, edit, then relaunch.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Run <code>enshrouded_server.exe<\/code> from the install folder.<\/li>\n<li>On first launch it auto-creates <code>enshrouded_server.json<\/code> in the server&#8217;s base folder.<\/li>\n<li>Stop the server (close the console window or shut it down cleanly).<\/li>\n<li>Edit <code>enshrouded_server.json<\/code> with the settings below.<\/li>\n<li>Relaunch the server and wait for the console to report <code>Host_Online<\/code>.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">That <code>Host_Online<\/code> message is your signal that the world has loaded and the server is accepting connections. Until you see it, the server is still initializing.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Configure enshrouded_server.json<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Every meaningful setting lives in this one JSON file. Here are the documented fields and what each one does:<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Field<\/th><th>Meaning<\/th><th>Default \/ notes<\/th><\/tr><\/thead><tbody>\n<tr><td><code>name<\/code><\/td><td>Server name shown in the browser<\/td><td>e.g. &#8220;Enshrouded Server&#8221;<\/td><\/tr>\n<tr><td><code>password<\/code><\/td><td>Legacy single join password<\/td><td>Modern configs prefer per-role passwords via <code>userGroups<\/code><\/td><\/tr>\n<tr><td><code>saveDirectory<\/code><\/td><td>Save-file path<\/td><td><code>\".\/savegame\"<\/code><\/td><\/tr>\n<tr><td><code>logDirectory<\/code><\/td><td>Log path<\/td><td><code>\".\/logs\"<\/code><\/td><\/tr>\n<tr><td><code>ip<\/code><\/td><td>Bind address<\/td><td><code>\"0.0.0.0\"<\/code> (all interfaces)<\/td><\/tr>\n<tr><td><code>gamePort<\/code><\/td><td>Main game traffic<\/td><td><strong>15636<\/strong> (TCP + UDP)<\/td><\/tr>\n<tr><td><code>queryPort<\/code><\/td><td>Steam server-list \/ query<\/td><td><strong>15637<\/strong> (TCP + UDP)<\/td><\/tr>\n<tr><td><code>slotCount<\/code><\/td><td>Player slots<\/td><td>1\u201316; <strong>16 is the hard cap<\/strong>, higher values are silently truncated<\/td><\/tr>\n<tr><td><code>gameSettingsPreset<\/code><\/td><td>Difficulty preset<\/td><td><code>Default<\/code>, <code>Relaxed<\/code>, <code>Survival<\/code>, or <code>Custom<\/code><\/td><\/tr>\n<tr><td><code>gameSettings<\/code><\/td><td>Detailed gameplay block<\/td><td>Only read when preset is <code>Custom<\/code><\/td><\/tr>\n<tr><td><code>userGroups<\/code><\/td><td>Role array: Admin \/ Friend \/ Guest<\/td><td>Each role has its own password plus permission flags<\/td><\/tr>\n<\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">A minimal, functional configuration looks like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n  \"name\": \"My Enshrouded Server\",\n  \"saveDirectory\": \".\/savegame\",\n  \"logDirectory\": \".\/logs\",\n  \"ip\": \"0.0.0.0\",\n  \"gamePort\": 15636,\n  \"queryPort\": 15637,\n  \"slotCount\": 16,\n  \"gameSettingsPreset\": \"Default\",\n  \"userGroups\": [\n    {\n      \"name\": \"Admin\",\n      \"password\": \"ChangeThisAdminPassword\",\n      \"canKickBan\": true,\n      \"canAccessInventories\": true,\n      \"canEditBase\": true,\n      \"canExtendBase\": true,\n      \"reservedSlots\": 0\n    },\n    {\n      \"name\": \"Friend\",\n      \"password\": \"ChangeThisFriendPassword\",\n      \"canKickBan\": false,\n      \"canAccessInventories\": true,\n      \"canEditBase\": true,\n      \"canExtendBase\": true,\n      \"reservedSlots\": 0\n    },\n    {\n      \"name\": \"Guest\",\n      \"password\": \"ChangeThisGuestPassword\",\n      \"canKickBan\": false,\n      \"canAccessInventories\": false,\n      \"canEditBase\": false,\n      \"canExtendBase\": false,\n      \"reservedSlots\": 0\n    }\n  ]\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">The two settings that trip people up<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Two fields cause the most confusion, so they&#8217;re worth calling out explicitly.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The custom-settings gotcha.<\/strong> The detailed <code>gameSettings<\/code> block \u2014 enemy spawn rates, resource and loot multipliers, and similar tuning \u2014 is <em>only read when <code>gameSettingsPreset<\/code> is set to <code>\"Custom\"<\/code><\/em>. If you leave the preset as <code>Default<\/code>, <code>Relaxed<\/code>, or <code>Survival<\/code> and then edit the <code>gameSettings<\/code> values, your changes are silently ignored and the preset wins. If you want fine-grained control, set the preset to <code>Custom<\/code> first.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Per-role passwords.<\/strong> The modern config uses <code>userGroups<\/code> with separate Admin, Friend, and Guest roles, each with its own password and permission flags such as kick\/ban and inventory access. Players authenticate into a role by entering that role&#8217;s password when joining \u2014 so an admin and a guest connect to the same server but get very different privileges. The legacy single <code>password<\/code> field still exists for backward compatibility, but the role-based approach is the better setup for any shared server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Open the right ports<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Enshrouded needs both default ports open on <strong>both TCP and UDP<\/strong>. If you self-host, forward and allow both on your router and your firewall:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>15636<\/strong> \u2014 game traffic (TCP + UDP)<\/li>\n<li><strong>15637<\/strong> \u2014 query \/ Steam server list (TCP + UDP)<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">If you change the ports in the JSON, remember to mirror those exact numbers in your firewall and port-forward rules. A server that loads fine locally but is invisible to friends is almost always a port problem \u2014 the query port in particular is what makes the server show up in the browser.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Connect to your server<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Once the console shows <code>Host_Online<\/code>, you connect using the server&#8217;s IP and the <strong>query port<\/strong> (not the game port):<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>In Enshrouded, open the server browser and add the server to your Steam Favorites using <code>IP:queryPort<\/code> \u2014 for example <code>203.0.113.10:15637<\/code>.<\/li>\n<li>Refresh the in-game browser and join from your favorites.<\/li>\n<li>If the server uses role passwords, enter the password for the role you should belong to (Admin, Friend, or Guest).<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">For more detail on the client side \u2014 including troubleshooting connection failures and version mismatches \u2014 see our companion guide on <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-join-a-dedicated-enshrouded-server\/\">how to join a dedicated Enshrouded server<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Self-host vs. managed hosting<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Self-hosting on a spare PC works, but it means leaving a machine on around the clock, managing port forwards, and running every SteamCMD update by hand. Because Enshrouded is RAM-heavy and depends on strong single-thread CPU performance plus fast SSD\/NVMe storage for voxel-world save and load, under-provisioned hardware is the usual cause of lag and crashes. A managed host removes that friction: automatic SteamCMD updates keep the server matched to client patches, and a file manager or JSON editor lets you tune <code>enshrouded_server.json<\/code> without remote-desktop access. If you&#8217;d rather skip the maintenance, our <a href=\"https:\/\/xgamingserver.com\/enshrouded-server-hosting\">Enshrouded server hosting plans<\/a> handle updates and config access out of the box, and you can read the full panel walkthrough in the <a href=\"https:\/\/xgamingserver.com\/docs\/enshrouded\">Enshrouded documentation<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">One honest buyer&#8217;s-guide note: Enshrouded has <strong>no official mod API or Workshop support<\/strong> as of mid-2026, so treat &#8220;mod support&#8221; as a non-factor \u2014 be skeptical of any host that heavily advertises it, and equally skeptical of any host claiming more than 16 slots on a single world, since that&#8217;s a game-engine limit, not a plan limit.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">What is the SteamCMD App ID for the Enshrouded server?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The dedicated server installs under App ID <strong>2278520<\/strong> using <code>+login anonymous<\/code>. That&#8217;s different from the game client, which is App ID 1203620. You do not need to own the game to download the server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How many players can join an Enshrouded server?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">16 is the maximum. The <code>slotCount<\/code> field accepts values from 1 to 16, and anything higher is silently truncated to 16. This is a hard cap in the game&#8217;s networking, not a limit set by your host.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why are my custom difficulty settings being ignored?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>gameSettings<\/code> block is only read when <code>gameSettingsPreset<\/code> is set to <code>\"Custom\"<\/code>. If the preset is left as Default, Relaxed, or Survival, the preset overrides your custom values. Set the preset to <code>Custom<\/code> to make your tuning take effect.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Can I run an Enshrouded server on Linux?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">There is no native Linux server binary \u2014 Keen ships a Windows <code>.exe<\/code> only. Linux hosting is possible unofficially through Wine or Proton, and community Docker images provide both wine and proton variants. Windows Server is the natively supported and officially documented path.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Which ports does Enshrouded use, and what do I connect to?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Open <strong>15636<\/strong> (game) and <strong>15637<\/strong> (query) on both TCP and UDP. You connect from the game using <code>IP:queryPort<\/code> \u2014 for example <code>IP:15637<\/code> \u2014 not the game port.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How much RAM does an Enshrouded server need?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Keen documents a minimum base of roughly 5 GB plus about 100 MB per player. For a full 16-slot world with headroom, the practical community recommendation is 16 GB or more. Under-provisioned RAM is the most common cause of lag and crashes.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Running your own Enshrouded dedicated server gives you a persistent voxel world that stays online whether or not the host player is logged in, with full control over difficulty, slots, and admin roles. Keen Games ships an official dedicated server tool, so you do not need a third-party hack to get a 24\/7 world up. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":16023,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_gspb_post_css":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[97],"tags":[],"class_list":["post-16021","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-enshrouded"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.5 (Yoast SEO v26.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Create Enshrouded Dedicated Server Setup Guide - XGamingServer<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create Enshrouded Dedicated Server Setup Guide\" \/>\n<meta property=\"og:description\" content=\"Running your own Enshrouded dedicated server gives you a persistent voxel world that stays online whether or not the host player is logged in, with full control over difficulty, slots, and admin roles. Keen Games ships an official dedicated server tool, so you do not need a third-party hack to get a 24\/7 world up. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/\" \/>\n<meta property=\"og:site_name\" content=\"XGamingServer\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/web.facebook.com\/xgamingserver69\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-12-17T10:57:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-15T18:05:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/12\/Enshrouded-review.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Xray\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rainerstudios\" \/>\n<meta name=\"twitter:site\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Xray\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/\"},\"author\":{\"name\":\"Xray\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/9fe94eb5b0ad6508acec5eef457da608\"},\"headline\":\"How to Create Enshrouded Dedicated Server Setup Guide\",\"datePublished\":\"2023-12-17T10:57:01+00:00\",\"dateModified\":\"2026-06-15T18:05:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/\"},\"wordCount\":1366,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/12\/Enshrouded-review.jpg\",\"articleSection\":[\"Enshrouded\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/\",\"name\":\"How to Create Enshrouded Dedicated Server Setup Guide - XGamingServer\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/12\/Enshrouded-review.jpg\",\"datePublished\":\"2023-12-17T10:57:01+00:00\",\"dateModified\":\"2026-06-15T18:05:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#primaryimage\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/12\/Enshrouded-review.jpg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/12\/Enshrouded-review.jpg\",\"width\":1280,\"height\":720,\"caption\":\"enshrouded-server-hosting\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/xgamingserver.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Enshrouded\",\"item\":\"https:\/\/xgamingserver.com\/blog\/category\/enshrouded\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Create Enshrouded Dedicated Server Setup Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"name\":\"XGamingServer\",\"description\":\"Dedicated Game Server Hosting\",\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\",\"name\":\"XGamingServer\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"XGamingServer\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/web.facebook.com\/xgamingserver69\/\",\"https:\/\/x.com\/xgamingserver\",\"https:\/\/www.instagram.com\/xgamingserver\/\",\"https:\/\/www.linkedin.com\/company\/xgamingserver\/\",\"https:\/\/www.pinterest.com\/xgamingserver\/\",\"https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/9fe94eb5b0ad6508acec5eef457da608\",\"name\":\"Xray\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f5e048c648806821e7dfebe32ad45489165185fe75979165fb4044e2967386d8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f5e048c648806821e7dfebe32ad45489165185fe75979165fb4044e2967386d8?s=96&d=mm&r=g\",\"caption\":\"Xray\"},\"description\":\"A Mathematician who knows a thing or two about Design.\",\"sameAs\":[\"https:\/\/xgamingserver.com\/blog\",\"https:\/\/www.instagram.com\/rainerstudios\/\",\"https:\/\/x.com\/@rainerstudios\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Create Enshrouded Dedicated Server Setup Guide - XGamingServer","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/","og_locale":"en_US","og_type":"article","og_title":"How to Create Enshrouded Dedicated Server Setup Guide","og_description":"Running your own Enshrouded dedicated server gives you a persistent voxel world that stays online whether or not the host player is logged in, with full control over difficulty, slots, and admin roles. Keen Games ships an official dedicated server tool, so you do not need a third-party hack to get a 24\/7 world up. [&hellip;]","og_url":"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/","og_site_name":"XGamingServer","article_publisher":"https:\/\/web.facebook.com\/xgamingserver69\/","article_published_time":"2023-12-17T10:57:01+00:00","article_modified_time":"2026-06-15T18:05:35+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/12\/Enshrouded-review.jpg","type":"image\/jpeg"}],"author":"Xray","twitter_card":"summary_large_image","twitter_creator":"@rainerstudios","twitter_site":"@xgamingserver","twitter_misc":{"Written by":"Xray","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#article","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/"},"author":{"name":"Xray","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/9fe94eb5b0ad6508acec5eef457da608"},"headline":"How to Create Enshrouded Dedicated Server Setup Guide","datePublished":"2023-12-17T10:57:01+00:00","dateModified":"2026-06-15T18:05:35+00:00","mainEntityOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/"},"wordCount":1366,"commentCount":4,"publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/12\/Enshrouded-review.jpg","articleSection":["Enshrouded"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/","url":"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/","name":"How to Create Enshrouded Dedicated Server Setup Guide - XGamingServer","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#primaryimage"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/12\/Enshrouded-review.jpg","datePublished":"2023-12-17T10:57:01+00:00","dateModified":"2026-06-15T18:05:35+00:00","breadcrumb":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#primaryimage","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/12\/Enshrouded-review.jpg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/12\/Enshrouded-review.jpg","width":1280,"height":720,"caption":"enshrouded-server-hosting"},{"@type":"BreadcrumbList","@id":"https:\/\/xgamingserver.com\/blog\/how-to-create-enshrouded-dedicated-server-hosting\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xgamingserver.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Enshrouded","item":"https:\/\/xgamingserver.com\/blog\/category\/enshrouded\/"},{"@type":"ListItem","position":3,"name":"How to Create Enshrouded Dedicated Server Setup Guide"}]},{"@type":"WebSite","@id":"https:\/\/xgamingserver.com\/blog\/#website","url":"https:\/\/xgamingserver.com\/blog\/","name":"XGamingServer","description":"Dedicated Game Server Hosting","publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/xgamingserver.com\/blog\/#organization","name":"XGamingServer","url":"https:\/\/xgamingserver.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","width":"1024","height":"1024","caption":"XGamingServer"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/web.facebook.com\/xgamingserver69\/","https:\/\/x.com\/xgamingserver","https:\/\/www.instagram.com\/xgamingserver\/","https:\/\/www.linkedin.com\/company\/xgamingserver\/","https:\/\/www.pinterest.com\/xgamingserver\/","https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ"]},{"@type":"Person","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/9fe94eb5b0ad6508acec5eef457da608","name":"Xray","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f5e048c648806821e7dfebe32ad45489165185fe75979165fb4044e2967386d8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f5e048c648806821e7dfebe32ad45489165185fe75979165fb4044e2967386d8?s=96&d=mm&r=g","caption":"Xray"},"description":"A Mathematician who knows a thing or two about Design.","sameAs":["https:\/\/xgamingserver.com\/blog","https:\/\/www.instagram.com\/rainerstudios\/","https:\/\/x.com\/@rainerstudios"]}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2023\/12\/Enshrouded-review.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/16021","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/comments?post=16021"}],"version-history":[{"count":13,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/16021\/revisions"}],"predecessor-version":[{"id":22325,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/16021\/revisions\/22325"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media\/16023"}],"wp:attachment":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=16021"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=16021"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=16021"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}