Skip to main content

txAdmin Guide

txAdmin is a powerful web-based panel for managing your FiveM or RedM server.

Accessing txAdmin

  1. Start your server from the game panel
  2. Look for the txAdmin URL in your console output or server info
  3. Open the URL in your browser
  4. Log in with your txAdmin credentials

Dashboard Overview

The txAdmin dashboard shows:
  • Server Status - Running, stopped, or restarting
  • Player Count - Current online players
  • Resource Monitor - CPU, memory usage
  • Live Console - Real-time server output
  • Quick Actions - Start, stop, restart buttons

Managing Players

View Online Players

  1. Go to Players in txAdmin
  2. See all connected players with their IDs

Player Actions

Right-click or select a player to:
  • Kick - Remove from server
  • Ban - Permanently or temporarily ban
  • Warn - Send a warning message
  • Direct Message - Send a private message
  • View Info - See player details and history

Ban Management

  1. Go to PlayersBans
  2. View all active bans
  3. Revoke bans if needed

Server Control

Starting/Stopping

  • Start - Boot the server
  • Stop - Gracefully shut down
  • Restart - Stop and start the server
  • Kill - Force stop (use if server is unresponsive)

Scheduled Restarts

  1. Go to SettingsScheduler
  2. Configure automatic restart times
  3. Useful for clearing memory and applying updates

Resources Management

Resources are scripts/mods that add functionality to your server.

Viewing Resources

  1. Go to Resources in txAdmin
  2. See all installed resources
  3. Check which are started/stopped

Starting/Stopping Resources

  1. Find the resource
  2. Click to start or stop it
  3. Changes take effect immediately

Adding New Resources

  1. Upload resource files to your server via the Files tab in your game panel
  2. Place them in the resources folder
  3. Add to your server config: ensure resource_name
  4. Restart or refresh resources

Server Configuration

server.cfg

The main configuration file for your server. Common settings:
# Server name shown in browser
sv_hostname "My Awesome Server"

# Maximum players
sv_maxclients 32

# Server description
sets sv_projectDesc "Welcome to my server!"

# License key (set by txAdmin)
sv_licenseKey "your_key_here"

# Resources to start
ensure mapmanager
ensure chat
ensure sessionmanager

Editing Configuration

  1. Go to CFG Editor in txAdmin
  2. Or use Files in your game panel
  3. Edit and save
  4. Restart server for changes to take effect

Live Console

The live console shows real-time server output.

Running Commands

Type commands directly in the console:
# Restart a resource
restart resourcename

# Refresh resource list
refresh

# Kick a player
kick 1 "Reason here"

# Say something to all players
say Hello everyone!

Settings

General Settings

  • Server name
  • Language
  • Timezone

FXServer Settings

  • Server data path
  • txAdmin port
  • Verbose mode

Whitelist

  1. Go to SettingsWhitelist
  2. Enable whitelist mode
  3. Add allowed players by their identifiers

Backups

Manual Backup

  1. Go to ServerBackup
  2. Click Create Backup
  3. Download for safekeeping

Scheduled Backups

Configure automatic backups in txAdmin settings.

Multi-User Access

Add other admins to txAdmin:
  1. Go to Admin Manager
  2. Click Add Admin
  3. Enter their Cfx.re username
  4. Set their permissions
  5. They can now log in with their Cfx.re account

Best Practices

Regular Restarts - Schedule automatic restarts every 6-12 hours to keep performance optimal.
Monitor Resources - Check which resources use the most CPU/memory and optimize or remove heavy ones.
Backup Before Changes - Always create a backup before adding major resources or making config changes.

Next Steps