{"id":16623,"date":"2024-11-05T11:33:29","date_gmt":"2024-11-05T11:33:29","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=16623"},"modified":"2024-11-05T11:58:26","modified_gmt":"2024-11-05T11:58:26","password":"","slug":"setting-up-and-using-swap-space-on-linux-servers","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/setting-up-and-using-swap-space-on-linux-servers\/","title":{"rendered":"Setting Up and Using Swap Space on Linux Servers"},"content":{"rendered":"\n<p>Swap space on Linux servers acts as an extension of RAM, providing additional virtual memory when physical memory (RAM) is fully utilized. This helps prevent out-of-memory errors and keeps applications running smoothly. In this article, we\u2019ll cover what swap space is, why it\u2019s useful, and how to configure it on your Linux server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What is Swap Space?<\/h3>\n\n\n\n<p>Swap space is a dedicated area on your disk that functions as virtual memory, temporarily storing inactive pages from the main memory (RAM). When the system runs low on RAM, Linux uses swap space to free up memory by moving some processes from RAM to disk. While swap space is slower than RAM, it allows the system to handle memory overflows gracefully.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why Use Swap Space?<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Handle RAM Overloads<\/strong>: Swap space acts as a safety net when physical memory is insufficient, allowing the system to continue running by offloading some of the memory load to disk.<\/li>\n\n\n\n<li><strong>Improve Stability<\/strong>: Without swap, memory-intensive applications may crash if RAM runs out, while swap space helps mitigate these situations.<\/li>\n\n\n\n<li><strong>Enable Hibernation<\/strong>: Some systems require swap space to store the contents of RAM during hibernation.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Prerequisites<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Linux Server Access<\/strong>: You need root or sudo access to the Linux server to configure swap.<\/li>\n\n\n\n<li><strong>Free Disk Space<\/strong>: Ensure that your disk has enough free space to create a swap file or partition.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Check for Existing Swap Space<\/h2>\n\n\n\n<p>First, check if swap space is already enabled on your server. Use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo swapon --show<\/code><\/pre>\n\n\n\n<p>If there is no output, it means there is no active swap space. Alternatively, you can view memory usage, including swap, using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>free -h<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"983\" height=\"289\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-56.png\" alt=\"\" class=\"wp-image-16633\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-56.png 983w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-56-300x88.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-56-768x226.png 768w\" sizes=\"auto, (max-width: 983px) 100vw, 983px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Creating a Swap File<\/h2>\n\n\n\n<p>If no swap space is active or you need additional swap, creating a swap file is often the easiest method. Follow these steps:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">a. Create a Swap File<\/h3>\n\n\n\n<p>Determine the size of swap space you want (e.g., 1GB) and create a file for it. Adjust <code>2G<\/code> as needed:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo fallocate -l 1G \/swapfile<\/code><\/pre>\n\n\n\n<p>If <code>fallocate<\/code> is not available, use <code>dd<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo dd if=\/dev\/zero of=\/swapfile bs=1M count=1024<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">b. Set Correct Permissions<\/h3>\n\n\n\n<p>Ensure that only the root user can read\/write to the swap file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo chmod 600 \/swapfile<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">c. Configure the Swap File<\/h3>\n\n\n\n<p>Set up the swap area on the file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mkswap \/swapfile<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">d. Enable the Swap File<\/h3>\n\n\n\n<p>Activate the swap file so the system can start using it:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo swapon \/swapfile<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">e. Verify the Swap<\/h3>\n\n\n\n<p>Confirm that the swap file is active:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo swapon --show<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"320\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-55-1024x320.png\" alt=\"\" class=\"wp-image-16632\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-55-1024x320.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-55-300x94.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-55-768x240.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-55.png 1280w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Make the Swap Permanent<\/h2>\n\n\n\n<p>To ensure that the swap file is used after a reboot, add it to <code>\/etc\/fstab<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo '\/swapfile none swap sw 0 0' | sudo tee -a \/etc\/fstab<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Configure Swap Usage (Optional)<\/h2>\n\n\n\n<p>Linux systems use a parameter called <em>swappiness<\/em> to control how often swap is used. The default value is usually 60, meaning the system will start swapping when RAM usage reaches around 60%.<\/p>\n\n\n\n<p>To view the current swappiness:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cat \/proc\/sys\/vm\/swappiness<\/code><\/pre>\n\n\n\n<p>To adjust the swappiness value to 10 (lower values mean the system uses swap less frequently):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo sysctl vm.swappiness=10<\/code><\/pre>\n\n\n\n<p>To make this change permanent, add the following line to <code>\/etc\/sysctl.conf<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo 'vm.swappiness=10' | sudo tee -a \/etc\/sysctl.conf<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Adjusting Cache Pressure (Optional)<\/h2>\n\n\n\n<p>The <em>vfs_cache_pressure<\/em> parameter controls how aggressively the system reclaims memory used for directory and inode caches. A lower value tells the system to retain more cache, which may improve performance.<\/p>\n\n\n\n<p>To check the current setting:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cat \/proc\/sys\/vm\/vfs_cache_pressure<\/code><\/pre>\n\n\n\n<p>To reduce cache pressure, set the value to 50:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo sysctl vm.vfs_cache_pressure=50<\/code><\/pre>\n\n\n\n<p>Add this line to <code>\/etc\/sysctl.conf<\/code> to make it persistent:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>echo 'vm.vfs_cache_pressure=50' | sudo tee -a \/etc\/sysctl.conf<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6: Monitoring Swap Usage<\/h2>\n\n\n\n<p>To monitor swap usage, use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>free -m<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"81\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-57-1024x81.png\" alt=\"\" class=\"wp-image-16634\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-57-1024x81.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-57-300x24.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-57-768x61.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-57.png 1124w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>You can also use <code>top<\/code> or <code>htop<\/code> commands to view swap usage in real-time.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7: Disabling and Removing Swap (Optional)<\/h2>\n\n\n\n<p>If you need to disable swap, you can turn it off temporarily with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo swapoff \/swapfile<\/code><\/pre>\n\n\n\n<p>To permanently remove the swap file, delete the entry from <code>\/etc\/fstab<\/code> and remove the file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo rm \/swapfile<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Author&#8217;s Final Word<\/h2>\n\n\n\n<p>Setting up swap space on a Linux server can be crucial for handling memory overflows and improving system stability. While it\u2019s not a replacement for physical RAM, swap space can keep your applications running smoothly in times of high memory usage. Adjusting parameters like swappiness and cache pressure also provides fine-grained control over how your server uses swap, helping optimize performance.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Swap space on Linux servers acts as an extension of RAM, providing additional virtual memory when physical memory (RAM) is fully utilized. This helps prevent out-of-memory errors and keeps applications running smoothly. In this article, we\u2019ll cover what swap space is, why it\u2019s useful, and how to configure it on your Linux server. What is [&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-16623","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-07","word_count":757,"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 v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Setting Up and Using Swap Space on Linux Servers -<\/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\/setting-up-and-using-swap-space-on-linux-servers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Setting Up and Using Swap Space on Linux Servers -\" \/>\n<meta property=\"og:description\" content=\"Swap space on Linux servers acts as an extension of RAM, providing additional virtual memory when physical memory (RAM) is fully utilized. This helps prevent out-of-memory errors and keeps applications running smoothly. In this article, we\u2019ll cover what swap space is, why it\u2019s useful, and how to configure it on your Linux server. What is [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/knowledge-base\/setting-up-and-using-swap-space-on-linux-servers\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-05T11:58:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-56.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=\"4 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\\\/setting-up-and-using-swap-space-on-linux-servers\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/setting-up-and-using-swap-space-on-linux-servers\\\/\",\"name\":\"Setting Up and Using Swap Space on Linux Servers -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/setting-up-and-using-swap-space-on-linux-servers\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/setting-up-and-using-swap-space-on-linux-servers\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-56.png\",\"datePublished\":\"2024-11-05T11:33:29+00:00\",\"dateModified\":\"2024-11-05T11:58:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/setting-up-and-using-swap-space-on-linux-servers\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/setting-up-and-using-swap-space-on-linux-servers\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/setting-up-and-using-swap-space-on-linux-servers\\\/#primaryimage\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-56.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-56.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/setting-up-and-using-swap-space-on-linux-servers\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Setting Up and Using Swap Space on Linux Servers\"}]},{\"@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":"Setting Up and Using Swap Space on Linux Servers -","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\/setting-up-and-using-swap-space-on-linux-servers\/","og_locale":"en_US","og_type":"article","og_title":"Setting Up and Using Swap Space on Linux Servers -","og_description":"Swap space on Linux servers acts as an extension of RAM, providing additional virtual memory when physical memory (RAM) is fully utilized. This helps prevent out-of-memory errors and keeps applications running smoothly. In this article, we\u2019ll cover what swap space is, why it\u2019s useful, and how to configure it on your Linux server. What is [&hellip;]","og_url":"https:\/\/truehost.com\/support\/knowledge-base\/setting-up-and-using-swap-space-on-linux-servers\/","article_modified_time":"2024-11-05T11:58:26+00:00","og_image":[{"url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-56.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/truehost.com\/support\/knowledge-base\/setting-up-and-using-swap-space-on-linux-servers\/","url":"https:\/\/truehost.com\/support\/knowledge-base\/setting-up-and-using-swap-space-on-linux-servers\/","name":"Setting Up and Using Swap Space on Linux Servers -","isPartOf":{"@id":"https:\/\/truehost.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/setting-up-and-using-swap-space-on-linux-servers\/#primaryimage"},"image":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/setting-up-and-using-swap-space-on-linux-servers\/#primaryimage"},"thumbnailUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-56.png","datePublished":"2024-11-05T11:33:29+00:00","dateModified":"2024-11-05T11:58:26+00:00","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/setting-up-and-using-swap-space-on-linux-servers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/knowledge-base\/setting-up-and-using-swap-space-on-linux-servers\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/knowledge-base\/setting-up-and-using-swap-space-on-linux-servers\/#primaryimage","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-56.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-56.png"},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/knowledge-base\/setting-up-and-using-swap-space-on-linux-servers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"Setting Up and Using Swap Space on Linux Servers"}]},{"@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\/16623","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=16623"}],"version-history":[{"count":6,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16623\/revisions"}],"predecessor-version":[{"id":16635,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16623\/revisions\/16635"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=16623"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=16623"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=16623"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}