Overview
The Server Console provides real-time access to your game server through a powerful web-based terminal powered by xterm.js. Monitor logs, execute commands, and control your server without SSH access.Accessing the Console
Navigate to your server and click the Console tab, or visit:Power Controls
The console provides quick power action buttons:Start
Boot your server. Disabled when server is already running or starting.
Restart
Gracefully restart your server. Only available when server is running.
Stop
Gracefully shut down your server. Sends shutdown signal to the process.
Kill
Forcefully terminate the server process. Use when stop doesn’t work.
Power Action API
Power actions are sent via WebSocket or HTTP:Request Body
Request Body
Terminal Features
The xterm.js terminal includes advanced features:Real-Time Logs
- Live streaming: Server output appears instantly as it’s generated
- Color support: ANSI color codes are properly rendered
- 5000 lines: Scrollback buffer stores the last 5000 lines
- Auto-scroll: Terminal automatically scrolls to show new output
Keyboard Shortcuts
- Search
- Copy
Ctrl+F (Cmd+F on Mac)Search through console output:
- Enter search term in the prompt
- Terminal highlights all matches
- Navigate between matches with arrow keys
Terminal Actions
Use the action buttons in the top-right corner:Download
Download all console logs as a text file. Useful for debugging or sharing with support.Downloaded file format:
console-logs-{timestamp}.txtSending Commands
Command input requires the
control.console permission. Server owners and admins have this by default.Command Input Features
- Command history: Press Up/Down arrow keys to cycle through previously sent commands
- 32 command buffer: Last 32 commands are saved locally per server
- Enter to send: Press Enter to execute the command
- Persistent history: Commands are stored in localStorage and survive page refreshes
Example Commands
Server Statistics
The right sidebar (or bottom panel on mobile) displays real-time server metrics:Resource Monitoring
Available Metrics
Available Metrics
- Status: Current server state (running, offline, starting, stopping)
- Connection: WebSocket connection status
- IP:Port: Primary allocation with copy button
- Uptime: How long the server has been running (HH:MM:SS)
- CPU Usage: Current CPU consumption vs limit (e.g., 45.32% / 100%)
- Memory: RAM usage with visual indicator (e.g., 1.2 GB / 2 GB)
- Disk: Storage used vs limit (e.g., 3.4 GB / 10 GB)
- Network: Download/upload transfer (RX/TX in bytes)
Stats Chart
Click the Stats button to toggle a real-time performance chart showing:- CPU usage over time
- Memory consumption
- Network activity
Connection Status
The console displays connection alerts:Connecting…Yellow info alert shows while establishing the WebSocket connection. This typically takes 1-2 seconds.
WebSocket Protocol
The console connects via WebSocket for real-time communication:- Server console output (logs)
- Server status changes
- Resource statistics updates
- Token authentication
Message Types
The WebSocket sends and receives JSON messages:Status Banner
At the top of the console, status banners appear for:- Installing: Server is running its installation script
- Transferring: Server is being moved to another node
- Suspended: Server has been suspended and cannot be started
- Node Maintenance: The Wings node is under maintenance
Permissions
The console respects server permissions:- View Console:
control.consoleor server owner/admin - Send Commands:
control.consoleor server owner/admin - Power Actions:
server.poweror server owner/admin
Troubleshooting
Console not connecting
Console not connecting
- Check if the Wings daemon is running on the server’s node
- Verify the server is not suspended
- Ensure WebSocket connections are not blocked by your firewall
- Try clicking the Reconnect button
No output appearing
No output appearing
- The server may be offline (check status badge)
- The server process may not be generating output
- Try clicking Scroll to Bottom in case you’re viewing old logs
Commands not working
Commands not working
- Verify you have the
control.consolepermission - Ensure the server is running (commands only work on running servers)
- Check the command syntax for your specific game
Best Practices
Regular Monitoring
Keep the console open during critical operations to monitor for errors or warnings.
Save Important Logs
Use the download feature to save logs before restarting or when troubleshooting issues.
Graceful Shutdowns
Always use Stop instead of Kill to allow proper server shutdown and world saving.
Check Resource Usage
Monitor CPU and memory to ensure your server has adequate resources allocated.
Next Steps
File Management
Browse and edit server configuration files
Schedules
Automate commands and backups with scheduled tasks