Skip to main content

Whitelist in Minecraft

Definition

Whitelist is used to manage server whitelists.

In Java Edition, server operators can always connect when the whitelist is active, even if their profiles do not appear in the whitelist. In Bedrock Edition, players must be whitelisted regardless of operator status. The profiles of the whitelisted players are stored in the whitelist.json or allowlist.json‌[Bedrock Edition only] configuration file. In Minecraft Bedrock version 1.18.10 the whitelist was renamed to allowlist. The old file and command still exist, but have been deprecated. 

Syntax

Add the player profile(s) to the whitelist.

The player does not need to be online.

whitelist add <targets> (Java Edition)
allowlist add <name: string> (Bedrock Edition)

Displays all player profiles in the whitelist.

whitelist list (Java Edition)
allowlist list (Bedrock Edition)

Disables the server's use of a whitelist.

whitelist off(Java Edition)
allowlist off (Bedrock Edition)

Enables the server's use of a whitelist.

whitelist on(Java Edition)
allowlist on (Bedrock Edition)

Reloads the list of player profiles in whitelist.json

This is used when whitelist.json has been modified outside of Minecraft.

whitelist reload(Java Edition)
allowlist reload (Bedrock Edition)

Removes the player profile(s) from the whitelist.

The player does not need to be online.

whitelist remove <targets> (Java Edition)
allowlist remove <name: string> (Bedrock Edition)


Arguments

JE: <targets>: game_profile

    Specifies the player profile(s) to be added to or removed from the whitelist.
    Must be a collection of game profiles (player profiles), which can be a player name (must be a real one if the server is in online mode), or a player-type target selector.

BE: name: string: basic_string

    Specifies the player name(s) to be added to or removed from the whitelist.
    Must be a string. And it must be a single word that has no space or a quoted string.

 

Result

 

Command Trigger Java Edition
any the arguments are not specified correctly Unparseable
/whitelist on the whitelist is already enabled Failed
/whitelist off the whitelist is already disabled
the target selector fails to resolve to one or more online players
/whitelist add <targets> there's no new new player profile added to the whitelist
/whitelist remove <targets> all specified profiles is not in the whitelist
any Otherwise Successful

Output

 

Command Edition Situation Success Count /execute store success ... /execute store result ...
any Java Edition On fail N/A 0 0
/whitelist on /whitelist off /whitelist reload On success N/A 1 1
/whitelist list On success N/A 1 the number of players in the list.
/whitelist add <targets> On success N/A 1 the number of new player profiles added to the whitelist.
/whitelist remove <targets> On success N/A 1 the number of player profiles removed from the whitelist.