How to reset a Minecraft server world

Resetting a world is deleting a folder, which takes ten seconds. Everything that makes it go wrong happens either side of that, so the order of operations is the whole guide.

Back up before you touch anything

Stop the server first. A running server holds region files open and writes to them, so a copy taken while it is up can be corrupt in ways you will not discover for weeks.

stop
tar czf world-backup-2026-09-02.tar.gz world world_nether world_the_end

Keep the backup somewhere that is not the server. A backup on the same disk protects you from a mistake but not from the disk. Verify it opens before you delete anything, because an archive that failed halfway still leaves a file that looks fine in a directory listing.

What actually needs deleting

A Minecraft world is three folders: world, world_nether and world_the_end. Deleting only the first leaves people standing in the old Nether with their bases intact, which is rarely what anyone means by a reset.

Inside world, the pieces are separable. region is the terrain and builds. playerdata is inventories and positions. advancements and stats are per player. level.dat holds the seed, spawn point and gamerules.

Deleting region while keeping playerdata gives you fresh terrain with everyone keeping their inventory, which is usually a mistake because they keep endgame gear in a fresh world. Deleting both is the honest reset.

Resetting the whole world

With the server stopped and a backup taken, remove the three folders and start the server. It generates a new world from the seed in server.properties, or a random one if that is blank.

Set the seed deliberately if you want a specific map, and clear it if you want something nobody has explored. Leaving the old seed in place regenerates the identical terrain, which surprises people who expected a new map and got their old one back empty.

Remember the things that live outside the world folder: land claims, homes, warps, the economy database and most plugin data are stored per plugin. A world reset that leaves an economy untouched hands day one players a fortune they earned in the last season.

Resetting only the resource world

Most servers that reset regularly do not reset the main world at all. They keep builds and claims permanently and rotate a separate mining world every few weeks, which restores resources without costing anyone their base.

That needs a multiworld plugin. Create a second world, send players there with a warp or a random teleport, and on reset day unload it, delete the folder and create it again with a new seed. Announce it well ahead, because anyone with a chest in that world loses it.

It is the better default. A full reset costs you the players who built something, and those are usually the ones who stay.

Telling players, and keeping them

Announce the date at least a week out and repeat it. Give people a way to carry something across, whether that is a cosmetic, a rank, a small stash or their statistics, because a reset that takes everything reads as starting over on a server you have already finished.

A reset is also the one moment your listing is worth updating, since a fresh map is a genuine reason for someone to try you. Our guide on getting players covers the announcement side, and the newest servers page is where people go looking for exactly this.

Frequently asked questions

Will a reset delete player inventories?

Only if you delete playerdata. Deleting just the region folder keeps every inventory, which usually breaks the balance of the new world. Decide deliberately rather than by accident.

Do I need to delete the Nether and the End too?

Yes, if you want a real reset. They are separate folders and survive a reset of the overworld, bases and all.

How do I keep the same seed?

Put it in the level-seed setting in server.properties before starting the server again. Leaving your old seed there by accident is the most common reason a reset produces the same map.

Can I reset without kicking everyone?

Not the main world. A multiworld setup lets you unload and regenerate a secondary world while people carry on playing elsewhere, which is why resource worlds are set up that way.

Next steps

All guides · Free owner tools · List your server