Bringing a single-player world onto a server

Worlds & Backups Reviewed September 6, 2026 2 min read

A single-player world and a server world hold the same data in a different arrangement. Copying the folder straight across works for the Overworld and quietly loses the Nether and the End — which people discover a week later, at a portal.

Where each dimension lives

DimensionSingle-playerServer
OverworldMyWorld/regionworld/region
NetherMyWorld/DIM-1world_nether/DIM-1
The EndMyWorld/DIM1world_the_end/DIM1

What to do

  1. Find your saves folder

    On Windows it is under %appdata%/.minecraft/saves. Copy the whole world folder somewhere else before you touch anything.

  2. Upload the Overworld

    The world folder's contents go into world on the server. Contents, not the folder itself — a world/MyWorld/region layout is the most common mistake here.

  3. Split out the Nether and the End

    Create world_nether and world_the_end, and move DIM-1 and DIM1 into them, each keeping its own level.dat copied from the Overworld.

  4. Stop the server before uploading, start it after

    A running server holds the world in memory and will overwrite what you upload the moment it saves.

Your single-player inventory does not come with you

In single-player, your position, inventory and stats live inside level.dat. On a server, each player has their own file in playerdata. So the world arrives complete and you arrive at spawn with nothing — that is expected, not a failed transfer.

Check the version before you upload

Minecraft upgrades a world when a newer version opens it, and that is one-directional. A world last opened in a newer version than your server runs will not load. Match the server version to the world, then upgrade both together if you want to.

Questions this raises

Will my buildings and chests survive?
Yes. Everything placed in the world is in the region files and comes across intact.
Will my achievements come over?
No. Those are per-player and live in single-player's own files.
Can I go back to single-player later?
Yes — download the world and reverse the folder layout. It is the same data.
How to confirm it worked

You spawn in your own world, walk to a build you recognise, and step through a Nether portal into the Nether you already explored.