Find us on social media
WhitelistPlayersManagement2 min read
How to add friends to the whitelist
Add players to your server's whitelist using commands or by editing whitelist.json.
Add players via console command
- Open the Console tab in panel.baires.host
- Run:
terminal
whitelist add PlayerName- The player can now connect immediately (no restart needed)
Add multiple players
Run the command once per player:
terminal
whitelist add Steve
whitelist add Alex
whitelist add NotchView current whitelist
terminal
whitelist listRemove a player
terminal
whitelist remove PlayerNameEdit whitelist.json directly
For bulk additions, edit the file directly:
- Go to Files in the panel
- Open
whitelist.json - Add entries in this format:
json
[
{
"uuid": "player-uuid-here",
"name": "PlayerName"
}
]- Save the file
- Run
whitelist reloadin the console
Finding player UUIDs
Use a site like namemc.com to look up a player's UUID from their username. This is required when editing the JSON file directly.
Tips
- The whitelist must be enabled (
whitelist on) for it to have any effect - Player names are case-insensitive in commands
- On offline-mode servers, UUIDs are generated differently — use the console command method instead of manual JSON editing
Was this guide helpful?