Running your own Minecraft server opens up a world of customization and control, allowing you to tailor the gaming experience to your exact preferences. At the heart of this customization lies the server.properties
file, a powerful configuration tool that governs everything from world generation to player behavior. Understanding and mastering this file is crucial for any aspiring Minecraft server administrator.
This guide will walk you through the essentials of the server.properties
file, explaining key settings and how they impact your server. Whether you’re aiming for a relaxed survival experience or a competitive PvP arena, tweaking these properties is the first step to creating your ideal Minecraft world.
Let’s delve into the world of server configuration and unlock the full potential of your Minecraft server!
Understanding the server.properties
File
The server.properties
file is a plain text file that resides in your Minecraft server’s root directory. It is automatically generated the first time you run your server. This file contains a list of settings, each controlling a specific aspect of your server. Think of it as the control panel for your Minecraft world, allowing you to fine-tune almost every element.
Why is it important?
The server.properties
file is essential because it allows you to:
- Customize Gameplay: Change game modes, difficulty, player limits, and more to create the exact experience you want.
- Optimize Performance: Adjust settings to ensure your server runs smoothly, even with many players.
- Manage Security: Control who can join your server and implement security measures.
- World Generation: Influence how your Minecraft world is generated, from seeds to world types.
Location of the file:
You’ll typically find the server.properties
file in the same directory as your minecraft_server.jar
or spigot.jar
file, right in your server’s main folder.
Basic Structure:
The file is structured as a series of key-value pairs. Each line represents a setting, with the key on the left side of the equals sign (=
) and the value on the right.
#Minecraft server properties
#Wed Aug 02 15:39:42 CEST 2023
spawn-protection=16
max-tick-time=60000
query.port=25565
generator-settings=
sync-chunk-writes=true
force-gamemode=false
allow-nether=true
enforce-secure-profile=true
gamemode=survival
broadcast-console-to-ops=true
enable-query=false
player-idle-timeout=0
difficulty=easy
spawn-npcs=true
spawn-animals=true
snooper-enabled=true
hardcore=false
resource-pack-sha1=
level-name=world
level-type=DEFAULT
announce-player-achievements=true
enable-command-block=false
max-players=20
network-compression-threshold=256
resource-pack=
pvp=true
server-port=25565
debug=false
enable-rcon=false
server-ip=
spawn-monsters=true
use-native-transport=true
allow-flight=false
level-seed=
server-name=Unknown Server
rcon.password=
op-permission-level=4
prevent-proxy-connections=false
hide-online-players=false
resource-pack-required=false
max-world-size=29999984
rcon.port=25575
view-distance=10
simulation-distance=10
white-list=false
generate-structures=true
max-build-height=256
online-mode=true
level-seed=
motd=A Minecraft Server
Comments are denoted by a #
at the beginning of the line and are ignored by the server.
Key server.properties
Settings Explained
The server.properties
file contains numerous settings, but some are more crucial than others for customizing your server experience. Here’s a breakdown of some of the most important properties:
Server Settings:
-
server-port=25565
: This defines the port your server will run on. The default port25565
is standard for Minecraft servers. You typically don’t need to change this unless you’re running multiple servers on the same machine. -
max-players=20
: Sets the maximum number of players that can join your server simultaneously. Adjust this based on your server’s resources and desired player capacity. Increasing this value requires more server resources. -
motd=A Minecraft Server
: “Message of the Day”. This is the text displayed under your server name in the Minecraft server list. Make it inviting and informative to attract players! You can use Minecraft formatting codes for colors and styles. -
server-ip=
: In most cases, you can leave this blank. You might need to specify your server’s IP address if you have a more complex network setup or multiple network interfaces. -
online-mode=true
: Crucially important for server security.true
: Enables online mode, which means players must have a legitimate, paid Minecraft account to join. This is highly recommended for public servers to prevent unauthorized access and piracy.false
: Disables online mode, allowing anyone to join, even with cracked or pirated versions of Minecraft. Only use this for private servers with trusted friends on a local network. Running a public server withonline-mode=false
is highly discouraged due to security risks.
-
white-list=false
: Enables or disables the server whitelist.true
: Enables the whitelist. Only players added to thewhitelist.json
file can join the server. Useful for private servers or controlling access.false
: Disables the whitelist. Anyone who knows your server address can join (subject to other restrictions likeonline-mode
).
Gameplay Settings:
-
gamemode=survival
: Sets the default game mode for new players.survival
: Standard survival mode, players must gather resources, build, and survive.creative
: Creative mode, players have unlimited resources and can fly.adventure
: Adventure mode, focused on exploration and player-created maps with specific rules.spectator
: Spectator mode, players can fly through blocks and observe without interacting.
-
difficulty=easy
: Sets the game difficulty.peaceful
: No hostile mobs spawn.easy
: Hostile mobs spawn but are less dangerous.normal
: Standard difficulty.hard
: Hostile mobs are more dangerous, and hunger depletes faster.
-
pvp=true
: Player versus Player combat.true
: Players can attack and damage each other.false
: PvP is disabled.
-
allow-flight=false
: Allows players in survival mode to fly (if cheats are enabled or through plugins). Generally, it’s best to leave thisfalse
for survival servers unless you have a specific reason to enable it. -
spawn-animals=true
: Enables or disables animal spawning.true
: Animals will spawn naturally in the world.false
: No animals will spawn. Useful for reducing server load if you don’t need animals.
-
spawn-monsters=true
: Enables or disables monster (hostile mob) spawning.true
: Hostile mobs like zombies, skeletons, creepers, etc., will spawn.false
: No hostile mobs will spawn (effectively making the world peaceful, even if difficulty is not set to peaceful).
-
enable-command-block=false
: Enables or disables command blocks. Command blocks are special blocks that can execute server commands when activated. Generally, keep thisfalse
unless you specifically need command blocks for complex server setups or custom maps, as they can be exploited if misused.
World Generation Settings:
-
level-name=world
: The name of your main world folder. This is the name players will see for the world. Changing this will create a new world folder with the new name upon server restart if a folder with that name doesn’t already exist. -
level-seed=
: The seed for world generation. Leaving this blank will generate a random world each time. If you enter a specific seed (a string of characters or numbers), the server will generate the same world every time, allowing for predictable world generation. You can share seeds with others to create identical worlds. -
level-type=DEFAULT
: The type of world to generate.DEFAULT
: Standard Minecraft world generation.FLAT
: Creates a flat world, useful for building and testing.LARGE_BIOMES
: Generates a world with larger biomes.AMPLIFIED
: Creates a world with extreme terrain generation, very mountainous and dramatic (can be more resource-intensive).CUSTOMIZED
: Allows for highly customized world generation through thegenerator-settings
property.
-
generate-structures=true
: Enables or disables the generation of structures like villages, dungeons, and strongholds.true
: Structures will generate in the world.false
: No structures will generate.
Performance Settings:
-
view-distance=10
: Determines how many chunks are sent to each player, affecting how far they can see. Higher values increase view distance but also increase server load and bandwidth usage. Lowering this can improve performance on less powerful servers or with many players. -
simulation-distance=10
: Determines the distance around players where game entities (mobs, items, etc.) are actively simulated. Similar toview-distance
, lower values can improve performance, especially CPU usage, but reduce the active area around players.
Optimizing Your server.properties
for Performance and Gameplay
The ideal server.properties
configuration depends heavily on your server’s resources, the number of players, and the type of gameplay you want to offer. Here are some general tips for optimization:
-
For smaller servers or less powerful hardware (like Raspberry Pi):
- Reduce
view-distance
andsimulation-distance
to 6 or even lower. - Consider disabling
spawn-animals
andspawn-monsters
if performance is a major concern, or reduce the spawn rates using server plugins. - Use
level-type=DEFAULT
orFLAT
asAMPLIFIED
is more resource-intensive. - Limit
max-players
to a reasonable number based on your server’s capabilities.
- Reduce
-
For larger servers or performance-focused setups:
- Carefully balance
view-distance
andsimulation-distance
to provide a good player experience without overloading the server. - Explore server optimization guides and consider using server software like PaperMC, which is designed for better performance than Spigot or Vanilla.
- Utilize server monitoring tools to identify performance bottlenecks and adjust settings accordingly.
- Carefully balance
-
Gameplay Customization:
- Experiment with
gamemode
,difficulty
, andpvp
to create your desired gameplay style. - Use
level-seed
to create specific world types or recreate favorite worlds. - Customize the
motd
to reflect your server’s theme and attract players. - Utilize the whitelist for private servers or events.
- Experiment with
Troubleshooting server.properties
Issues
Incorrectly configured server.properties
settings can lead to server issues. Here are some common problems and how to troubleshoot them:
-
Server won’t start:
- Check for syntax errors: Double-check your
server.properties
file for any typos, missing equals signs, or incorrect values. The file must be correctly formatted. - Port conflicts: If you changed
server-port
, ensure that port isn’t already in use by another application.
- Check for syntax errors: Double-check your
-
Unexpected server behavior:
- Review recent changes: If you recently modified
server.properties
, revert to the previous configuration to see if the issue resolves. - Consult server logs: The server logs (
logs/latest.log
in your server directory) often contain error messages that can pinpoint configuration problems. Look for errors related to property parsing or invalid values.
- Review recent changes: If you recently modified
-
Players can’t join:
online-mode=true/false
mismatch: Ensureonline-mode
is set correctly based on whether you want to allow only paid accounts or cracked clients.- Whitelist issues: If using a whitelist, verify players are correctly added to
whitelist.json
. - Firewall/Port forwarding: Double-check your firewall settings and port forwarding if players outside your local network are having trouble connecting.
Conclusion
The server.properties
file is your key to unlocking the full potential of your Minecraft server. By understanding and carefully configuring these settings, you can tailor your server to create the perfect Minecraft experience for yourself and your players. Experiment with different settings, monitor your server’s performance, and don’t be afraid to dive deep into the customization options available. Happy server administrating!