Use these definitions as an operational reference. Exact behavior can vary by edition, server software, and version.
Allowlist / whitelist
A list of player accounts permitted to join a private server. Java commonly uses the word whitelist; Bedrock documentation may use allowlist.
Backup generation
One complete saved copy in a rotation. Keeping multiple generations protects against discovering corruption after the newest backup was created.
Bedrock Edition
The Minecraft edition used across consoles, mobile devices, and supported Windows platforms. It uses a different networking and server ecosystem from Java Edition.
Chunk
A section of the Minecraft world loaded, generated, saved, and simulated as players move. New chunk generation can be CPU- and storage-intensive.
Console
The server’s live text interface. Owners read startup messages, warnings, stack traces, player events, and run commands without joining the game.
CPU time
The processor time consumed by server work. Minecraft game logic is sensitive to how quickly the main tick workload can finish.
Datapack
A Vanilla-compatible package that changes recipes, loot, functions, advancements, tags, and other data-driven behavior without a traditional plugin loader.
Difficulty
The world setting that affects hostile mob behavior and survival pressure. Typical values are peaceful, easy, normal, and hard.
EULA
The Minecraft end-user license agreement. A self-hosted Java server normally requires accepting the EULA before the first successful startup.
Fabric
A lightweight modding toolchain and loader. A Fabric server normally needs a compatible loader, Fabric API when required, and matching server/client mods.
Forge
A long-established Minecraft modding platform commonly used by large modpacks. Exact Minecraft, Forge, mod, and Java versions must match.
Game mode
The default gameplay mode, such as survival, creative, adventure, or spectator. Individual players can sometimes have a mode different from the server default.
Hardcore Mode
A high-risk survival configuration. On Java servers, hardcore is associated with hard difficulty and permanent-death-style gameplay expectations.
Heap memory
Memory available to the Java Virtual Machine for Java objects. Allocating more heap does not automatically fix high tick time or inefficient plugins.
IP address
A numeric network address. Players can connect with an IP, but a domain is easier to remember and can point to a changing address.
JAR file
A Java archive. Java server software, plugin installers, and mod loaders are often distributed as JAR files.
Java Edition
The Minecraft edition for Windows, macOS, and Linux with a mature ecosystem of Paper plugins, Fabric mods, Forge modpacks, proxies, and administration tools.
Latency / ping
Network round-trip delay between a player and server. High latency is different from low TPS.
Log
A time-ordered record produced by the server or panel. Logs are the first place to find startup failures, incompatible files, exceptions, and shutdown reasons.
MSPT
Milliseconds per tick. A healthy 20 TPS target has roughly 50 ms available for each tick; sustained work above that budget causes the server to fall behind.
Mod
Code that changes Minecraft behavior through a mod loader. Many gameplay mods must exist on both the server and every connecting client.
Nukkit
A Java-based server implementation for Bedrock protocol communities with a plugin ecosystem. It is not identical to the official Bedrock Dedicated Server.
Online mode
A Java server authentication setting. When enabled, the server verifies player identities through the official authentication flow.
Operator / OP
A player account granted elevated command permissions. Give operator access only to trusted administrators.
Paper
A performance-focused Java server based on the Bukkit/Spigot plugin ecosystem, with additional configuration and administration features.
Plugin
A server-side extension loaded by compatible software such as Paper or Purpur. Players often do not need to install plugins locally.
Port
A numbered network endpoint. Java commonly uses TCP; Bedrock commonly uses UDP. A reachable IP with a closed or incorrect port still fails.
Proxy
Software such as Velocity that routes players among multiple backend servers. A proxy adds flexibility but also authentication and forwarding configuration requirements.
Purpur
A Paper-derived Java server that adds many gameplay and behavior configuration options while retaining compatibility with much of the Paper plugin ecosystem.
RAM
System memory. RAM helps hold worlds, entities, plugins, mods, and Java heap, but server performance can still be limited by CPU time or storage.
Resource pack
Client assets such as textures, models, sounds, and language files. A server can suggest or require a pack, but a resource pack is not a server plugin.
Rollback
Returning files or configuration to a known-good state after a failed update or change.
Simulation distance
The radius around players where game logic such as entities, crops, and redstone is actively simulated.
SRV record
A DNS record that can direct a service name to a hostname and port, allowing a cleaner Java server address in supported clients.
Startup command
The command that launches server software, often including the Java executable, memory arguments, JAR name, and no-GUI option.
TPS
Ticks per second. Minecraft targets 20 TPS. Lower sustained TPS means game logic is progressing more slowly than intended.
UDP
A network transport used by Bedrock server traffic. Firewalls must allow the correct protocol, not only the correct port number.
Vanilla
The official unmodified server behavior and software baseline. Vanilla has no Bukkit plugin support and fewer performance controls than Paper.
Version mismatch
A connection or startup problem caused by incompatible game, loader, plugin, mod, Java, or protocol versions.
View distance
The chunk radius sent to players. Higher values increase chunk loading, network traffic, memory use, and often CPU work.
World seed
The input used by world generation. The same seed does not guarantee identical results across all Minecraft versions or world-generation settings.
Related references
Continue with the server software comparison, error library, or the owner command guide.