Sending admin commands from the console

4 min read

The EZ Game Host panel lets you send admin commands to your Palworld server directly from the Console page (no separate RCON client needed). This article explains how the console input works and lists the most common Palworld admin commands.

How the console input works

Palworld does not read commands from standard server input. Instead, the panel relays anything you type in the console to the running game over RCON:

  • The server's startup process force-enables RCON (RCONEnabled=True in Pal/Saved/Config/LinuxServer/PalWorldSettings.ini) every time the server starts.
  • Each command you type is sent to the game as an RCON command, authenticated automatically with the Admin Password from the Startup page.

You never need to enter the admin password in the panel console; it is applied for you.

This RCON link is internal to the panel and your server. The RCON port never needs to be reachable from the internet (its help text on the Startuppage notes it "Does not need to be allocated!"), so don't open or forward it publicly.

Tip
Because RCON settings are rewritten from the Startup variables on every start, don't try to change RCONEnabled, RCONPort, or AdminPassword by editing the INI file. See Server settings from the Startup page.

Send a command

  1. Open your server in the panel and go to Console.
  2. Make sure the server is running. If it isn't, click Startat the top-right and wait for the log to show the server is up (you'll see a line like Running Palworld dedicated server on :8211).
  3. Click the input box labeled "Type a command..." below the console output.
  4. Type the command (for example, ShowPlayers) and press Enter.
  5. Any response from the command is printed to the console output.
The command input box below the console output
Note
Commands only work while the server is running. If the server is stopped, start it first.

Common Palworld admin commands

These are standard Palworld game commands (RCON/admin commands provided by the game itself, not by the panel):

CommandWhat it does
ShowPlayersLists players currently connected to the server, along with their identifiers.
InfoShows server name and version information.
SaveSaves the world immediately.
Broadcast <message>Sends a message to all players on the server.
KickPlayer <steamid>Kicks the specified player from the server.
BanPlayer <steamid>Bans the specified player from the server.
UnBanPlayer <steamid>Lifts a ban previously issued with BanPlayer.
Shutdown <seconds> <message>Shuts the server down gracefully after the given delay, showing the message to players.
DoExitStops the server immediately, without warning or delay.
Warning
DoExit stops the server instantly and does not warn players. For a graceful stop, use Shutdown <seconds> <message> (for example, Shutdown 60 Server restarting in 60 seconds) so players have time to get safe, and consider running Save first.
Tip
You can also automate commands (like a nightly Save or restart warning) with schedules; see Automating tasks with schedules.

Kicking or banning a player

KickPlayer and BanPlayerneed the player's ID, which you get from ShowPlayers:

  1. In the Console, run ShowPlayers. The game lists every connected player with their identifiers (name, player UID, and Steam ID).
  2. Copy the player's Steam ID from the output (not the player UID; the commands below expect the Steam ID).
  3. Run KickPlayer <steamid> to remove them from the server, or BanPlayer <steamid> to keep them out.

If you need to reverse a ban later, run UnBanPlayer <steamid> with the same ID.

Note
Bans you issue with BanPlayerare specific to your server. Separately, the server's config file (Pal/Saved/Config/LinuxServer/PalWorldSettings.ini) sets a BanListURLpointing to Palworld's official global ban list (https://b.palworldgame.com/api/banlist.txt), which the game checks when authentication (bUseAuth) is enabled. Both are set by default. This is standard Palworld behavior, not a panel feature.

Using admin commands in-game instead

Players in your game can also authenticate as admins from the in-game chat. Per the Admin Password help text on the Startuppage: "If specified, players must provide this password (via the in-game chat or RCON) to gain access to administrator commands on the server."

In-game, type /AdminPassword <password> in chat (using the Admin Password value from the Startup page) to unlock admin commands for that player. This is a Palworld game feature and works independently of the panel console.

Warning
Anyone who knows the admin password can run admin commands on your server. Keep it secret, and change it on the Startup page if it leaks (the change applies the next time the server starts).

Related articles