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:
"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 YourAdminPasswordAvailable 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:
"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:
"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.
- Log in as admin (see above)
- Host or join a Game Master scenario
- 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
| Tool | Use Case | Requires In-Game? |
|---|---|---|
| Admin Password | Quick admin commands | Yes |
| Admin List | Pre-authorized admins | Yes |
| RCON | Remote server management | No |
| Game Master | Real-time scenario control | Yes |
| BattlEye RCon | Anti-cheat administration | No |
Related Guides
See also: Adding Admins | RCON | Game Master | Ban Players
If you need help, join our Discord.
How is this guide?
