Skip to main content
Starmine, Minecraft server hosting

How much RAM for an ARK ASA server?

8 min read

An empty ARK Survival Ascended server can already use 8 to 10 GB of memory after the map loads. The 12 GB floor is not there for show, it just leaves enough breathing room for saves, mod spikes, and players who teleport too fast. Below that, the server does not always crash, it often starts to stutter.

Why does ARK need 12 GB of RAM from the start?

ARK Survival Ascended has a heavy base load: Unreal Engine 5, large maps, many persistent entities, and a dedicated server that keeps much more in memory than a spawn point. On The Island, an empty server often reaches 8 to 10 GB after 10 to 20 minutes. The value changes depending on the server version, the structures already placed, the wild dinos generated, and the size of the save.

12 GB is a floor. Not a luxury. When ASA uses 10 GB out of 12 GB, Linux still leaves room for disk cache, libraries, and saves. When ASA uses 10 GB out of 10 GB, there is swap left, then stutters. You see 2 to 5 second rollbacks, doors that react too late, dinos that jump 10 meters, then sometimes a clean stop.

The server rarely warns you with a nice message. Port 7777 still responds. Steam Query on 27015 still shows the server. Yet the tick drops, saves take 8 to 20 seconds, and available memory falls below 1 GB. From 90% RAM used for several minutes, ASA no longer has enough margin to handle a player loading a big base or a mod initializing its assets.

Measure the real RAM of an ARK server without making a mistake

Do not look at memory just after startup. ARK loads in waves. The map arrives, then the wild dinos, then the bases, then the inventories, then the player connections. A reading at 2 minutes often tells only half the story. Wait 20 minutes, connect a player, teleport into a loaded base, then measure.

  1. Check global memory with a system command. The useful figure is available, not just used, because Linux puts disk cache in the used column.
  2. Check the RSS of the server process. That is the actually resident memory. VSZ is often much higher and does not mean the RAM is consumed.
  3. Repeat the test during a manual save or after 5 players join. That is where bad 8 GB plans show up.
free -m
ps -o pid,rss,vsz,cmd -C ArkAscendedServer

A healthy server keeps at least 1.5 to 2 GB available under normal load. Below 800 MB available, disk access becomes visible on the player side: slow inventory opening, movement that catches, save that freezes the base. If the log contains "Out of memory" or "Killed process", the kernel has already killed a process. If you read "LowLevelFatalError", RAM is not always the culprit, but memory saturation right before the message makes that lead very likely.

Configure ARK Survival Ascended without choking memory

ARK Survival Ascended server configuration is not limited to slots. The file GameUserSettings.ini sets options that change memory pressure throughout the game. A 20 slot empty server uses almost as much as an empty 70 slot server. The gap appears when players build, move dinos, fill storage boxes, and return to their bases.

SettingValue to setWhy this value holds up
MaxPlayers20Good start on 12 GB. Beyond 25 active players, each arrival at a base adds entities, inventories, and dinos to wake up.
RCONport 27020Keep RCON separate from the game ports. Port 7777 is for the game, 7778 for the next pair, 27015 for the Steam query.
Auto save15 minutesShorter wears out the disk. Longer increases the loss in case of a crash. At 30 minutes, a rollback really hurts.

Do not promise 70 players just because the field accepts 70. On 12 GB, expect 10 to 20 real players depending on the bases. On 16 GB, 20 to 35 players become realistic if the mods stay limited. At 40 players, RAM is no longer the only wall, the CPU takes on AI, collisions, and saves. A server can show enough free memory and still lose time on the main thread.

Calculate the impact of ARK mods on memory

Mods change the answer to "how much RAM for an ARK server" faster than players do. A small stack mod often weighs less than 300 MB on disk and adds little memory use. A creature, structure, or progression overhaul can add 1 to 3 GB once loaded. The trap comes from packs that seem to do nothing until someone uses them. Even without any placed crafting, their classes, icons, blueprints, and loot tables can already be in memory.

