Install Server Admin Tools

Set up administration tools for your Arma Reforger server including admin password, RCON, and Game Master access.

Arma Reforger offers several ways to administrate your server. This guide covers all the available admin tools and how to set them up.

Admin Password

The admin password lets you log in as an admin directly from in-game chat.

Set the admin password

In your server config JSON, set passwordAdmin under the game section:

server-config.json
"game": {
    "passwordAdmin": "YourAdminPassword"
}

⚠️ Warning: The admin password does not support spaces.

Log in as admin

Once in-game, open chat (press C in lobby or Enter in-game) and type:

#login YourAdminPassword

Available admin commands

Once logged in, you can use commands like:

  • #kick <playerId> — Kick a player
  • #ban <playerId> — Ban a player
  • #restart — Restart the scenario

Admin List

You can pre-authorize players as admins so they can log in without a password:

server-config.json
"game": {
    "admins": [
        "YOUR_IDENTITY_ID_HERE",
        "76561198200329058"
    ]
}

Listed admins can use #login without entering a password and get priority queue access when joining a full server.

📝 Note: The admin list is limited to 20 unique IDs. Priority queue only works with IdentityIds, not Steam IDs.

See Adding Admins for a detailed guide.

RCON (Remote Console)

RCON lets you administrate the server remotely without being in-game.

Enable RCON

Add the rcon section to your server config:

server-config.json
"rcon": {
    "address": "0.0.0.0",
    "port": 19999,
    "password": "YourRconPassword",
    "permission": "admin"
}

Connect with an RCON client

Use any BattlEye RCON-compatible client to connect to your server's IP on port 19999.

See RCON for a complete guide.

Game Master Mode

Game Master mode gives you real-time control over the scenario, letting you place objects, manage AI, and control events.

  1. Log in as admin (see above)
  2. Host or join a Game Master scenario
  3. Use the Game Master tools to manage the session

See Game Master for a detailed guide.

BattlEye Admin

BattlEye provides its own RCon system for anti-cheat administration.

See BattlEye Configuration for setup details.

Summary

ToolUse CaseRequires In-Game?
Admin PasswordQuick admin commandsYes
Admin ListPre-authorized adminsYes
RCONRemote server managementNo
Game MasterReal-time scenario controlYes
BattlEye RConAnti-cheat administrationNo

See also: Adding Admins | RCON | Game Master | Ban Players

If you need help, join our Discord.

How is this guide?

40% Off — Limited TimeGet your Arma Reforger server todayInstant setup, DDoS protection, and 24/7 support included.
Get a Server

On this page