{"id":22073,"date":"2026-06-11T12:23:09","date_gmt":"2026-06-11T12:23:09","guid":{"rendered":"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/"},"modified":"2026-06-11T12:23:09","modified_gmt":"2026-06-11T12:23:09","slug":"fivem-server-backup-guide","status":"publish","type":"post","link":"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/","title":{"rendered":"How to Back Up Your FiveM Server (Files and Database)"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Your FiveM server holds months of work \u2014 player characters, inventories, jobs, bans, staff permissions, and custom scripts. None of it is safe without a backup plan. A single bad resource update, a corrupted database migration, or a host incident can wipe everything. This guide covers every piece you need to protect: the MySQL\/MariaDB database, the <code>server-data<\/code> folder, your resources, and the txAdmin profile \u2014 plus how to restore from each.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What You Actually Need to Back Up<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A FiveM server stores its state in two completely different places. If you only back up one, you only half-survive a disaster.<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Component<\/th><th>What lives there<\/th><th>Priority<\/th><\/tr><\/thead><tbody><tr><td>MySQL \/ MariaDB database<\/td><td>Player characters, inventories, jobs, economy, bans, whitelist<\/td><td>Critical<\/td><\/tr><tr><td><code>server-data\/resources\/<\/code><\/td><td>All frameworks, scripts, and custom resources<\/td><td>Critical<\/td><\/tr><tr><td><code>server-data\/server.cfg<\/code><\/td><td>Startup config, ensured resources, convars, license key<\/td><td>Critical<\/td><\/tr><tr><td>txAdmin <code>txData\/<\/code> profile folder<\/td><td>txAdmin config, admin accounts, scheduled restarts, player database (if not using MySQL)<\/td><td>High<\/td><\/tr><tr><td>Purchased \/ compiled resources<\/td><td>Escrow-locked scripts that can&#8217;t be re-downloaded after a host change<\/td><td>High<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Folders you can safely skip: <code>resources\/[cache]\/<\/code>, any <code>node_modules\/<\/code> directory, <code>.git\/<\/code> directories inside resources, and FXServer binaries (re-download from the artifacts page any time).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1 \u2014 Back Up the Database with mysqldump<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Most roleplay frameworks (QBCore, ESX \/ es_extended, ox_core) store all live game state in MySQL or MariaDB. Your connection string in <code>server.cfg<\/code> \u2014 the <code>mysql_connection_string<\/code> convar used by <a href=\"https:\/\/github.com\/overextended\/oxmysql\">oxmysql<\/a> \u2014 tells you the database name. It looks like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>set mysql_connection_string \"mysql:\/\/dbuser:dbpass@localhost:3306\/fivem?charset=utf8mb4\"<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">The database name is the segment after the last <code>\/<\/code> and before <code>?<\/code> \u2014 in the example above, <code>fivem<\/code>. Your server may use a different name (common alternatives include <code>es_extended<\/code>, <code>esxlegacy<\/code>, or whatever you chose at setup).<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Run the dump on the same machine as your database. The recommended command uses <code>--single-transaction<\/code> so InnoDB tables are captured in a consistent state without blocking player activity, and <code>--lock-tables=false<\/code> to avoid pausing writes on mixed-engine setups:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Linux \u2014 replace values to match your setup\nmysqldump -u dbuser -p'dbpass' \\\n  --single-transaction \\\n  --quick \\\n  --lock-tables=false \\\n  --routines \\\n  --triggers \\\n  fivem | gzip > \/backups\/fivem_db_$(date +%Y-%m-%d_%H%M).sql.gz<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">On newer MariaDB installs the binary may be named <code>mariadb-dump<\/code> instead of <code>mysqldump<\/code> \u2014 both accept the same flags. On Windows, provide the full path to the executable (for example <code>C:\\Program Files\\MariaDB\\bin\\mysqldump.exe<\/code>).<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To automate this on Linux, add a cron job:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># crontab -e  \u2014 runs daily at 02:15 AM\n15 2 * * * mysqldump -u dbuser -p'dbpass' --single-transaction --quick --lock-tables=false fivem | gzip > \/backups\/fivem_db_$(date +\\%Y-\\%m-\\%d).sql.gz<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2 \u2014 Back Up the server-data Folder and Resources<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Your <code>server-data<\/code> folder is the second critical half. It contains <code>server.cfg<\/code> and the <code>resources\/<\/code> directory with every <code>fxmanifest.lua<\/code>-based resource your server loads via <code>ensure<\/code> statements.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A clean tar archive on Linux, excluding cache and generated files:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>tar -czf \/backups\/server-data_$(date +%Y-%m-%d_%H%M).tar.gz \\\n  --exclude='server-data\/resources\/[cache]' \\\n  --exclude='*\/node_modules' \\\n  --exclude='*\/.git' \\\n  \/home\/fxserver\/server-data<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Adjust the source path to match where your <code>server-data<\/code> directory actually lives. If your hosting panel (such as the <a href=\"https:\/\/xgamingserver.com\/five-m-server-hosting\">XGamingServer FiveM panel<\/a>) exposes a file manager, you can also download the folder as a ZIP directly from the web interface \u2014 useful for a quick pre-update snapshot.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3 \u2014 Back Up the txAdmin Profile (txData)<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">txAdmin stores its own state \u2014 admin accounts, scheduled restart rules, server profile config, and its self-contained player database (used if you are <em>not<\/em> running MySQL) \u2014 in the <code>txData<\/code> folder. Historically the <code>txDataPath<\/code> convar controlled where this lives, but that convar is deprecated; current txAdmin builds use the <code>TXHOST_DATA_PATH<\/code> environment variable instead. By default the folder sits alongside your FXServer artifacts directory.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For a manual backup from within txAdmin, navigate to <strong>Settings \u2192 Master Actions \u2192 Make Database Backup<\/strong>. This covers txAdmin&#8217;s own SQLite player DB. For a complete profile backup, archive the entire <code>txData\/<\/code> directory alongside your server-data snapshot.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is especially important before upgrading txAdmin or switching host providers, because admin accounts and scheduled-restart rules are stored here \u2014 not in <code>server.cfg<\/code>. See our guide on <a href=\"https:\/\/xgamingserver.com\/blog\/fivem-automatic-restarts-scheduler-guide\/\">setting up automatic FiveM restarts<\/a> for how those scheduled tasks are configured.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4 \u2014 Restoring from a Backup<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A backup you have never tested is an assumption, not a guarantee. Run a restore drill monthly, or before any major update. Here is the full restore sequence:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Restore the database<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code># Decompress first if gzipped\ngunzip fivem_db_2026-06-11.sql.gz\n\n# Restore into the database (must already exist)\nmysql -u dbuser -p'dbpass' fivem < fivem_db_2026-06-11.sql<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">If you are on a fresh server, create the database first: <code>CREATE DATABASE fivem CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;<\/code> \u2014 then run the import command above.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Restore server-data files<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>tar -xzf server-data_2026-06-11_0215.tar.gz -C \/home\/fxserver\/<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Then restart FXServer. Verify that all expected resources load by checking the live console in txAdmin for any <code>ensure<\/code> errors. For help tracking down resource loading problems, see our <a href=\"https:\/\/xgamingserver.com\/blog\/fivem-resource-loading-errors-troubleshooting-guide\/\">FiveM resource loading errors guide<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Backup Schedule Recommendations<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">How often you back up depends on how much data you can afford to lose:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Active economy server (daily players):<\/strong> database every 4\u20136 hours, full file snapshot nightly.<\/li>\n<li><strong>Casual community server:<\/strong> database nightly, file snapshot before every major resource update.<\/li>\n<li><strong>Pre-update snapshot:<\/strong> always take a manual dump immediately before running a framework update (QBCore, ESX, ox_core) \u2014 even if your scheduled backup ran an hour ago.<\/li>\n<li><strong>Retention:<\/strong> keep at least 7 daily snapshots plus 4 weekly archives before pruning old files.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">If you are running your server through a managed hosting panel, check whether automatic scheduled backups are already included with your plan \u2014 many providers run nightly snapshots at the infrastructure level. You can layer your own <code>mysqldump<\/code> cron on top for more granular database recovery points.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Want a fully managed environment where backups, uptime monitoring, and txAdmin come pre-configured? The <a href=\"https:\/\/xgamingserver.com\/docs\/fivem\">XGamingServer FiveM documentation<\/a> walks through panel setup, resource installation, and database configuration from day one.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently Asked Questions<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Do I need to stop my FiveM server before taking a backup?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">For the database: no. The <code>--single-transaction<\/code> flag takes a consistent InnoDB snapshot while the server remains online, so players stay connected during the dump. For the files: it is not strictly required, but taking a file backup while the server is writing to disk (updating caches, generating logs) can occasionally result in partially written files. For the safest file snapshot, either pause the server briefly via txAdmin or schedule the tar backup to run during your lowest-traffic window.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Where should I store my FiveM backups?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Never only on the same server you are backing up. A host outage, filesystem corruption, or ransomware will take both the live data and the local backup at the same time. Store at least one copy offsite \u2014 options include an S3-compatible bucket (Backblaze B2, Cloudflare R2), SFTP to a second VPS, or automated sync to cloud storage via <code>rclone<\/code>. Local backups are still useful for fast same-day restores; treat offsite as your disaster-recovery copy.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">My QBCore\/ESX server uses a different database name \u2014 does the command change?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Only the database name argument changes. Check the <code>mysql_connection_string<\/code> convar in your <code>server.cfg<\/code> \u2014 the database name appears at the end of the connection URL (before any <code>?<\/code> query parameters). Substitute that name wherever the examples above show <code>fivem<\/code>. Everything else \u2014 flags, gzip pipe, restore command \u2014 stays the same regardless of framework.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Your FiveM server holds months of work \u2014 player characters, inventories, jobs, bans, staff permissions, and custom scripts. None of it is safe without a backup plan. A single bad resource update, a corrupted database migration, or a host incident can wipe everything. This guide covers every piece you need to protect: the MySQL\/MariaDB database, [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":22048,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_gspb_post_css":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[142],"tags":[],"class_list":["post-22073","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-fivem"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.5 (Yoast SEO v26.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Back Up Your FiveM Server (Files &amp; Database) 2026<\/title>\n<meta name=\"description\" content=\"Step-by-step guide to backing up your FiveM server: mysqldump database backup, server-data folder, resources, txAdmin, and how to restore.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Back Up Your FiveM Server (Files and Database)\" \/>\n<meta property=\"og:description\" content=\"Step-by-step guide to backing up your FiveM server: mysqldump database backup, server-data folder, resources, txAdmin, and how to restore.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"XGamingServer\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/web.facebook.com\/xgamingserver69\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-11T12:23:09+00:00\" \/>\n<meta name=\"author\" content=\"Hectar Carson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:site\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hectar Carson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/\"},\"author\":{\"name\":\"Hectar Carson\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d\"},\"headline\":\"How to Back Up Your FiveM Server (Files and Database)\",\"datePublished\":\"2026-06-11T12:23:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/\"},\"wordCount\":1036,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp\",\"articleSection\":[\"FiveM\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/\",\"name\":\"How to Back Up Your FiveM Server (Files &amp; Database) 2026\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp\",\"datePublished\":\"2026-06-11T12:23:09+00:00\",\"description\":\"Step-by-step guide to backing up your FiveM server: mysqldump database backup, server-data folder, resources, txAdmin, and how to restore.\",\"breadcrumb\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#primaryimage\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp\",\"width\":640,\"height\":360},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/xgamingserver.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"FiveM\",\"item\":\"https:\/\/xgamingserver.com\/blog\/category\/fivem\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Back Up Your FiveM Server (Files and Database)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"name\":\"XGamingServer\",\"description\":\"Dedicated Game Server Hosting\",\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\",\"name\":\"XGamingServer\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"XGamingServer\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/web.facebook.com\/xgamingserver69\/\",\"https:\/\/x.com\/xgamingserver\",\"https:\/\/www.instagram.com\/xgamingserver\/\",\"https:\/\/www.linkedin.com\/company\/xgamingserver\/\",\"https:\/\/www.pinterest.com\/xgamingserver\/\",\"https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d\",\"name\":\"Hectar Carson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g\",\"caption\":\"Hectar Carson\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Back Up Your FiveM Server (Files &amp; Database) 2026","description":"Step-by-step guide to backing up your FiveM server: mysqldump database backup, server-data folder, resources, txAdmin, and how to restore.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/","og_locale":"en_US","og_type":"article","og_title":"How to Back Up Your FiveM Server (Files and Database)","og_description":"Step-by-step guide to backing up your FiveM server: mysqldump database backup, server-data folder, resources, txAdmin, and how to restore.","og_url":"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/","og_site_name":"XGamingServer","article_publisher":"https:\/\/web.facebook.com\/xgamingserver69\/","article_published_time":"2026-06-11T12:23:09+00:00","author":"Hectar Carson","twitter_card":"summary_large_image","twitter_creator":"@xgamingserver","twitter_site":"@xgamingserver","twitter_misc":{"Written by":"Hectar Carson","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#article","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/"},"author":{"name":"Hectar Carson","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d"},"headline":"How to Back Up Your FiveM Server (Files and Database)","datePublished":"2026-06-11T12:23:09+00:00","mainEntityOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/"},"wordCount":1036,"commentCount":0,"publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp","articleSection":["FiveM"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/","url":"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/","name":"How to Back Up Your FiveM Server (Files &amp; Database) 2026","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#primaryimage"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp","datePublished":"2026-06-11T12:23:09+00:00","description":"Step-by-step guide to backing up your FiveM server: mysqldump database backup, server-data folder, resources, txAdmin, and how to restore.","breadcrumb":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#primaryimage","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp","width":640,"height":360},{"@type":"BreadcrumbList","@id":"https:\/\/xgamingserver.com\/blog\/fivem-server-backup-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xgamingserver.com\/blog\/"},{"@type":"ListItem","position":2,"name":"FiveM","item":"https:\/\/xgamingserver.com\/blog\/category\/fivem\/"},{"@type":"ListItem","position":3,"name":"How to Back Up Your FiveM Server (Files and Database)"}]},{"@type":"WebSite","@id":"https:\/\/xgamingserver.com\/blog\/#website","url":"https:\/\/xgamingserver.com\/blog\/","name":"XGamingServer","description":"Dedicated Game Server Hosting","publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/xgamingserver.com\/blog\/#organization","name":"XGamingServer","url":"https:\/\/xgamingserver.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","width":"1024","height":"1024","caption":"XGamingServer"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/web.facebook.com\/xgamingserver69\/","https:\/\/x.com\/xgamingserver","https:\/\/www.instagram.com\/xgamingserver\/","https:\/\/www.linkedin.com\/company\/xgamingserver\/","https:\/\/www.pinterest.com\/xgamingserver\/","https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ"]},{"@type":"Person","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d","name":"Hectar Carson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g","caption":"Hectar Carson"}}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/22073","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/comments?post=22073"}],"version-history":[{"count":0,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/22073\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media\/22048"}],"wp:attachment":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=22073"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=22073"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=22073"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}