{"id":2416,"date":"2021-12-14T08:24:41","date_gmt":"2021-12-14T00:24:41","guid":{"rendered":"https:\/\/www.intelliwolf.com\/?p=2416"},"modified":"2021-12-14T08:24:43","modified_gmt":"2021-12-14T00:24:43","slug":"move-mariadb-files-after-upgrade","status":"publish","type":"post","link":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/move-mariadb-files-after-upgrade\/","title":{"rendered":"How To Move MariaDB Database Files After Upgrading Version"},"content":{"rendered":"\n

I just upgraded from MariaDB 10.1.x to 10.6.x and wanted to move some of my old databases over to the new version.<\/p>\n\n\n\n

Typically you would use a database dump or the MariaDB upgrade wizard, but none of those would work for me.<\/p>\n\n\n\n

I'm also running it on a Windows 10 machine, so a lot of the instructions don't apply.<\/p>\n\n\n\n

I moved the files from C:\/Program Files\/MariaDB 10.1\/data<\/em> to ...MariaDB 10.6\/data<\/em> but that wasn't working.<\/p>\n\n\n\n

When I fired up HeidiSQL, the tables looked like they were there, but the databases were showing as zero bytes.<\/p>\n\n\n\n

\"HeidiSQL<\/figure><\/div>\n\n\n\n

Navigating to any of the tables brought up \"This view probably contains an error in its code. SQL Error (1932): Table 'xyz.wp_posts' doesn't exist in engine.\"<\/p>\n\n\n\n

\"Error<\/figure><\/div>\n\n\n\n

Thankfully, the solution is pretty simple, even though it took me a few hours to figure it out.<\/p>\n\n\n\n

How to move MariaDB database files after upgrading version on Windows<\/h2>\n\n\n\n
  1. Open command prompt<\/a> as administrator<\/li>
  2. Stop MariaDB<\/a> with \"net stop mariadb\"<\/li>
  3. Copy the databases<\/a> from the old \/data to the new \/data<\/li>
  4. Replace ibdata1<\/em><\/a> in the new \/data with the one in the old \/data<\/li>
  5. Restart MariaDB<\/a> with \"net start mariadb\"<\/li><\/ol>\n\n\n\n

    Yeah, it's that simple.<\/p>\n\n\n\n

    This assumes you have already installed MariaDB and the new version is working properly.<\/p>\n\n\n\n

    Let's go through the steps below.<\/p>\n\n\n\n

    Open Command Prompt as Administrator<\/h2>\n\n\n\n

    To start and stop MariaDB, you need to run Command Prompt as an administrator. You'll get an access denied error message if you try to do it with the regular command prompt.<\/p>\n\n\n\n

    In the search bar, type \"cmd\".<\/p>\n\n\n\n

    You should see the Command Prompt app listed. Click \"Run as administrator\".<\/p>\n\n\n\n

    \"Directions<\/figure><\/div>\n\n\n\n

    You should see an administrator command prompt. You'll know it's correct because the title bar will say \"Administrator: Command Prompt\" rather than \"Command Prompt\".<\/p>\n\n\n\n

    If you can't open Command Prompt as an administrator, you may not have sufficient permissions on the account you're using. In that case, you'll need to log in with a different account, or perhaps you have an IT manager who's locked you out.<\/p>\n\n\n\n

    Stop MariaDB<\/h2>\n\n\n\n

    Type \"net stop mariadb\" (without the quotation marks) and hit Enter.<\/p>\n\n\n\n

    It may take a few seconds, but it should say \"The MariaDB service was stopped successfully\". That's when you know you're ready to proceed to the next step.<\/p>\n\n\n\n

    \"administrator<\/figure><\/div>\n\n\n\n

    If you get the message \"The MariaDB service is not started\", that's ok, you can proceed to the next step. You just need it to not be running or it won't let you replace the ibdata1<\/em> file.<\/p>\n\n\n\n

    If you try to stop MariaDB with the regular Command Prompt, you'll get the error message \"System error 5 has occurred. Access is denied.\" Just go to the previous step and open Command Prompt<\/a> as an administrator.<\/p>\n\n\n\n

    \"non-administrator<\/figure><\/div>\n\n\n\n

    Copy the databases<\/h2>\n\n\n\n

    The database files will be in \/MariaDB 10.1\/data<\/em>\/, where \"10.1\" is the old version you had running.<\/p>\n\n\n\n

    My files were installed in C:\/Program Files\/MariaDB 10.1\/data<\/em>\/, but you may have installed MariaDB somewhere else.<\/p>\n\n\n\n

    Each folder in \/data\/<\/em> is a unique database from your previous installation.<\/p>\n\n\n\n

    Just copy the folders you want to keep from the old folder to the new folder. If you're anything like me, there are a few in there that you don't need any more. This works fine with just copying over the ones you need. However if you want to copy them all over and delete the un-needed ones in HeidiSQL, that's probably even better.<\/p>\n\n\n\n

    Replace ibdata1<\/h2>\n\n\n\n

    The step I was missing that caused the databases to show empty, broken tables was to copy ibdata1<\/em> from the old \/data<\/em> folder to the new \/data<\/em> folder.<\/p>\n\n\n\n

    Open the old folder, copy ibdata1<\/em>.<\/p>\n\n\n\n

    \"arrow<\/figure><\/div>\n\n\n\n

    Paste it in the new folder.<\/p>\n\n\n\n

    \"arrow<\/figure><\/div>\n\n\n\n

    You'll get a message that \"The destination already has a file named 'ibdata1'\".<\/p>\n\n\n\n

    Select \"Replace the file in the destination\".<\/p>\n\n\n\n

    \"Prompt<\/figure><\/div>\n\n\n\n

    That should be all you need to do. However, if you haven't stopped MariaDB, you'll get a message \"The action can't be completed because the folder or a file in it is open in another program\".<\/p>\n\n\n\n

    Just open a command prompt as an administrator<\/a> and stop MariaDB<\/a> using the steps above.<\/p>\n\n\n\n

    Then just hit \"Try Again\" and it should copy correctly.<\/p>\n\n\n\n

    \"Error<\/figure><\/div>\n\n\n\n

    Start MariaDB<\/h2>\n\n\n\n

    To actually use the databases, you'll need to restart MariaDB.<\/p>\n\n\n\n

    Go back to the Administrator Command Prompt, or open a new one<\/a>.<\/p>\n\n\n\n

    Type \"net start mariadb\" without the quotation marks.<\/p>\n\n\n\n

    It will take a few seconds, but you should see \"The MariaDB service was started successfully.\"<\/p>\n\n\n\n

    \"Administrator<\/figure><\/div>\n\n\n\n

    Now you're all set to use your old databases in the new MariaDB installation.<\/p>\n\n\n\n

    If you open HeidiSQL now, you should see your databases as they should be, with all the tables accessible, showing all the rows and data that you are expecting.<\/p>\n\n\n\n

    \"HeidiSQL<\/figure><\/div>\n\n\n\n

    If you open HeidiSQL and get the error message \"Can't connect to MySQL server on '127.0.0.1' (10061)\", it likely means you haven't restarted MariaDB. Just follow the steps above<\/a>.<\/p>\n\n\n\n

    \"Error<\/figure><\/div>\n\n\n\n

    <\/p>\n\n\n\n

    <\/p>\n\n\n\n

    <\/p>\n","protected":false},"excerpt":{"rendered":"

    I just upgraded from MariaDB 10.1.x to 10.6.x and wanted to move some of my old databases over to the new version. Typically you would use a database dump or the MariaDB upgrade wizard, but none of those would work for me. I’m also running it on a Windows 10 machine, so a lot of<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"yoast_head":"\nHow To Move MariaDB Database Files After Upgrading Version<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Move MariaDB Database Files After Upgrading Version\" \/>\n<meta property=\"og:description\" content=\"I just upgraded from MariaDB 10.1.x to 10.6.x and wanted to move some of my old databases over to the new version. Typically you would use a database dump or the MariaDB upgrade wizard, but none of those would work for me. I'm also running it on a Windows 10 machine, so a lot of\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/\" \/>\n<meta property=\"og:site_name\" content=\"Intelliwolf\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-14T00:24:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-12-14T00:24:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2021\/12\/2021-12-14-move-mariadb-files-09-600x142.png\" \/>\n<meta name=\"author\" content=\"Mike Haydon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mike Haydon\" \/>\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:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/\"},\"author\":{\"name\":\"Mike Haydon\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343\"},\"headline\":\"How To Move MariaDB Database Files After Upgrading Version\",\"datePublished\":\"2021-12-14T00:24:41+00:00\",\"dateModified\":\"2021-12-14T00:24:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/\"},\"wordCount\":818,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2021\/12\/2021-12-14-move-mariadb-files-09-600x142.png\",\"articleSection\":[\"Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/\",\"url\":\"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/\",\"name\":\"How To Move MariaDB Database Files After Upgrading Version\",\"isPartOf\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/intelliwolf.com\/wp-content\/uploads\/2021\/12\/2021-12-14-move-mariadb-files-09-600x142.png\",\"datePublished\":\"2021-12-14T00:24:41+00:00\",\"dateModified\":\"2021-12-14T00:24:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#primaryimage\",\"url\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2021\/12\/2021-12-14-move-mariadb-files-09.png\",\"contentUrl\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2021\/12\/2021-12-14-move-mariadb-files-09.png\",\"width\":1336,\"height\":316},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.intelliwolf.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Server\",\"item\":\"https:\/\/www.intelliwolf.com\/category\/server\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How To Move MariaDB Database Files After Upgrading Version\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.intelliwolf.com\/#website\",\"url\":\"https:\/\/www.intelliwolf.com\/\",\"name\":\"Intelliwolf\",\"description\":\"WordPress, Web Design and Coding Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.intelliwolf.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.intelliwolf.com\/#organization\",\"name\":\"Intelliwolf\",\"url\":\"https:\/\/www.intelliwolf.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png\",\"contentUrl\":\"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png\",\"width\":300,\"height\":100,\"caption\":\"Intelliwolf\"},\"image\":{\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343\",\"name\":\"Mike Haydon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.intelliwolf.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g\",\"caption\":\"Mike Haydon\"},\"sameAs\":[\"https:\/\/intelliwolf.com\/about-mike-haydon\/\"]}]}<\/script>\n","yoast_head_json":{"title":"How To Move MariaDB Database Files After Upgrading Version","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:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/","og_locale":"en_US","og_type":"article","og_title":"How To Move MariaDB Database Files After Upgrading Version","og_description":"I just upgraded from MariaDB 10.1.x to 10.6.x and wanted to move some of my old databases over to the new version. Typically you would use a database dump or the MariaDB upgrade wizard, but none of those would work for me. I'm also running it on a Windows 10 machine, so a lot of","og_url":"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/","og_site_name":"Intelliwolf","article_published_time":"2021-12-14T00:24:41+00:00","article_modified_time":"2021-12-14T00:24:43+00:00","og_image":[{"url":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2021\/12\/2021-12-14-move-mariadb-files-09-600x142.png"}],"author":"Mike Haydon","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mike Haydon","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#article","isPartOf":{"@id":"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/"},"author":{"name":"Mike Haydon","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343"},"headline":"How To Move MariaDB Database Files After Upgrading Version","datePublished":"2021-12-14T00:24:41+00:00","dateModified":"2021-12-14T00:24:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/"},"wordCount":818,"commentCount":2,"publisher":{"@id":"https:\/\/www.intelliwolf.com\/#organization"},"image":{"@id":"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#primaryimage"},"thumbnailUrl":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2021\/12\/2021-12-14-move-mariadb-files-09-600x142.png","articleSection":["Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/","url":"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/","name":"How To Move MariaDB Database Files After Upgrading Version","isPartOf":{"@id":"https:\/\/www.intelliwolf.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#primaryimage"},"image":{"@id":"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#primaryimage"},"thumbnailUrl":"https:\/\/intelliwolf.com\/wp-content\/uploads\/2021\/12\/2021-12-14-move-mariadb-files-09-600x142.png","datePublished":"2021-12-14T00:24:41+00:00","dateModified":"2021-12-14T00:24:43+00:00","breadcrumb":{"@id":"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#primaryimage","url":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2021\/12\/2021-12-14-move-mariadb-files-09.png","contentUrl":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/2021\/12\/2021-12-14-move-mariadb-files-09.png","width":1336,"height":316},{"@type":"BreadcrumbList","@id":"https:\/\/www.intelliwolf.com\/move-mariadb-files-after-upgrade\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.intelliwolf.com\/"},{"@type":"ListItem","position":2,"name":"Server","item":"https:\/\/www.intelliwolf.com\/category\/server\/"},{"@type":"ListItem","position":3,"name":"How To Move MariaDB Database Files After Upgrading Version"}]},{"@type":"WebSite","@id":"https:\/\/www.intelliwolf.com\/#website","url":"https:\/\/www.intelliwolf.com\/","name":"Intelliwolf","description":"WordPress, Web Design and Coding Tutorials","publisher":{"@id":"https:\/\/www.intelliwolf.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.intelliwolf.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.intelliwolf.com\/#organization","name":"Intelliwolf","url":"https:\/\/www.intelliwolf.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/","url":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png","contentUrl":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-content\/uploads\/intelliwolf-logo-300t.png","width":300,"height":100,"caption":"Intelliwolf"},"image":{"@id":"https:\/\/www.intelliwolf.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/person\/7209e3ff14822e4d70d5f194a310f343","name":"Mike Haydon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.intelliwolf.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d5f4754fae310a04dede91d15e57c8a0?s=96&d=mm&r=g","caption":"Mike Haydon"},"sameAs":["https:\/\/intelliwolf.com\/about-mike-haydon\/"]}]}},"_links":{"self":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts\/2416"}],"collection":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/comments?post=2416"}],"version-history":[{"count":3,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts\/2416\/revisions"}],"predecessor-version":[{"id":2431,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/posts\/2416\/revisions\/2431"}],"wp:attachment":[{"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/media?parent=2416"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/categories?post=2416"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wordpress-757293-2559390.cloudwaysapps.com\/wp-json\/wp\/v2\/tags?post=2416"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}