Find us on social media
ConsolePterodactylCommandsLogs3 min read
Use the server console in Pterodactyl
Run commands, read logs, and manage your server through the Pterodactyl console.
Accessing the console
- Go to panel.baires.host
- Log in with your account credentials
- Select your Minecraft server from the list
- The Console tab is the default view
Running commands
Type commands directly in the input field at the bottom of the console. Do not include the / prefix — the console runs commands as the server, not as a player.
Examples
terminal
say Hello everyone!
op PlayerName
whitelist add PlayerName
stopReading the console output
The console shows real-time server output including:
- Server startup messages — version, plugins loaded, world loading
- Player activity — joins, leaves, chat messages
- Errors and warnings — plugin errors, world issues
- Command output — results of commands you run
Filtering useful information
Look for these patterns:
[Server thread/INFO]— normal server messages[Server thread/WARN]— warnings (usually non-critical)[Server thread/ERROR]— errors that need attention
Server power controls
The panel provides buttons for:
| Button | Action |
|---|---|
| Start | Boot the server |
| Stop | Graceful shutdown (saves world) |
| Restart | Stop then start |
| Kill | Force stop (use only if server is frozen) |
Viewing historical logs
For older logs not visible in the console:
- Go to Files tab
- Navigate to
logs/ - Open
latest.logfor the current session - Older logs are in compressed
.log.gzfiles
Common console commands
terminal
list - Show online players
tps - Show server TPS (Paper/Purpur)
timings report - Generate performance report (Paper)
plugins - List installed plugins
save-all - Force save all worlds
stop - Gracefully stop the serverTips
- The console has full server permissions — be careful with destructive commands
- Use
stopinstead of Kill to prevent world corruption - Copy error messages from the console when asking for support
- The console auto-scrolls; click the output area to pause scrolling
- You can run multiple commands quickly by pressing Enter between each
Was this guide helpful?