{"id":15058,"date":"2024-10-14T11:20:43","date_gmt":"2024-10-14T11:20:43","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=15058"},"modified":"2024-10-14T11:37:55","modified_gmt":"2024-10-14T11:37:55","password":"","slug":"how-to-disable-innodb-in-mariadb","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-disable-innodb-in-mariadb\/","title":{"rendered":"How to Disable InnoDB in MariaDB"},"content":{"rendered":"\n<p>Disabling InnoDB in MariaDB is possible but generally not recommended for modern applications, as InnoDB is the default storage engine due to its robustness, support for ACID transactions, and foreign key constraints.<\/p>\n\n\n\n<p>However, if you want to disable InnoDB and use other storage engines like MyISAM, here\u2019s how you can do it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Steps to Disable InnoDB in MariaDB<\/h2>\n\n\n\n<h5 class=\"wp-block-heading\">1. <strong>Backup Your Databases<\/strong><\/h5>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Before making any changes, it\u2019s crucial to back up all your databases to avoid data loss in case of any issues. Use these two commands, t crate a backup folder then to do the actual backing up.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>mkdir -p \/home\/databases\/<\/strong><\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>mysql -N -e 'show databases' | while read dbname; do mysqldump --complete-insert --routines --triggers --single-transaction \"$dbname\" &gt; \/home\/databases\/\"$dbname\".sql; done<\/strong><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"190\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-280-1024x190.png\" alt=\"\" class=\"wp-image-15040\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-280-1024x190.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-280-300x56.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-280-768x142.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-280-1536x285.png 1536w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-280.png 1673w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h5 class=\"wp-block-heading\">2. <strong>Edit MariaDB Configuration File<\/strong><\/h5>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You need to modify the MariaDB configuration file (<code>mariadb.cnf<\/code>) to disable InnoDB.<\/li>\n\n\n\n<li>Open the configuration file in your preferred text editor.<\/li>\n\n\n\n<li><strong>For CentOS\/AlmaLinux\/RHEL:<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo vi \/etc\/<strong>mariadb<\/strong>.cnf<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>For Ubuntu\/Debian:<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo vi \/etc\/<strong><strong>mariadb<\/strong><\/strong>\/my.cnf<\/strong><\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\">3. Add InnoDB Disabling Options<\/h5>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add the following lines under the <code>[mysqld]<\/code> section to disable InnoDB:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>&#91;mysqld]\nskip-innodb\ndefault-storage-engine=MyISAM<\/strong><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"817\" height=\"253\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-281.png\" alt=\"\" class=\"wp-image-15044\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-281.png 817w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-281-300x93.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-281-768x238.png 768w\" sizes=\"auto, (max-width: 817px) 100vw, 817px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In the above;\n<ul class=\"wp-block-list\">\n<li><code>skip-innodb<\/code> tells MariaDB not to load the InnoDB engine.<\/li>\n\n\n\n<li><code>default-storage-engine=MyISAM<\/code> sets the default storage engine to MyISAM instead of InnoDB.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>4. Convert InnoDB Tables to MyISAM (Optional)<\/strong><\/h5>\n\n\n\n<p>If you already have tables using the InnoDB engine, you should convert them to MyISAM before disabling InnoDB. <\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Log into your MariaDB database:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>mysql -u root -p<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You can find all the tables that are using InnoDB by running this query:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>SELECT table_name FROM information_schema.tables WHERE engine = 'InnoDB';<\/strong><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"434\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-282-1024x434.png\" alt=\"\" class=\"wp-image-15046\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-282-1024x434.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-282-300x127.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-282-768x326.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-282.png 1092w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>For each InnoDB table, run the following command to convert it to MyISAM:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>ALTER TABLE table_name ENGINE=MyISAM;<\/strong><\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>5. Restart MariaDB<\/strong><\/h5>\n\n\n\n<ul class=\"wp-block-list\">\n<li>After making changes to the configuration file, restart the MariaDB service to apply the changes using one of these commands<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>sudo systemctl restart mariadb<\/strong> OR <strong>sudo service <strong>mariadb<\/strong> restart<\/strong><\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"889\" height=\"314\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-283.png\" alt=\"\" class=\"wp-image-15048\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-283.png 889w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-283-300x106.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-283-768x271.png 768w\" sizes=\"auto, (max-width: 889px) 100vw, 889px\" \/><\/figure>\n\n\n\n<p><strong>6. Verify InnoDB is Disabled<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Once the MariaDB service has restarted, log into MariaDB to confirm that InnoDB is disabled.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>mysql -u root -p<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Run the following query to check the available storage engines:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>SHOW ENGINES;<\/strong><\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You should see that InnoDB is listed as &#8220;DISABLED&#8221; or with a Status og NO under support column.<\/li>\n\n\n\n<li>You will also see MyISAM engine set to DEFAULT, as in the image below.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"284\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-284-1024x284.png\" alt=\"\" class=\"wp-image-15050\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-284-1024x284.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-284-300x83.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-284-768x213.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-284-1536x426.png 1536w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-284.png 1859w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Disabling InnoDB in MariaDB is possible but generally not recommended for modern applications, as InnoDB is the default storage engine due to its robustness, support for ACID transactions, and foreign key constraints. However, if you want to disable InnoDB and use other storage engines like MyISAM, here\u2019s how you can do it. Steps to Disable [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_eb_attr":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"doc_category":[1820,1824,1879,2128],"doc_tag":[],"class_list":["post-15058","docs","type-docs","status-publish","hentry","doc_category-cloud-servers-in-kenya","doc_category-dedicated-servers","doc_category-servers","doc_category-vps-servers"],"year_month":"2026-06","word_count":386,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"Eugene","author_nicename":"eugene","author_url":"https:\/\/truehost.com\/support\/author\/eugene\/"},"doc_category_info":[{"term_name":"Cloud servers in Kenya","term_url":"https:\/\/truehost.com\/support\/docs-category\/cloud-servers-in-kenya\/"},{"term_name":"dedicated servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/dedicated-servers\/"},{"term_name":"Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/servers\/"},{"term_name":"VPS-Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/vps-servers\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Disable InnoDB in MariaDB -<\/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:\/\/truehost.com\/support\/knowledge-base\/how-to-disable-innodb-in-mariadb\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Disable InnoDB in MariaDB -\" \/>\n<meta property=\"og:description\" content=\"Disabling InnoDB in MariaDB is possible but generally not recommended for modern applications, as InnoDB is the default storage engine due to its robustness, support for ACID transactions, and foreign key constraints. However, if you want to disable InnoDB and use other storage engines like MyISAM, here\u2019s how you can do it. Steps to Disable [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/knowledge-base\/how-to-disable-innodb-in-mariadb\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-14T11:37:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-280-1024x190.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-disable-innodb-in-mariadb\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-disable-innodb-in-mariadb\\\/\",\"name\":\"How to Disable InnoDB in MariaDB -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-disable-innodb-in-mariadb\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-disable-innodb-in-mariadb\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-280-1024x190.png\",\"datePublished\":\"2024-10-14T11:20:43+00:00\",\"dateModified\":\"2024-10-14T11:37:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-disable-innodb-in-mariadb\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-disable-innodb-in-mariadb\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-disable-innodb-in-mariadb\\\/#primaryimage\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-280-1024x190.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-280-1024x190.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-disable-innodb-in-mariadb\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Disable InnoDB in MariaDB\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"name\":\"\",\"description\":\"Help In a Click\",\"publisher\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/truehost.com\\\/support\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\",\"name\":\"Truehost Kenya\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"width\":240,\"height\":48,\"caption\":\"Truehost Kenya\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Disable InnoDB in MariaDB -","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:\/\/truehost.com\/support\/knowledge-base\/how-to-disable-innodb-in-mariadb\/","og_locale":"en_US","og_type":"article","og_title":"How to Disable InnoDB in MariaDB -","og_description":"Disabling InnoDB in MariaDB is possible but generally not recommended for modern applications, as InnoDB is the default storage engine due to its robustness, support for ACID transactions, and foreign key constraints. However, if you want to disable InnoDB and use other storage engines like MyISAM, here\u2019s how you can do it. Steps to Disable [&hellip;]","og_url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-disable-innodb-in-mariadb\/","article_modified_time":"2024-10-14T11:37:55+00:00","og_image":[{"url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-280-1024x190.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-disable-innodb-in-mariadb\/","url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-disable-innodb-in-mariadb\/","name":"How to Disable InnoDB in MariaDB -","isPartOf":{"@id":"https:\/\/truehost.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-disable-innodb-in-mariadb\/#primaryimage"},"image":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-disable-innodb-in-mariadb\/#primaryimage"},"thumbnailUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-280-1024x190.png","datePublished":"2024-10-14T11:20:43+00:00","dateModified":"2024-10-14T11:37:55+00:00","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-disable-innodb-in-mariadb\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/knowledge-base\/how-to-disable-innodb-in-mariadb\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-disable-innodb-in-mariadb\/#primaryimage","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-280-1024x190.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-280-1024x190.png"},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-disable-innodb-in-mariadb\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Disable InnoDB in MariaDB"}]},{"@type":"WebSite","@id":"https:\/\/truehost.com\/support\/#website","url":"https:\/\/truehost.com\/support\/","name":"","description":"Help In a Click","publisher":{"@id":"https:\/\/truehost.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/truehost.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/truehost.com\/support\/#organization","name":"Truehost Kenya","url":"https:\/\/truehost.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","width":240,"height":48,"caption":"Truehost Kenya"},"image":{"@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/15058","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/comments?post=15058"}],"version-history":[{"count":3,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/15058\/revisions"}],"predecessor-version":[{"id":15064,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/15058\/revisions\/15064"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=15058"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=15058"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=15058"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}