{"id":17434,"date":"2026-03-16T16:37:20","date_gmt":"2026-03-16T11:07:20","guid":{"rendered":"https:\/\/www.skynats.com\/blog\/?p=17434"},"modified":"2026-03-16T16:37:22","modified_gmt":"2026-03-16T11:07:22","slug":"how-to-change-the-plesk-default-backup-location-on-a-linux-server","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\/","title":{"rendered":"How to Change the Plesk Default Backup Location on a Linux Server"},"content":{"rendered":"\n<p>Backups are a critical part of server management. If you are running Plesk on a Linux server, you may eventually need to Change Plesk Backup Location Linux due to storage limitations, disk organization, or performance considerations. By default, Plesk stores all backup files in the following directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code> \/var\/lib\/psa\/dumps<\/code><\/pre>\n\n\n\n<p>However, you can easily modify this location to another directory, such as a mounted storage disk or a larger partition. This guide walks you through the step-by-step process of changing the default backup location.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-why-change-the-backup-location\"><strong>Why Change the Backup Location?<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The default partition is running out of disk space.<\/li>\n\n\n\n<li>You want backups stored on a separate disk or mount point.<\/li>\n\n\n\n<li>You want better organization of server data.<\/li>\n\n\n\n<li>Backups need to be stored on faster or larger storage.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-1-connect-to-the-server-via-ssh\"><strong>Step 1: Connect to the Server via SSH<\/strong><\/h3>\n\n\n\n<p>First, connect to your Linux server using SSH.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ssh root@your-server-ip<\/code><\/pre>\n\n\n\n<p>Make sure you have <strong>root or sudo privileges<\/strong>, as configuration files will need to be modified.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Step 2: Create a New Backup Directory<\/strong><\/h2>\n\n\n\n<p>Create a new directory where the backups will be stored. In this example, we will create a directory called:\/home\/backups<\/p>\n\n\n\n<p>Run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir \/home\/backups<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 3: Set the Correct Permissions<\/strong><\/h3>\n\n\n\n<p><a href=\"https:\/\/www.plesk.com\/\" type=\"link\" id=\"https:\/\/www.plesk.com\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Plesk<\/mark><\/a> requires the directory to have specific ownership and permissions. Set the ownership and permission:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>chown psaadm:psaadm \/home\/backups\nchmod 755 \/home\/backups<\/code><\/pre>\n\n\n\n<p>This ensures that Plesk services can properly access and write backup files.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 4: Modify the Plesk Configuration File<\/strong><\/h3>\n\n\n\n<p>The backup location is defined in the Plesk configuration file. Open the file with a text editor. For example, using vim:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>vim \/etc\/psa\/psa.conf<\/code><\/pre>\n\n\n\n<p>Look for the parameter <strong>DUMP_D<\/strong>, which defines the backup directory. Update it to the new location:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Backups directory\nDUMP_D \/home\/backups<\/code><\/pre>\n\n\n\n<p>Save the file and exit the editor.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 5: Verify the Configuration Change<\/strong><\/h3>\n\n\n\n<p>To confirm the backup directory has been updated, run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>grep -v '#' \/etc\/psa\/psa.conf | grep -w DUMP_D<\/code><\/pre>\n\n\n\n<p>Expected output:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>DUMP_D \/home\/backups<\/code><\/pre>\n\n\n\n<p>This confirms that Plesk will now use the new backup location.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-6-move-existing-backup-files\"><strong>Step 6: Move Existing Backup Files<\/strong><\/h3>\n\n\n\n<p>To avoid losing access to previous backups, move the existing files from the old location to the new directory.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mv \/var\/lib\/psa\/dumps\/* \/home\/backups\/\nmv \/var\/lib\/psa\/dumps\/.discovered\/ \/home\/backups\/<\/code><\/pre>\n\n\n\n<p>This transfers all backup files and the hidden .discovered directory.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 7: Restart the Plesk Control Panel&nbsp;<\/strong><\/h3>\n\n\n\n<p>Finally, restart the <strong>sw-cp-server<\/strong> service so the configuration changes take effect.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>service sw-cp-server restart<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Final Result<\/strong><\/h2>\n\n\n\n<p>After completing these steps, Plesk will store all future backup files in <strong>\/home\/backups\/<\/strong> instead of the default <strong>\/var\/lib\/psa\/dumps<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Best Practices for Plesk Backups<\/strong><\/h2>\n\n\n\n<p>To improve backup reliability and storage management:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Store backups on a <strong>separate disk or mounted storage<\/strong><\/li>\n\n\n\n<li>Regularly <strong>monitor disk usage<\/strong><\/li>\n\n\n\n<li>Automate <strong>scheduled backups<\/strong><\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>Changing the default backup directory in Plesk is a simple but effective way to optimize storage management on your Linux server. When you Change Plesk Backup Location <a href=\"https:\/\/www.skynats.com\/linux-server-management\">Linux<\/a>, you can move backups to a larger disk or external storage, helping prevent the primary server disk from filling up and affecting performance.<\/p>\n\n\n\n<p>By updating the configuration file and safely moving existing backup files, administrators can relocate backup storage without disrupting the current server environment. This process is an important part of <a href=\"https:\/\/www.skynats.com\/plesk-server-management-services\" type=\"link\" id=\"https:\/\/www.skynats.com\/plesk-server-management-services\">Plesk Server Management<\/a>, ensuring that backups are stored in the right location while maintaining system stability and reliability.<\/p>\n\n\n\n<p>Proper backup configuration and monitoring are essential components of professional <a href=\"https:\/\/www.skynats.com\/server-management\/\" type=\"link\" id=\"https:\/\/www.skynats.com\/server-management\/\">server management services<\/a>. With well-organized backup storage, businesses benefit from improved server performance, better storage utilization, and stronger disaster recovery preparedness.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Backups are a critical part of server management. If you are running Plesk on a Linux server, you may eventually need to Change Plesk Backup Location Linux due to storage limitations, disk organization, or performance considerations. By default, Plesk stores all backup files in the following directory: However, you can easily modify this location to [&hellip;]<\/p>\n","protected":false},"author":14,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1010,741,1261,302,825],"class_list":["post-17434","post","type-post","status-publish","format-standard","hentry","category-blog","tag-linux-server-management-services","tag-plesk","tag-plesk-on-a-linux-server","tag-server-management-services","tag-ssh"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Change Plesk Backup Location Linux: Easy Step-by-Step Guide<\/title>\n<meta name=\"description\" content=\"Change Plesk Backup Location Linux easily. Learn step-by-step how to move backups to another disk. Optimize storage\u2014read the guide now!\" \/>\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.skynats.com\/blog\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Change the Plesk Default Backup Location on a Linux Server\" \/>\n<meta property=\"og:description\" content=\"Change Plesk Backup Location Linux easily. Learn step-by-step how to move backups to another disk. Optimize storage\u2014read the guide now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-16T11:07:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-16T11:07:22+00:00\" \/>\n<meta name=\"author\" content=\"Jishnu V\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jishnu V\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\\\/\"},\"author\":{\"name\":\"Jishnu V\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/c63611da5e22d216e38d8658e5a605c5\"},\"headline\":\"How to Change the Plesk Default Backup Location on a Linux Server\",\"datePublished\":\"2026-03-16T11:07:20+00:00\",\"dateModified\":\"2026-03-16T11:07:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\\\/\"},\"wordCount\":541,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"linux server management services\",\"Plesk\",\"Plesk on a Linux server\",\"server management services\",\"SSH\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\\\/\",\"name\":\"Change Plesk Backup Location Linux: Easy Step-by-Step Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2026-03-16T11:07:20+00:00\",\"dateModified\":\"2026-03-16T11:07:22+00:00\",\"description\":\"Change Plesk Backup Location Linux easily. Learn step-by-step how to move backups to another disk. Optimize storage\u2014read the guide now!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Change the Plesk Default Backup Location on a Linux Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/c63611da5e22d216e38d8658e5a605c5\",\"name\":\"Jishnu V\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g\",\"caption\":\"Jishnu V\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Change Plesk Backup Location Linux: Easy Step-by-Step Guide","description":"Change Plesk Backup Location Linux easily. Learn step-by-step how to move backups to another disk. Optimize storage\u2014read the guide now!","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.skynats.com\/blog\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Change the Plesk Default Backup Location on a Linux Server","og_description":"Change Plesk Backup Location Linux easily. Learn step-by-step how to move backups to another disk. Optimize storage\u2014read the guide now!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2026-03-16T11:07:20+00:00","article_modified_time":"2026-03-16T11:07:22+00:00","author":"Jishnu V","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Jishnu V","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\/"},"author":{"name":"Jishnu V","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/c63611da5e22d216e38d8658e5a605c5"},"headline":"How to Change the Plesk Default Backup Location on a Linux Server","datePublished":"2026-03-16T11:07:20+00:00","dateModified":"2026-03-16T11:07:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\/"},"wordCount":541,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["linux server management services","Plesk","Plesk on a Linux server","server management services","SSH"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\/","url":"https:\/\/www.skynats.com\/blog\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\/","name":"Change Plesk Backup Location Linux: Easy Step-by-Step Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2026-03-16T11:07:20+00:00","dateModified":"2026-03-16T11:07:22+00:00","description":"Change Plesk Backup Location Linux easily. Learn step-by-step how to move backups to another disk. Optimize storage\u2014read the guide now!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-change-the-plesk-default-backup-location-on-a-linux-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Change the Plesk Default Backup Location on a Linux Server"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/c63611da5e22d216e38d8658e5a605c5","name":"Jishnu V","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9fc7882cfbe811c2c069669ed9a43c27a8b4f7e013fc7e9d539199f807dc7ab1?s=96&d=mm&r=g","caption":"Jishnu V"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17434","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=17434"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17434\/revisions"}],"predecessor-version":[{"id":17437,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17434\/revisions\/17437"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=17434"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=17434"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=17434"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}