Skip to content

Live Console

Jan Kluka edited this page Jun 21, 2026 · 2 revisions

Live Console

A real-time view of your server console, right in the browser.

Permissions: CONSOLE_VIEW to watch output, CONSOLE_EXECUTE to run commands. Command execution is also gated by Configuration (console.allow-commands).

Page (/console)

  • Live output — console lines stream in over the SSE connection as they're logged.
  • Color-coded levels — ERROR / WARN / INFO are visually distinct.
  • Chat toggle — show or hide in-game chat messages mixed into the stream.
  • Run commands — type a command and run it as the server console (when permitted).
  • Command history — press up/down to recall previous commands.
  • Buffer — keeps the most recent ~500 lines and auto-scrolls.
  • A read-only indicator appears when you lack CONSOLE_EXECUTE, and a connection-status indicator shows the live link state.

Blocked commands

Commands listed in console.blocked-commands (default: stop, restart, op, deop) can never be run from the web console — matched on the first word, case-insensitive. Blocked attempts are still recorded in the audit log.

To disable command execution entirely (read-only console), set console.allow-commands: false in Configuration.

Notes

  • Console output is delivered via the live event stream — it is not returned as a command response.
  • For graceful, scheduled restarts, use the Scheduler instead of running stop/restart.

Related

Clone this wiki locally