{"id":5416,"date":"2015-11-18T10:30:45","date_gmt":"2015-11-18T10:30:45","guid":{"rendered":"https:\/\/bodhost.com\/kb\/?p=5416"},"modified":"2026-02-26T14:03:12","modified_gmt":"2026-02-26T14:03:12","slug":"discover-steps-to-sync-two-apache-web-servers-using-rsync","status":"publish","type":"post","link":"https:\/\/www.bodhost.com\/kb\/discover-steps-to-sync-two-apache-web-servers-using-rsync\/","title":{"rendered":"Discover Steps to Sync Two Apache Web Servers Using Rsync"},"content":{"rendered":"\r\n<p class=\"has-text-align-left wp-block-paragraph\">Do you have a mirrored server of your current server to take the backup when it fails? No, then you need to have a mirror of your web server which can be created with Rsync. This will help to take a backup of your failed server without any issues of downtime. Creating a web server backup is a good as well as effective way for small and medium-sized web businesses.<br \/><br \/>Let\u2019s learn to setup rsync to create a mirror of your web server \u2013<br \/><br \/>You will require two servers \u2013<br \/><br \/>Main Server \u2013<br \/>IP Address: xxx.xxx.x.xxx<br \/>Hostname<strong>:<\/strong> webserver.example123.com<\/p>\r\n\r\n\r\n\r\n<p class=\"has-text-align-left wp-block-paragraph\">Backup Server \u2013<br \/>IP Address: xxx.xxx.x.xxx<br \/>Hostname: backup.example123.com<\/p>\r\n\r\n\r\n\r\n<ol>\r\n<li class=\"has-text-align-left\"><strong>Rsync Installation<br \/><\/strong>In this tutorial, the web server data of webserver.example123.com mirrored on backup.example123.com. Firstly, install Rsync on both servers by running the following command\r\n<pre class=\"wp-block-preformatted\">[root@tecmint]# yum install rsync [On Red Hat based systems]\r\n[root@tecmint]# apt-get install rsync [On Debian based systems]<\/pre>\r\n<\/li>\r\n<li><strong>Creating a User to run Rsync<br \/><\/strong>Rsync set up with a root user but due to security issues you have to create an unprivileged user on the main server \u2013 webserver.example123.com to run rsync.\r\n<pre class=\"wp-block-preformatted\">[root@tecmint]# useradd tecgeek\r\n[root@tecmint]# passwd tecgeek<\/pre>\r\n<p class=\"wp-block-paragraph\">Here the user created as an example is a tech geek and also assigned a password.<\/p>\r\n<\/li>\r\n<li><strong>Testing Rsync Setup<br \/><\/strong>Now, you need to test your rsync setup on your backup server (backup.example123.com), and to do so run the following command\r\n<pre class=\"wp-block-preformatted\">[root@backup www]# rsync -avzhe ssh tecgeek@webserver.example123.com:\/var\/www\/ \/var\/www<\/pre>\r\n<p>You will get the output below \u2013<\/p>\r\n<pre class=\"wp-block-preformatted\">tecgeek@webserver.example123.com's password:\r\nreceiving incremental file list\r\nsent 128 bytes received 32.67K bytes 5.96K bytes\/sec\r\ntotal size is 12.78M speedup is 389.70<\/pre>\r\n<p class=\"has-text-align-left\">This shows that your rsync is working smoothly and is synching data. Here \u201c\/var\/www\u201d is used to transfer. The folder location changed as per your needs.<\/p>\r\n<\/li>\r\n<li><strong><strong>Automating Sync with SSH Passwordless Login<br \/><\/strong><\/strong>Let\u2019s set up a cron for rsync. Since rsync used with SSH protocol, SSH will ask for authentication and if the password isn\u2019t provided to cron it won\u2019t work. For cron to make work smooth, setting up passwordless SSH logins for rsync is a must.<strong><strong>\r\n\r\n<\/strong><\/strong>\r\n<p class=\"has-text-align-left wp-block-paragraph\">In this example, it\u2019s done as root to prevent file ownership too and it is also done for alternative users too.<\/p>\r\n<strong><strong>\r\n\r\n<\/strong><\/strong>\r\n<p class=\"has-text-align-left wp-block-paragraph\">Firstly, generate a private and public key with the commands below on the backup server (backup.example123.com)<\/p>\r\n<strong><strong>\r\n\r\n<\/strong><\/strong>\r\n<pre class=\"wp-block-preformatted\">[root@backup]# ssh-keygen -t rsa -b 2048<\/pre>\r\n<strong><strong>\r\n\r\n<\/strong><\/strong>\r\n<p class=\"wp-block-paragraph\">Don\u2019t provide a passphrase after entering this command and click enter for an Empty passphrase so that rsync cron will sync data without any password.<br \/>The output will be as below for example \u2013<\/p>\r\n<strong><strong>\r\n\r\n<\/strong><\/strong>\r\n<pre class=\"wp-block-preformatted\">Generating public\/private rsa key pair.\r\nEnter file in which to save the key (\/root\/.ssh\/id_rsa):\r\nEnter passphrase (empty for no passphrase):\r\nEnter same passphrase again:\r\nYour identification has been saved in \/root\/.ssh\/id_rsa.\r\nYour public key has been saved in \/root\/.ssh\/id_rsa.pub.\r\nThe key fingerprint is:\r\n9a:33:a9:5d:f4:e1:41:26:57:d0:9a:68:5b:37:9c:23 root@backup.example123.com\r\nThe key's randomart image is:\r\n+--[ RSA 2048]----+\r\n| .o. |\r\n| .. |\r\n| ..++ . |\r\n| o=E * |\r\n| .Sooo o |\r\n| =.o o |\r\n| * . o |\r\n| o + |\r\n| . . |\r\n+-----------------+<\/pre>\r\n<strong><strong>\r\n\r\n<\/strong><\/strong>\r\n<p class=\"wp-block-paragraph\">This result proves the generation of private and public keys and now it\u2019s time to share it with the main server so that it will recognize this backup machine and permit it to log in without a password when synching data.<\/p>\r\n<strong><strong>\r\n\r\n<\/strong><\/strong>\r\n<pre class=\"wp-block-preformatted\">[root@backup html]# ssh-copy-id -i \/root\/.ssh\/id_rsa.pub root@webserver.example123.com<\/pre>\r\n<strong><strong>\r\n\r\n<\/strong><\/strong>\r\n<p class=\"wp-block-paragraph\">Try logging into the machine with &#8220;ssh&#8217;root@webserver.example123.com'&#8221; and check in .ssh\/authorized_keys.<\/p>\r\n<strong><strong>\r\n\r\n<\/strong><\/strong>\r\n<pre class=\"wp-block-preformatted\">[root@backup html]# root@webserver.example123.com<\/pre>\r\n<strong><strong>\r\n\r\n<\/strong><\/strong>\r\n<p class=\"wp-block-paragraph\">With this sharing keys is completed.<\/p>\r\n<\/li>\r\n<li>\u00a0<strong><strong>Scheduling Cron for Automatic Synching<br \/><\/strong><\/strong>Start with setting up cron by opening the crontab file with the following command.<strong><strong>\r\n\r\n<\/strong><\/strong>\r\n<pre class=\"wp-block-preformatted\">[root@backup ~]# crontab \u2013e<\/pre>\r\n<strong><strong>\r\n\r\n<\/strong><\/strong>\r\n<p class=\"wp-block-paragraph\">This command will open \/etc\/ crontab file to edit with the default browser. Here a corn written to run it every 5 minutes for synching data.<\/p>\r\n<strong><strong>\r\n\r\n<\/strong><\/strong>\r\n<pre class=\"wp-block-preformatted\">*\/5 * * * * rsync -avzhe ssh root@webserver.example.com:\/var\/www\/ \/var\/www\/<\/pre>\r\n<strong><strong>\r\n\r\n<\/strong><\/strong>\r\n<p class=\"wp-block-paragraph\">The time and folder location configuration changed as per your requirements.<\/p>\r\n<\/li>\r\n<\/ol>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<p class=\"has-text-align-left wp-block-paragraph\">Hope this tutorial will help you to sync two Apache web servers using rsync.<\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>Do you have a mirrored server of your current server to take the backup when it fails? No, then you need to have a mirror of your web server which&hellip;<\/p>\n<p><a href=\"https:\/\/www.bodhost.com\/kb\/discover-steps-to-sync-two-apache-web-servers-using-rsync\/\" class=\"more-link\">Read More<\/a><\/p>\n","protected":false},"author":15,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[894],"tags":[119,703],"class_list":["post-5416","post","type-post","status-publish","format-standard","hentry","category-apache-web-server","tag-apache-server","tag-server-sync"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Discover Steps to Sync Two Apache Web Servers Using Rsync<\/title>\n<meta name=\"description\" content=\"Learn how to sync two Apache web servers using Rsync. Follow our step-by-step guide to ensure your web servers are always up-to-date and consistent.\" \/>\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.bodhost.com\/kb\/discover-steps-to-sync-two-apache-web-servers-using-rsync\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Discover Steps to Sync Two Apache Web Servers Using Rsync\" \/>\n<meta property=\"og:description\" content=\"Learn how to sync two Apache web servers using Rsync. Follow our step-by-step guide to ensure your web servers are always up-to-date and consistent.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.bodhost.com\/kb\/discover-steps-to-sync-two-apache-web-servers-using-rsync\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base - bodHOST\" \/>\n<meta property=\"article:published_time\" content=\"2015-11-18T10:30:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-26T14:03:12+00:00\" \/>\n<meta name=\"author\" content=\"anilr\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"anilr\" \/>\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.bodhost.com\\\/kb\\\/discover-steps-to-sync-two-apache-web-servers-using-rsync\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/discover-steps-to-sync-two-apache-web-servers-using-rsync\\\/\"},\"author\":{\"name\":\"anilr\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/8871ea0c76482a5a482e48538ae4dbb3\"},\"headline\":\"Discover Steps to Sync Two Apache Web Servers Using Rsync\",\"datePublished\":\"2015-11-18T10:30:45+00:00\",\"dateModified\":\"2026-02-26T14:03:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/discover-steps-to-sync-two-apache-web-servers-using-rsync\\\/\"},\"wordCount\":522,\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"keywords\":[\"Apache server\",\"server sync\"],\"articleSection\":[\"Apache Web server\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/discover-steps-to-sync-two-apache-web-servers-using-rsync\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/discover-steps-to-sync-two-apache-web-servers-using-rsync\\\/\",\"name\":\"Discover Steps to Sync Two Apache Web Servers Using Rsync\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\"},\"datePublished\":\"2015-11-18T10:30:45+00:00\",\"dateModified\":\"2026-02-26T14:03:12+00:00\",\"description\":\"Learn how to sync two Apache web servers using Rsync. Follow our step-by-step guide to ensure your web servers are always up-to-date and consistent.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/discover-steps-to-sync-two-apache-web-servers-using-rsync\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/discover-steps-to-sync-two-apache-web-servers-using-rsync\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/discover-steps-to-sync-two-apache-web-servers-using-rsync\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Apache Web server\",\"item\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/category\\\/apache-web-server\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Discover Steps to Sync Two Apache Web Servers Using Rsync\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"alternateName\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"contentUrl\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"width\":240,\"height\":240,\"caption\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/8871ea0c76482a5a482e48538ae4dbb3\",\"name\":\"anilr\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/11307531bf21385b7c7046df25e96e38f4530ef77506385bb9d9c72798e5b284?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/11307531bf21385b7c7046df25e96e38f4530ef77506385bb9d9c72798e5b284?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/11307531bf21385b7c7046df25e96e38f4530ef77506385bb9d9c72798e5b284?s=96&d=mm&r=g\",\"caption\":\"anilr\"},\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/author\\\/anilr\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Discover Steps to Sync Two Apache Web Servers Using Rsync","description":"Learn how to sync two Apache web servers using Rsync. Follow our step-by-step guide to ensure your web servers are always up-to-date and consistent.","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.bodhost.com\/kb\/discover-steps-to-sync-two-apache-web-servers-using-rsync\/","og_locale":"en_US","og_type":"article","og_title":"Discover Steps to Sync Two Apache Web Servers Using Rsync","og_description":"Learn how to sync two Apache web servers using Rsync. Follow our step-by-step guide to ensure your web servers are always up-to-date and consistent.","og_url":"https:\/\/www.bodhost.com\/kb\/discover-steps-to-sync-two-apache-web-servers-using-rsync\/","og_site_name":"Knowledge Base - bodHOST","article_published_time":"2015-11-18T10:30:45+00:00","article_modified_time":"2026-02-26T14:03:12+00:00","author":"anilr","twitter_card":"summary_large_image","twitter_misc":{"Written by":"anilr","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.bodhost.com\/kb\/discover-steps-to-sync-two-apache-web-servers-using-rsync\/#article","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/discover-steps-to-sync-two-apache-web-servers-using-rsync\/"},"author":{"name":"anilr","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/8871ea0c76482a5a482e48538ae4dbb3"},"headline":"Discover Steps to Sync Two Apache Web Servers Using Rsync","datePublished":"2015-11-18T10:30:45+00:00","dateModified":"2026-02-26T14:03:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.bodhost.com\/kb\/discover-steps-to-sync-two-apache-web-servers-using-rsync\/"},"wordCount":522,"publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"keywords":["Apache server","server sync"],"articleSection":["Apache Web server"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.bodhost.com\/kb\/discover-steps-to-sync-two-apache-web-servers-using-rsync\/","url":"https:\/\/www.bodhost.com\/kb\/discover-steps-to-sync-two-apache-web-servers-using-rsync\/","name":"Discover Steps to Sync Two Apache Web Servers Using Rsync","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/#website"},"datePublished":"2015-11-18T10:30:45+00:00","dateModified":"2026-02-26T14:03:12+00:00","description":"Learn how to sync two Apache web servers using Rsync. Follow our step-by-step guide to ensure your web servers are always up-to-date and consistent.","breadcrumb":{"@id":"https:\/\/www.bodhost.com\/kb\/discover-steps-to-sync-two-apache-web-servers-using-rsync\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.bodhost.com\/kb\/discover-steps-to-sync-two-apache-web-servers-using-rsync\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.bodhost.com\/kb\/discover-steps-to-sync-two-apache-web-servers-using-rsync\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Apache Web server","item":"https:\/\/www.bodhost.com\/kb\/category\/apache-web-server\/"},{"@type":"ListItem","position":2,"name":"Discover Steps to Sync Two Apache Web Servers Using Rsync"}]},{"@type":"WebSite","@id":"https:\/\/www.bodhost.com\/kb\/#website","url":"https:\/\/www.bodhost.com\/kb\/","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","description":"","publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"alternateName":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.bodhost.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.bodhost.com\/kb\/#organization","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","url":"https:\/\/www.bodhost.com\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","contentUrl":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","width":240,"height":240,"caption":"Web Hosting Knowledge Base | bodHOST Hosting FAQ"},"image":{"@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/8871ea0c76482a5a482e48538ae4dbb3","name":"anilr","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/11307531bf21385b7c7046df25e96e38f4530ef77506385bb9d9c72798e5b284?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/11307531bf21385b7c7046df25e96e38f4530ef77506385bb9d9c72798e5b284?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/11307531bf21385b7c7046df25e96e38f4530ef77506385bb9d9c72798e5b284?s=96&d=mm&r=g","caption":"anilr"},"url":"https:\/\/www.bodhost.com\/kb\/author\/anilr\/"}]}},"_links":{"self":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/5416","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/users\/15"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/comments?post=5416"}],"version-history":[{"count":54,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/5416\/revisions"}],"predecessor-version":[{"id":12119,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/5416\/revisions\/12119"}],"wp:attachment":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/media?parent=5416"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/categories?post=5416"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/tags?post=5416"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}