Winter-Deal Save 50% on your game server and get a free Teamspeak server included.

Language & Currency

Currency

Minecraft: Your game, your server

Minecraft Rent server
from 4.44
AUD /month
from 5.26
BGN /month
from 16.17
BRL /month
from 4.00
CAD /month
from 2.54
CHF /month
from 20.48
CNY /month
from 67.37
CZK /month
from 20.06
DKK /month
from 2.69
EUR /month
from 2.24
GBP /month
from 21.94
HKD /month
from 20.27
HRK /month
from 1,083.94
HUF /month
from 45,677.01
IDR /month
from 10.04
ILS /month
from 244.28
INR /month
from 396.24
ISK /month
from 430.64
JPY /month
from 4,060.56
KRW /month
from 57.34
MXN /month
from 12.50
MYR /month
from 31.34
NOK /month
from 4.94
NZD /month
from 162.71
PHP /month
from 11.20
PLN /month
from 13.39
RON /month
from 315.27
RUB /month
from 30.25
SEK /month
from 3.78
SGD /month
from 94.79
THB /month
from 102.08
TRY /month
from 2.82
USD /month
from 51.80
ZAR /month
from 5.79
date /month

How to unban players in Minecraft

There are two methods to unban a player.
Either via admin command or directly in the banned-players.json.

Admin Command

Open the chat and type the following:
pardon Playername
Replace Playername with the name of the banned player and press Enter.
Note: This command only works correctly if your server’s online mode is enabled.

banned-players.json

You will need an FTP client like Filezilla.

  1. Start and stop your server. The server status must be Server not running!
  2. Connect to your Game Server FTP using your FTP client.
    The login details required for Filezilla can be found in your server configuration under FTP.
  3. The required file banned-players.json is located in the minecraft-data directory.
    Download it and open it with a text editor like Notepad.
  4. A player’s entry looks like this:
[
  {
    "uuid": "2940c4f7-f3c8-4838-a1d4-f19981af3950",
    "name": "nutties_nuts",
    "created": "2023-07-27 09:35:17 +0200",
    "source": "Console",
    "expires": "forever",
    "reason": "The Ban Hammer has spoken!"
  }
]

With multiple players:

[
  {
    "uuid": "6cdae416-9ce2-4df9-8688-d1eb3c185ef4",
    "name": "Player1",
    "created": "2023-07-27 09:35:17 +0200",
    "source": "Console",
    "expires": "forever",
    "reason": "The Ban Hammer has spoken!"
  },
    {
    "uuid": "6cdae416-9ce2-4df9-8688-d1eb3c185ef5",
    "name": "Player2",
    "created": "2023-07-27 09:35:17 +0200",
    "source": "Console",
    "expires": "forever",
    "reason": "The Ban Hammer has spoken!"
  },
    {
    "uuid": "6cdae416-9ce2-4df9-8688-d1eb3c185ef6",
    "name": "Player3",
    "created": "2023-07-27 09:35:17 +0200",
    "source": "Console",
    "expires": "forever",
    "reason": "The Ban Hammer has spoken!"
  }
]

Delete the entry for the player you want to unban, for example:

[
    {
    "uuid": "6cdae416-9ce2-4df9-8688-d1eb3c185ef5",
    "name": "Player2",
    "created": "2023-07-27 09:35:17 +0200",
    "source": "Console",
    "expires": "forever",
    "reason": "The Ban Hammer has spoken!"
  },
    {
    "uuid": "6cdae416-9ce2-4df9-8688-d1eb3c185ef6",
    "name": "Player3",
    "created": "2023-07-27 09:35:17 +0200",
    "source": "Console",
    "expires": "forever",
    "reason": "The Ban Hammer has spoken!"
  }
]
  1. Save your changes and upload the file again.
  2. Start your server.

Important: If you want to unban all players, make sure that the [] remains in the file.
Otherwise, the server will crash on startup.
Since the file is in JSON format, we recommend using a validator such as JSON Formatter.
If the file’s formatting is incorrect, it will either be overwritten by the server with a default version or cause the server to crash on startup.