{"id":370,"date":"2021-03-11T17:24:19","date_gmt":"2021-03-11T17:24:19","guid":{"rendered":"https:\/\/xgamingserver.com\/blog\/?p=370"},"modified":"2026-06-14T17:00:45","modified_gmt":"2026-06-14T17:00:45","slug":"how-to-add-install-mods-to-a-dedicated-valheim-server","status":"publish","type":"post","link":"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/","title":{"rendered":"How to Add\/Install Mods to a Valheim Server | BepInEx|uMod| V+"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Modding a dedicated Valheim server is where a co-op world stops being &#8220;vanilla survival&#8221; and becomes something tuned to exactly how your group plays \u2014 bigger build budgets, quality-of-life tweaks, extra biome content, or admin tooling that the base game flat-out refuses to expose on a dedicated host. The catch is that Valheim mods don&#8217;t drop into the game the way a Minecraft jar does. Almost everything runs through a community framework called BepInEx, and a dedicated server adds a second rule that trips up most first-timers: the server and every connecting player frequently have to run the <em>same<\/em> mods at compatible versions, or nobody connects.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This guide walks the full pipeline end to end \u2014 installing BepInEx on the server, placing plugins in <code>BepInEx\/plugins<\/code>, the difference between server-side and client-side mods, where the configs live in <code>BepInEx\/config<\/code>, the Thunderstore and r2modman workflow that makes matching painless, and finally how to confirm the stack actually loaded instead of silently failing. Everything here targets the current Early Access live build (the 0.21x patch family, Ashlands content), with notes where behavior is host-dependent.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What BepInEx actually is (and why you need it)<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">BepInEx is a Unity plugin and patcher framework. It loads <em>before<\/em> the game&#8217;s own code runs and injects mod code without modifying the original game files. That &#8220;non-destructive&#8221; behavior is why removing or renaming one folder reverts you to clean vanilla \u2014 BepInEx never touched the underlying executable in the first place. Valheim&#8217;s mod scene standardized on it years ago, and the Valheim-specific build you want is <strong>BepInExPack_Valheim<\/strong> by the author <em>denikson<\/em>, distributed on Thunderstore.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Individual mods you&#8217;ll see referenced \u2014 Valheim Plus, Epic Loot, Better Networking, Server Devcommands \u2014 are all <em>plugins<\/em> that load through BepInEx. They are useless without the framework present, and the framework alone does nothing until you add plugins to it. Install order is therefore always: framework first, plugins second.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1 \u2014 Install BepInEx into the server root<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Download BepInExPack_Valheim from Thunderstore and unpack it. Inside the archive you&#8217;ll find the framework files plus a top-level <code>BepInEx\/<\/code> folder. You need to copy the <em>contents<\/em> of the pack into your <strong>Valheim server root<\/strong> \u2014 the folder that contains <code>valheim_server.exe<\/code> (or <code>valheim.exe<\/code> on a self-host that doubles as a client). Done correctly, the server root now contains a <code>BepInEx\/<\/code> folder, and inside it a <code>plugins\/<\/code> subfolder.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The folder layout you&#8217;re aiming for looks like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>valheim_server.exe\nstart_headless_server.bat        (Windows start script)\nBepInEx\/\n\u251c\u2500\u2500 core\/                        (the framework itself)\n\u251c\u2500\u2500 plugins\/                     (your .dll mods go HERE)\n\u251c\u2500\u2500 config\/                      (auto-generated on first launch)\n\u2514\u2500\u2500 BepInEx.cfg                  (framework settings)<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">A common mistake is dropping the <code>BepInEx<\/code> folder one level too deep (e.g. into a <code>winhttp<\/code> subfolder, or inside the save directory). It must sit directly beside the server executable. If you&#8217;re on a managed\/game-panel host, the file manager will usually drop you into the server root by default \u2014 that&#8217;s exactly where these files belong.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Self-hosting vs. managed hosting<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">On a self-hosted box you have raw filesystem access, so this is a copy-paste operation. On a managed host you&#8217;ll typically upload the unpacked files through a web file manager or SFTP. The mechanics are identical; only the access method differs. If you&#8217;d rather skip the infrastructure entirely and just manage mods, our <a href=\"https:\/\/xgamingserver.com\/dedicated-valheim-server-hosting\">fully managed Valheim hosting plans<\/a> ship with the file access and resource headroom that modded worlds actually need (modding is RAM-hungry \u2014 more on that below). For the panel-specific walkthrough on our platform, see the <a href=\"https:\/\/xgamingserver.com\/docs\/valheim\">XGamingServer Valheim docs<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2 \u2014 Drop plugins into BepInEx\/plugins<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Every Valheim mod ships as one or more <code>.dll<\/code> files, sometimes alongside a default config or asset files. The rule is simple: each mod&#8217;s <code>.dll<\/code> goes into <code>BepInEx\/plugins\/<\/code>. Many authors package their mod inside a folder (e.g. <code>BepInEx\/plugins\/EpicLoot\/EpicLoot.dll<\/code> plus asset subfolders); BepInEx scans <code>plugins\/<\/code> recursively, so keeping a mod in its own subfolder is fine and actually keeps things tidy.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">After you&#8217;ve added plugins, start the server once. That first launch is what generates the <code>BepInEx\/config\/<\/code> folder and writes out a default <code>.cfg<\/code> file for each plugin that exposes settings. Don&#8217;t skip this \u2014 many people try to edit a config before it exists, get confused, and assume the mod failed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3 \u2014 The critical part: server-side vs. client-side mods<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">This is the single most important concept in Valheim modding and the cause of nearly every &#8220;I installed mods and now nobody can join&#8221; support ticket.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For the <strong>majority of gameplay mods<\/strong>, BepInEx and the matching plugins must be installed on <strong>both the server and every player&#8217;s client<\/strong>, at compatible versions. If a mod changes game logic, items, recipes, world generation, or anything the simulation cares about, an unmodded client (or a client running a different version) will either be rejected at connect or will desync the moment something mod-specific happens.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The exceptions are <strong>client-only mods<\/strong> \u2014 purely cosmetic or local quality-of-life tweaks (custom UI, minimap enhancements, camera tweaks, sorting helpers) that don&#8217;t touch shared state. Those can live on a player&#8217;s client without being on the server, and vice versa. A handful of mods are explicitly <strong>server-only<\/strong> as well \u2014 they enforce or configure behavior the server owns and don&#8217;t need to exist on clients.<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Mod type<\/th><th>Install on server?<\/th><th>Install on clients?<\/th><th>Examples<\/th><\/tr><\/thead><tbody><tr><td>Gameplay \/ content \/ logic<\/td><td>Yes<\/td><td>Yes (all of them)<\/td><td>Valheim Plus, Epic Loot, new biomes\/items<\/td><\/tr><tr><td>Client cosmetic \/ local QoL<\/td><td>No<\/td><td>Optional, per player<\/td><td>Custom UI, minimap, camera tweaks<\/td><\/tr><tr><td>Server admin \/ enforcement<\/td><td>Yes<\/td><td>Usually no<\/td><td>Server Devcommands, Better Networking<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">The practical takeaway: <strong>version-match aggressively<\/strong>. When you update a gameplay mod on the server, push the same version to every player before they reconnect. Mismatched versions are just as fatal as missing mods. Treat the modlist as one synchronized unit across the whole group.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4 \u2014 Configuring mods in BepInEx\/config<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Once the server has launched at least once with a plugin installed, look in <code>BepInEx\/config\/<\/code>. You&#8217;ll find a <code>.cfg<\/code> file per configurable mod \u2014 these are plain text, organized into <code>[Section]<\/code> headers with <code>key = value<\/code> pairs and inline comments describing each option. This is where you set drop rates, build limits, networking caps, feature toggles, and so on.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>## Example shape of a BepInEx mod config (BepInEx\/config\/SomeMod.cfg)\n[General]\n\n## Enable the mod's core feature\n# Setting type: Boolean\nEnableFeature = true\n\n## Multiplier applied to a gameplay value\n# Setting type: Single\nSomeMultiplier = 1.5<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Two things matter here. First, configs that affect shared gameplay generally need to match on server and clients too \u2014 the same matching rule applies to settings, not just the presence of the mod. Second, many mods support config syncing (the server pushes authoritative config to clients on connect) but this is mod-specific; read each mod&#8217;s Thunderstore page. After editing any config, <strong>restart the server<\/strong> so the new values load. Editing a <code>.cfg<\/code> while the server is running does nothing until the next restart unless the mod explicitly watches for changes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Thunderstore + r2modman workflow (strongly recommended)<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">You <em>can<\/em> manage everything by hand \u2014 download each <code>.dll<\/code>, track versions in a spreadsheet, and copy files around. For one or two mods that&#8217;s fine. For a real modpack, use a mod manager. <strong>Thunderstore<\/strong> is the package repository where Valheim mods live, and <strong>r2modman<\/strong> (and the Thunderstore Mod Manager app) is the manager that installs them with dependencies resolved automatically.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The workflow that keeps server and clients perfectly in sync:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>In r2modman, create a <strong>profile<\/strong> for your server and add every gameplay mod you want, at the versions you want.<\/li><li>Let r2modman pull in dependencies (most mods list BepInExPack_Valheim as a dependency, so it&#8217;s handled for you).<\/li><li>Use r2modman&#8217;s <strong>export profile<\/strong> feature to produce a shareable code or file. Send it to every player so they import the identical profile \u2014 instant version match.<\/li><li>For the server itself, locate the profile&#8217;s <code>BepInEx<\/code> folder on disk (r2modman keeps it under its profiles directory) and upload its <code>plugins<\/code> and <code>config<\/code> contents to the server root, or use a host that integrates Thunderstore directly.<\/li><\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">This is the difference between a 5-minute mod update for the whole group and an evening of &#8220;who&#8217;s on the wrong version&#8221; debugging. The profile export is the killer feature \u2014 it turns the matching requirement from a chore into a one-click share.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5 \u2014 Verifying the mods actually loaded<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Never assume a mod loaded just because the file is in the folder. Verify it.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Watch the server console \/ log on startup.<\/strong> BepInEx prints its own banner first (&#8220;BepInEx &#8230; by Bepis&#8221;), then logs each plugin it loads by name and version \u2014 e.g. <code>Loading [Epic Loot 0.x.x]<\/code>. If a plugin is in <code>plugins\/<\/code> but never appears in the log, it didn&#8217;t load (wrong target framework, bad <code>.dll<\/code>, or a missing dependency).<\/li><li><strong>Check for the config files.<\/strong> If <code>BepInEx\/config\/<\/code> contains the mod&#8217;s <code>.cfg<\/code> after a launch, the mod ran far enough to register its settings.<\/li><li><strong>Connect with a matched client and look for in-game effects<\/strong> \u2014 a mod&#8217;s UI panel, new items, or an admin command that only exists when the plugin is present.<\/li><li><strong>Look for load errors in the log.<\/strong> Lines containing <code>Error<\/code> or a stack trace next to a plugin name almost always mean a version mismatch against the current Valheim build, or a dependency that loaded out of order.<\/li><\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">If BepInEx itself doesn&#8217;t print its banner, the framework isn&#8217;t installed in the right place \u2014 go back to Step 1 and confirm the <code>BepInEx<\/code> folder sits directly beside <code>valheim_server.exe<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Admin commands, dev commands, and the dedicated-server trap<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Modding is often paired with admin work, so it&#8217;s worth knowing a hard limitation that surprises everyone: on a <strong>vanilla dedicated server<\/strong>, the powerful cheat\/dev commands \u2014 <code>god<\/code>, <code>fly<\/code>, <code>spawn<\/code>, <code>genloc<\/code>, <code>debugmode<\/code> \u2014 <strong>do not work<\/strong>, even for admins. The wiki is explicit that these are available &#8220;in singleplayer or manually hosted mode only.&#8221; A dedicated server admin (listed in <code>adminlist.txt<\/code> by SteamID64, one ID per line, no comments) can only use a small set: <code>kick<\/code>, <code>ban<\/code>\/<code>unban<\/code>\/<code>banned<\/code>, <code>save<\/code>, <code>ping<\/code>, and the world-modifier commands like <code>setworldmodifier<\/code> and <code>setworldpreset<\/code>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So how do you get spawning and god mode on a dedicated server? With a mod. The <strong>Server Devcommands<\/strong> plugin (Thunderstore, BepInEx) re-enables the dev command set on a dedicated host \u2014 a perfect example of mods filling a gap the base game leaves open. If you want the full breakdown of what works where, see our <a href=\"https:\/\/xgamingserver.com\/blog\/valheim-dedicated-server-console-commands-creative-mode-item-prefab-list\/\">Valheim console commands and creative-mode prefab guide<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Resource requirements for a modded server<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Mods cost memory. A vanilla Valheim server already wants real RAM, and heavy content mods (Valheim Plus, Epic Loot) push that higher. Plan accordingly:<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Scenario<\/th><th>RAM<\/th><th>CPU note<\/th><\/tr><\/thead><tbody><tr><td>Bare minimum (tiny vanilla world)<\/td><td>~2 GB<\/td><td>Single-core clock matters most<\/td><\/tr><tr><td>Typical small world \/ few players<\/td><td>~3 GB<\/td><td>Aim for \u22653.0 GHz per core<\/td><\/tr><tr><td>2\u201310 players<\/td><td>4 GB+<\/td><td>Below 3.0 GHz causes rubber-banding<\/td><\/tr><tr><td>10+ players or heavy mods<\/td><td>8 GB+<\/td><td>Server is largely single-threaded<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Two things to internalize. First, RAM usage grows with explored world size and structure count, so a long-running modded world will need more headroom over time \u2014 restart the server periodically to reclaim memory. Second, Valheim&#8217;s server loop is <strong>largely single-threaded<\/strong>, so a high single-core clock speed beats raw core count; CPUs below ~3.0 GHz are repeatedly cited as a cause of desync. If you&#8217;re modding for a group, also look at the <strong>Better Networking<\/strong> mod \u2014 the dedicated server has a hard-coded per-client send\/receive cap around <strong>64 KB\/s<\/strong>, and Better Networking raises it (256 KB\/s+), which is the single biggest fix for multiplayer rubber-banding. We cover this in depth in <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-fix-lag-desync-in-valheim-dedicated-server\/\">how to fix lag and desync on a Valheim dedicated server<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Going vanilla again, or troubleshooting<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">When something breaks, the fastest diagnostic is to remove mods and confirm the server runs clean. The verified, reliable method is to <strong>rename or remove the <code>BepInEx<\/code> folder<\/strong> (e.g. to <code>Disabled BepInEx<\/code>), which switches the whole framework off and reverts to pure vanilla. To disable a single mod instead, remove or rename just its <code>.dll<\/code> in <code>BepInEx\/plugins\/<\/code>. There&#8217;s a full walkthrough \u2014 including profile-based toggling \u2014 in our <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-disable-valheim-server-bepinex-mods\/\">guide to disabling Valheim BepInEx mods<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">When you reintroduce mods after a fix, add them back in small batches and check the log between batches \u2014 it&#8217;s far easier to find the one broken plugin that way than by loading twenty at once and staring at a wall of errors.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Do mods need to be installed on both the server and the client?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">For most gameplay mods, yes \u2014 BepInEx and the matching plugins must be on the server and on every connecting player&#8217;s client, at compatible versions, or connections fail and the world desyncs. The exceptions are client-only cosmetic\/quality-of-life mods (which a player can run locally without the server having them) and a few server-only enforcement mods. When in doubt, install the same modpack everywhere; the r2modman profile-export feature makes that a one-click share.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Where exactly do I put Valheim mod .dll files?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In <code>BepInEx\/plugins\/<\/code> inside your server root (the folder that holds <code>valheim_server.exe<\/code>). BepInEx scans that folder recursively, so a mod kept in its own subfolder like <code>BepInEx\/plugins\/EpicLoot\/<\/code> works fine. Config files are auto-generated separately into <code>BepInEx\/config\/<\/code> the first time the server launches with that plugin present.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why won&#8217;t my modded server show up or let players join?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The two usual causes are a version mismatch (server and client running different versions of the same gameplay mod) and a missing mod on one side. Confirm every player has the identical modlist and versions as the server, then re-check the server log to verify each plugin actually loaded \u2014 a <code>.dll<\/code> in the folder that never appears in the startup log didn&#8217;t load, often because it&#8217;s built for a different Valheim version than the current live build. Also make sure BepInEx itself prints its banner; if not, the framework is in the wrong location.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Can I use spawn, god, or fly commands on my modded dedicated server?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Not on a vanilla dedicated server \u2014 <code>god<\/code>, <code>fly<\/code>, <code>spawn<\/code>, <code>genloc<\/code>, and <code>debugmode<\/code> are restricted to singleplayer or manually hosted (listen-server) play and don&#8217;t work on a dedicated host even for admins. The fix is the <strong>Server Devcommands<\/strong> mod from Thunderstore, installed via BepInEx like any other plugin, which re-enables the dev command set for admins on a dedicated server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How do I update a mod without breaking the server?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Update the server and all clients together. Bump the version in your r2modman profile, re-export it, and share the new profile with players before anyone reconnects. Replace the corresponding files on the server, restart so new <code>.cfg<\/code> values load, then check the startup log to confirm the new version loaded cleanly. Never update one side and not the other \u2014 a version skew is as fatal as a missing mod.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Do mods carry over to the public-test beta branch?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Test branches usually ship code changes that break mods built against the live build, so expect plugins to need updates (or to be temporarily incompatible) on public-test. The public-test branch is also code-gated \u2014 the access code is <code>yesimadebackups<\/code> \u2014 and back up your <code>.db<\/code> and <code>.fwl<\/code> world files before opting in. Note that as of late 2024 the SteamCMD anonymous download of the dedicated server may require game ownership. See our <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-install-valheim-public-test-beta\/\">guide to the Valheim public-test beta<\/a> for the full opt-in process.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Wrapping up<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The whole pipeline reduces to five moves: install BepInExPack_Valheim into the server root, drop plugins into <code>BepInEx\/plugins<\/code>, match the server&#8217;s gameplay mods on every client at the same versions, tune behavior in <code>BepInEx\/config<\/code> (and restart to apply), and verify the load in the startup log. Use r2modman with profile export to make the matching step painless, and lean on mods like Server Devcommands and Better Networking to fill the gaps the dedicated server leaves open. If you want to compare hosting models before you commit hardware to a modded world, our breakdown of <a href=\"https:\/\/xgamingserver.com\/blog\/dedicated-vs-slots-valheim-server\/\">dedicated vs. slot-based Valheim hosting<\/a> explains why RAM and single-core clock \u2014 not slot counts \u2014 decide how smooth a modded server actually runs.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Modding a dedicated Valheim server is where a co-op world stops being &#8220;vanilla survival&#8221; and becomes something tuned to exactly how your group plays \u2014 bigger build budgets, quality-of-life tweaks, extra biome content, or admin tooling that the base game flat-out refuses to expose on a dedicated host. The catch is that Valheim mods don&#8217;t [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":388,"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":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[18],"tags":[],"class_list":["post-370","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-valheim-server-docs"],"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 Add\/Install Mods to a Valheim Server | BepInEx|uMod| V+ - XGamingServer<\/title>\n<meta name=\"description\" content=\"In this tutorial will go into detail on how to install Mods on a valheim Dedicated Server. Using Bepinex, Valheim Plus and Umod.\" \/>\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-add-install-mods-to-a-dedicated-valheim-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Add\/Install Mods to a Valheim Server | BepInEx|uMod| V+\" \/>\n<meta property=\"og:description\" content=\"In this tutorial will go into detail on how to install Mods on a valheim Dedicated Server. Using Bepinex, Valheim Plus and Umod.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/\" \/>\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=\"2021-03-11T17:24:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-14T17:00:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2021\/03\/Mods.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"450\" \/>\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=\"8 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-add-install-mods-to-a-dedicated-valheim-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/\"},\"author\":{\"name\":\"Xray\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/9fe94eb5b0ad6508acec5eef457da608\"},\"headline\":\"How to Add\/Install Mods to a Valheim Server | BepInEx|uMod| V+\",\"datePublished\":\"2021-03-11T17:24:19+00:00\",\"dateModified\":\"2026-06-14T17:00:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/\"},\"wordCount\":2545,\"commentCount\":5,\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2021\/03\/Mods.jpg\",\"articleSection\":[\"Valheim\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/\",\"name\":\"How to Add\/Install Mods to a Valheim Server | BepInEx|uMod| V+ - XGamingServer\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2021\/03\/Mods.jpg\",\"datePublished\":\"2021-03-11T17:24:19+00:00\",\"dateModified\":\"2026-06-14T17:00:45+00:00\",\"description\":\"In this tutorial will go into detail on how to install Mods on a valheim Dedicated Server. Using Bepinex, Valheim Plus and Umod.\",\"breadcrumb\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/#primaryimage\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2021\/03\/Mods.jpg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2021\/03\/Mods.jpg\",\"width\":800,\"height\":450,\"caption\":\"Valheim Mods Installation to server\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/xgamingserver.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Valheim\",\"item\":\"https:\/\/xgamingserver.com\/blog\/category\/valheim-server-docs\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Add\/Install Mods to a Valheim Server | BepInEx|uMod| V+\"}]},{\"@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 Add\/Install Mods to a Valheim Server | BepInEx|uMod| V+ - XGamingServer","description":"In this tutorial will go into detail on how to install Mods on a valheim Dedicated Server. Using Bepinex, Valheim Plus and Umod.","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-add-install-mods-to-a-dedicated-valheim-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Add\/Install Mods to a Valheim Server | BepInEx|uMod| V+","og_description":"In this tutorial will go into detail on how to install Mods on a valheim Dedicated Server. Using Bepinex, Valheim Plus and Umod.","og_url":"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/","og_site_name":"XGamingServer","article_publisher":"https:\/\/web.facebook.com\/xgamingserver69\/","article_published_time":"2021-03-11T17:24:19+00:00","article_modified_time":"2026-06-14T17:00:45+00:00","og_image":[{"width":800,"height":450,"url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2021\/03\/Mods.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":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/#article","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/"},"author":{"name":"Xray","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/9fe94eb5b0ad6508acec5eef457da608"},"headline":"How to Add\/Install Mods to a Valheim Server | BepInEx|uMod| V+","datePublished":"2021-03-11T17:24:19+00:00","dateModified":"2026-06-14T17:00:45+00:00","mainEntityOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/"},"wordCount":2545,"commentCount":5,"publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2021\/03\/Mods.jpg","articleSection":["Valheim"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/","url":"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/","name":"How to Add\/Install Mods to a Valheim Server | BepInEx|uMod| V+ - XGamingServer","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/#primaryimage"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2021\/03\/Mods.jpg","datePublished":"2021-03-11T17:24:19+00:00","dateModified":"2026-06-14T17:00:45+00:00","description":"In this tutorial will go into detail on how to install Mods on a valheim Dedicated Server. Using Bepinex, Valheim Plus and Umod.","breadcrumb":{"@id":"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/#primaryimage","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2021\/03\/Mods.jpg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2021\/03\/Mods.jpg","width":800,"height":450,"caption":"Valheim Mods Installation to server"},{"@type":"BreadcrumbList","@id":"https:\/\/xgamingserver.com\/blog\/how-to-add-install-mods-to-a-dedicated-valheim-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xgamingserver.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Valheim","item":"https:\/\/xgamingserver.com\/blog\/category\/valheim-server-docs\/"},{"@type":"ListItem","position":3,"name":"How to Add\/Install Mods to a Valheim Server | BepInEx|uMod| V+"}]},{"@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\/2021\/03\/Mods.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/370","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=370"}],"version-history":[{"count":42,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/370\/revisions"}],"predecessor-version":[{"id":22231,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/370\/revisions\/22231"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media\/388"}],"wp:attachment":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=370"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=370"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=370"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}