On ASA, mods are declared on the launch line with -mods= and CurseForge IDs. Do not copy an ARK Survival Evolved logic onto ASA. The old ActiveMods settings found in an ASE guide do not solve the same case. When a mod forces an update at startup, expect a temporary spike: download, extraction, verification, then loading. On a server already using 11,2 Go, that spike can be enough to drop the session.

  • 1 to 3 small quality of life mods: add 1 GB of headroom. The risk mainly comes from updates.
  • 5 to 10 mods with structures and creatures: start with 16 GB. Modded bases multiply persistent objects.
  • More than 10 heavy mods: 24 GB becomes a working baseline. Boot time can go from 4 minutes to more than 10 minutes.

A "Mod mismatch" message is not about a lack of RAM. It means the client and the server do not have the same versions. If this message appears after a restart that dragged on or failed, check the available memory during extraction. That is often where the server ends up stuck.

Limit tamed dinos before the stutters

Tamed dinos cost more than wild dinos asleep far from players. A tame keeps an owner, an inventory, a saddle, stats, a position, sometimes a pending breeding, sometimes a group order. When a base loads with 250 dinos lined up, the server does not just load models. It wakes up states, and each state ends up in the save.

The DinoCountMultiplier multiplier mainly affects wild density. It does not fix a tribe that stores 600 creatures outside. The global cap MaxTamedDinos exists to prevent buildup, but the default value of 5000 is too wide for a small community machine. On 12 GB, set a lower social rule: 150 to 250 dinos out per large tribe, and cryopods or storage for the rest. Beyond 1000 to 1500 active tames on the map, saves get larger and bases load in bursts.

The stutter threshold shows up during base visits. A player arrives flying in, the server wakes up the structures, chests, generators, feeders, and dinos. If the delay goes from 50 ms to 300 ms on the server side for 3 to 10 seconds, that is not "a small lag". It is entity debt. Adding 4 GB of RAM helps if memory is full. If the CPU is already saturated, reduce visible dinos, open breeding, and stacked areas. Hardware does not make up for long for a base that wakes everything at once.

Choose 12, 16, 24 or 32 GB for your ARK server

Choose based on the real load, not the maximum number shown in the server browser. A 12 GB server works for a small extended tribe, one map, few mods, and clean bases. It becomes too tight when available memory stays under 1 GB after 30 minutes with players connected. That threshold leaves little room for saves and mod updates.

RAMConcrete caseThreshold where it degrades
12 GB1 map, 0 to 3 small mods, 10 to 20 real playersMore than 800 to 1000 active dinos, or available memory below 1 GB
16 GB1 map, 5 to 10 mods, 20 to 35 real playersMassive bases, saves over 15 seconds, spikes on restart
24 GBCreature mods, large tribes, community eventsThe CPU often becomes the bottleneck before RAM
32 GBHighly modded server, high retention, heavy saveUseful only if the memory is really being used. Otherwise you are paying for empty space.

The Starmine panel avoids three tasks that waste time at the wrong moment: rewriting the mods line by hand, looking for ASA configuration files, and launching a clean save before a memory or map change.

Do not increase RAM to hide a dirty map. If 24 GB are available and the server is only using 12 GB, the problem is elsewhere: too heavy a save, a poorly maintained mod, a base that wakes too many entities, or a processor that is at its limit during spikes.

Guides

Is 8 GB enough for an ARK Survival Ascended server?

8 GB is rarely enough for ASA. The server may start, then saturate when the map loads, when a player joins a base, or when a mod initializes. For a session that holds up, 12 GB is the realistic minimum.

How many ARK players can a 12 GB server handle?

Count on 10 to 20 actual players on ASA with one map and few mods. The number drops if players keep a lot of dinos out or build very dense bases. An empty slot uses almost nothing. A player who loads a base really uses resources.

Do ARK mods use RAM even if nobody is using them?

Yes, part of the assets and blueprints can be loaded at startup. A structures or creatures mod can add 1 to 3 GB in memory depending on its content. Mod updates also create spikes during download and extraction.

Does adding RAM fix all ARK server lag?

No. RAM fixes memory saturation, save spikes and some base loading issues. If the CPU is bottlenecked by AI, collisions or too many active entities, adding 8 GB will not bring the server tick back up.