Simple Minecraft RCON Web Console (using PHP, Bootstrap and Javascript)
Inspired by Minecraft-RCON-Console and using PHP-Minecraft-Rcon.
- Edit your Minecraft server
server.properties
configuration file in order to enable RCON:
enable-rcon=true
rcon.port=25575
rcon.password=xtMJsVtmx0XypuId7jIb
- Restart your Minecraft server.
- Download/Clone the Minecraft RCON Web Console files and edit the
config.php
file. Use the same rcon password and port than the one set inserver.properties
:
$rconHost = "localhost";
$rconPort = 25575;
$rconPassword = "xtMJsVtmx0XypuId7jIb";
- Provided as it is, this console has no authentication check, so anybody with access to this console can run any commands on the Minecraft server. Please check at least the documentations below, about how to setup some basic http authentification on your web server, in order to restrict the access to the console:
- For Apache 2.4 users
- For NGinx users
- Use a strong custom random RCON password (change the default one provided here) for more security.
- Set up your firewall in order to allow only the web server to communicate with the Minecraft server through the RCON port set, for more security.