How much RAM does a Rust server need?
For Rust, map size decides your memory requirement and player count barely moves it. A 4k map and a 5k map differ by gigabytes; fifty players and a hundred players differ by a few hundred megabytes.
Recommendation
You need a server with at least
12GB
- Engine / Base OS:
- 6 GB
- Player Overhead:
- +2.5 GB
- Estimated Raw Usage:
- 8.5 GB
- Suggested cores:
- 4
- Disk to allow:
- 20 GB+
Very sensitive to single-core speed — this is where rubber-banding during firefights comes from.
View 12GB PlansWhat actually drives Rust memory use
The entire procedural world is generated and held server-side, so the world seed and size set your floor before anyone connects. On top of that, memory grows through the wipe cycle as players build: every foundation, wall and deployable is a persistent entity, so a server is at its heaviest the day before a wipe and lightest the hour after.
The mistake to avoid
Sizing by player slots. Work out the map size you actually want first, add the growth you expect across a full wipe cycle, and only then think about slots — a 5k map with thirty players needs more memory than a 3k map with a hundred.