1. Overview Velocity RCON refers to the implementation of the standard Source RCON (Remote Console) protocol within the Velocity Minecraft proxy. Velocity is a modern, high-performance proxy server designed to replace Waterfall/BungeeCord, enabling players to connect to multiple backend Minecraft servers through a single entry point.
# Enable RCON enabled = true bind = "0.0.0.0:25575" RCON password (use a strong, unique value) password = "your_secure_password" velocity rcon
RCON (Remote Console) is a TCP-based protocol that allows server administrators to remotely execute commands, monitor console output, and manage the server instance without direct shell access. Integrating RCON into Velocity provides a secure, network-accessible control interface for the proxy layer. Velocity implements RCON as a separate, configurable network service. Unlike standard Minecraft servers (which often use RCON as an afterthought), Velocity’s RCON implementation is designed with concurrency and non-blocking I/O in mind, aligning with the proxy’s Netty-based architecture. # Enable RCON enabled = true bind = "0