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
| Dimension | Single-player | Server |
|---|---|---|
| Overworld | MyWorld/region | world/region |
| Nether | MyWorld/DIM-1 | world_nether/DIM-1 |
| The End | MyWorld/DIM1 | world_the_end/DIM1 |
What to do
- Find your saves folder
On Windows it is under
%appdata%/.minecraft/saves. Copy the whole world folder somewhere else before you touch anything. - Upload the Overworld
The world folder's contents go into
worldon the server. Contents, not the folder itself — aworld/MyWorld/regionlayout is the most common mistake here. - Split out the Nether and the End
Create
world_netherandworld_the_end, and moveDIM-1andDIM1into them, each keeping its ownlevel.datcopied from the Overworld. - 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.
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.
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.
You spawn in your own world, walk to a build you recognise, and step through a Nether portal into the Nether you already explored.