Choose a FiveM Plan
Pick a plan by player slots and CPU/RAM needs. Scale up as your community grows.
Set up, manage, and troubleshoot your FiveM server with step-by-step guides.
Pick a plan by player slots and CPU/RAM needs. Scale up as your community grows.
Use the welcome email to log in, view your server, console, IP:Port, and metrics.
Install/enable txAdmin, create a recipe or link an existing server.cfg, and secure admin access.
Create MySQL, add a user, then connect via HeidiSQL and configure your framework (oxmysql/mysql-async).
Configure sv_licenseKey, sv_maxclients, OneSync, locale, banner, and convars.
Upload to /resources, use ensure
in server.cfg, watch console for errors.
Use Schedules to automate restarts, backups, and maintenance announcements.
Upload latest artifacts, adjust start script if needed, and test on a staging copy.
Import SQL, set mysql_connection_string
, and check oxmysql/mysql-async status.
Use txAdmin and the panel console to tail errors, restart resources, and ban/whitelist.
Check license, artifacts, onesync, connection string, and resource errors.
Verify host/port/user/pass, grants, SSL options, and resource DB driver.
Pick a plan by player slots, CPU priority, and RAM. You can scale instantly as your community grows.
Your welcome email includes panel credentials. From the panel you can start/stop, view console, manage files, and schedule tasks.
server.cfg
.txAdmin provides web management, player administration, recipes, and live console.
FXServer
with txAdmin enabled (most BeamHost templates include this).server.cfg
location on disk.Provision MySQL, connect with HeidiSQL, and configure oxmysql/mysql-async for frameworks.
127.0.0.1
or your DB host)3306
)server.cfg
, set one of:
# oxmysql (recommended)
set mysql_connection_string "mysql://USER:PASS@HOST:3306/DBNAME?charset=utf8mb4"
ensure oxmysql
# mysql-async (legacy)
set mysql_connection_string "server=HOST;database=DBNAME;userid=USER;password=PASS;charset=utf8mb4"
ensure mysql-async
&sslmode=REQUIRED
or provider-specific flags to the connection string.Key settings that impact joinability and performance.
# Required
sv_licenseKey "YOUR_FIVEM_LICENSE_KEY"
sv_hostname "My FiveM Server"
sv_maxclients 64
# Enable OneSync (choose appropriate mode for your build)
set onesync on
# Language / banner / tags
sets locale "en-US"
sets sv_projectName "My FiveM Server"
sets sv_projectDesc "Serious RP | Active Staff"
sets banner_detail "https://example.com/banner.png"
sets banner_connecting "https://example.com/banner.png"
sets tags "roleplay,english,seriousrp"
# Optional convars
set sv_enforceGameBuild 2944
set sv_endpointprivacy true
# Resources
ensure mapmanager
ensure chat
ensure spawnmanager
# ... your custom resources:
ensure my_custom_resource
ensure
.Install resources in /resources
, then ensure them in server.cfg
.
fxmanifest.lua
) to /resources/[local]/
(or another group).server.cfg
and add ensure <resourceName>
lines in the order needed (dependencies first).refresh
start my_custom_resource
stop my_custom_resource
restart my_custom_resource
Automate restarts, backups, and announcements with your panel’s Pterodactyl schedules.
txaBroadcast "Restart in 3 minutes…"
Minute: 0
Hour: 5
DOM: *
Month: *
DOW: *
Minute: 0
Hour: */6
DOM: *
Month: *
DOW: *
txaBroadcast
or your chat resource; avoid heavy tasks at peak hours.Stay compatible with frameworks/resources by keeping artifacts current.
Keep framework and DB driver versions aligned with your artifacts build.
ensure oxmysql
above ESX/QBCore).Quickly pinpoint failing resources or missing dependencies.
restart <resource>
on the fly./logs
folder (if present) or enable extra logging via convars when debugging.Systematically verify the essentials.
sv_licenseKey
in server.cfg
and correct artifacts build.set onesync on
).Common root causes and fixes.
ALL PRIVILEGES
on that DB.