Jak włączyć whitelistę na serwerze Minecraft How to Whitelist Your Minecraft Server
Whitelista pozwala tylko danym graczom dołączyć do serwera. Poniżej szybkie komendy i wskazówki, jak ją włączyć, dodać graczy i rozwiązać typowe problemy.
The whitelist lets only approved players join your server. Below are quick commands and tips to enable it, add players, and troubleshoot common issues.


Pracujesz nad serwerem, który nie jest jeszcze gotowy i nie chcesz, żeby wchodzili na niego nikt nieproszony? Whitelista pozwala dołączyć tylko zatwierdzonym graczom. Pozostali zobaczą komunikat o braku dostępu.
Włączanie/wyłączanie whitelisty
Użyj z konsoli albo w grze jako OP:
/whitelist off # wyłącz whitelistę (każdy może dołączyć)
server.properties
:
white-list=true
Dodawanie/usuwanie graczy
/whitelist remove <username> # odbierz dostęp
/whitelist list # lista dopuszczonych graczy
/whitelist reload # wczytaj whitelist.json po ręcznych zmianach
- Nazwy graczy nie są wrażliwe na wielkość liter; serwer zapisuje ich UUID.
- Jeśli edytowałeś
whitelist.json
ręcznie, uruchom/whitelist reload
.
Szybka lista kroków
- Włącz whitelistę:
/whitelist on
. - Dodaj siebie i zespół:
/whitelist add <username>
. - Poproś znajomego o test — konto spoza listy nie powinno mieć możliwości wejścia.
Rozwiązywanie problemów
„Jestem OP, ale nie mogę dołączyć.”
- Bycie OP nie omija whitelisty. Dodaj swój nick:
/whitelist add <nick>
.
Gracz nadal nie może dołączyć po dodaniu
- Sprawdź pisownię nicku gracza.
- Uruchom
/whitelist list
, aby potwierdzić, że jest na liście. - Jeśli edytowałeś pliki bezpośrednio, użyj
/whitelist reload
. - Jeżeli to nie zadziała, wyłącz whitelist
/whitelist off
, wpuść gracza, dodaj go/whitelist add nick
a następnie włącz/whitelist on
.
Chcę, aby była zawsze włączona przy starcie
- Ustaw
white-list=true
wserver.properties
i do zmian na żywo używaj komend.
Working on a server that isn’t ready yet and don’t want random players joining? Whitelisting lets only approved players join. Everyone else is denied with a simple message.
Turn whitelist on/off
Use these from the console or in-game as OP:
/whitelist off # disable whitelist (anyone can join)
server.properties
:
white-list=true
Add/remove players
/whitelist remove <username> # revoke access
/whitelist list # see who is whitelisted
/whitelist reload # reload whitelist.json after manual edits
- Usernames are case-insensitive; the server stores them by UUID.
- If you edited
whitelist.json
by hand, run/whitelist reload
.
Quick setup checklist
- Enable the whitelist:
/whitelist on
. - Add yourself and your team:
/whitelist add <username>
. - Ask a friend to test — a non-whitelisted account should be blocked.
Troubleshooting
“I’m OP but can’t join.”
- Being OP doesn’t bypass the whitelist. Add your username:
/whitelist add <you>
.
Player still can’t join after adding
- Double-check the player’s username spelling.
- Run
/whitelist list
to confirm they’re on the list. - If you edited files directly, use
/whitelist reload
. - If that still fails, temporarily disable the whitelist (
/whitelist off
), let the player join, add them (/whitelist add <username>
), then enable the whitelist again (/whitelist on
).
I want it always enabled on boot
- Set
white-list=true
inserver.properties
and use commands for live changes.