Tell me more ×
Arqade is a question and answer site for passionate videogamers on all platforms. It's 100% free, no registration required.

What is the minimum RAM needed for an Minecraft server? (without using custom servers) There will be at most 5 players, the VPS will be OpenVZ.

share|improve this question

2 Answers

up vote 4 down vote accepted

Tip: If you want to spare more memory, you may set the -Xms parameter even lower, say:

java -Xms32M -Xmx512M -jar minecraft_server.jar nogui

The parameter controls how much memory is reserved on startup. Your server will start with 32MB RAM and whenever it needs more memory it will allocate some until it reaches the maximum of 512M. However, this will result in a little slowdown whenever the allocation is done.

Source: http://www.minecraftwiki.net/wiki/Tutorials/Setting_up_a_server#Less_than_1GB_free_RAM

Also you can check this website : http://www.canihostaminecraftserver.com/

With this you can have a small idea on how many players you can handle :D

share|improve this answer

If I remember correctly it's about 10 MB per expected user. However, it is also assuming that the players will stay somewhat close together, if everyone spreads out then you'll need a signifigantly higher amount of ram.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.