txAdmin Guide
txAdmin is a powerful web-based panel for managing your FiveM or RedM server.
Accessing txAdmin
- Start your server from the game panel
- Look for the txAdmin URL in your console output or server info
- Open the URL in your browser
- 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
- Go to Players in txAdmin
- 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
- Go to Players → Bans
- View all active bans
- 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
- Go to Settings → Scheduler
- Configure automatic restart times
- Useful for clearing memory and applying updates
Resources Management
Resources are scripts/mods that add functionality to your server.
Viewing Resources
- Go to Resources in txAdmin
- See all installed resources
- Check which are started/stopped
Starting/Stopping Resources
- Find the resource
- Click to start or stop it
- Changes take effect immediately
Adding New Resources
- Upload resource files to your server via the Files tab in your game panel
- Place them in the
resources folder
- Add to your server config:
ensure resource_name
- 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
- Go to CFG Editor in txAdmin
- Or use Files in your game panel
- Edit and save
- 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
- Go to Settings → Whitelist
- Enable whitelist mode
- Add allowed players by their identifiers
Backups
Manual Backup
- Go to Server → Backup
- Click Create Backup
- Download for safekeeping
Scheduled Backups
Configure automatic backups in txAdmin settings.
Multi-User Access
Add other admins to txAdmin:
- Go to Admin Manager
- Click Add Admin
- Enter their Cfx.re username
- Set their permissions
- 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