{"id":622,"date":"2016-06-20T15:37:09","date_gmt":"2016-06-20T10:07:09","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=622"},"modified":"2026-08-01T15:09:50","modified_gmt":"2026-08-01T09:39:50","slug":"redismaster-and-slave-setup","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/redismaster-and-slave-setup\/","title":{"rendered":"RedisMaster and Slave Setup"},"content":{"rendered":"<h2 data-section-id=\"13ax1s5\" data-start=\"32\" data-end=\"47\">Introduction<\/h2>\n<p data-start=\"49\" data-end=\"361\">Redis replication allows data from a Redis master server to be replicated to one or more slave servers. This setup improves data availability, supports read scaling, and provides redundancy in case of server failures. This guide explains how to install Redis and configure a master-slave replication environment.<\/p>\n<h2 data-section-id=\"lkxh6o\" data-start=\"363\" data-end=\"379\">Prerequisites<\/h2>\n<ul data-start=\"381\" data-end=\"581\">\n<li data-section-id=\"152fk33\" data-start=\"381\" data-end=\"424\">Root or sudo access to both Redis servers<\/li>\n<li data-section-id=\"ftmpcf\" data-start=\"425\" data-end=\"463\">Two Linux servers (Master and Slave)<\/li>\n<li data-section-id=\"1fstudy\" data-start=\"464\" data-end=\"506\">Network connectivity between the servers<\/li>\n<li data-section-id=\"1wf6ipb\" data-start=\"507\" data-end=\"540\">GCC and Make packages installed<\/li>\n<li data-section-id=\"5v7o5n\" data-start=\"541\" data-end=\"581\">Port <strong data-start=\"548\" data-end=\"556\">6379<\/strong> open between the servers<\/li>\n<\/ul>\n<h2 data-section-id=\"h2ad7b\" data-start=\"583\" data-end=\"600\">Implementation<\/h2>\n<h2><b>1. Install Linux dependencies GCC and Make(On Redis Server)<\/b><\/h2>\n<pre>sudo yum -y install gcc make<\/pre>\n<p>\u00a0<\/p>\n<h2><a name=\"TOC-2.-Download-Untar-and-Make-Redis-3.0\"><\/a><b>2. Download, Untar and Make Redis 3.0<br \/><\/b><\/h2>\n<pre>wget http:\/\/&lt;Download the latest file from the redis official site&gt;\ntar xzf redis-3.3.0-rc3.tar.gz\ncd redis-3.0.0-rc3\nmake<\/pre>\n<p>\u00a0<\/p>\n<h2><a name=\"TOC-3.-Create-Directories-and-Copy-Redis-Files\"><\/a><b>3.\u00a0Create Directories and Copy Redis Files<\/b><\/h2>\n<pre>sudo mkdir \/etc\/redis \/var\/lib\/redis\nsudo cp src\/redis-server src\/redis-cli \/usr\/local\/bin\nsudo cp redis.conf \/etc\/redis<\/pre>\n<p>\u00a0<\/p>\n<h2><a name=\"TOC-4.-Configure-Redis.Conf-Use-any-editor-\"><\/a><b>4. Configure Redis.Conf (Use any editor)<br \/><\/b><\/h2>\n<pre>sudo vim \/etc\/redis\/redis.conf<\/pre>\n<p>daemonize yes<br \/>bind\u00a0 0.0.0.0<br \/>dir \/var\/lib\/redis<br \/>pidfile \/var\/run\/redis.pid<br \/>port 6379<br \/>dir \/var\/lib\/redis<br \/>logfile &#8220;\/var\/log\/redis.log&#8221;<\/p>\n<h2><a name=\"TOC-5.-Download-init-Script\"><\/a><b>5. Download init Script<\/b><\/h2>\n<pre>wget <\/pre>\n<p><a href=\"https:\/\/www.google.com\/url?q=https%3A%2F%2Fraw.github.com%2Fsaxenap%2Finstall-redis-amazon-linux-centos%2Fmaster%2Fredis-server&amp;sa=D&amp;sntz=1&amp;usg=AFrqEzcPF5GGu-ypIvEXAx1OXAKEP-_m4g\">https:\/\/raw.github.com\/saxenap\/install-redis-amazon-linux-centos\/master\/redis-server<\/a><\/p>\n<p>\u00a0<\/p>\n<h2><a name=\"TOC-6.-Move-and-Configure-Redis-Server\"><\/a><b>6. Move and Configure Redis-Server<\/b><\/h2>\n<p>Note: The redis-server to be moved below is the one downloaded in 5 above.<\/p>\n<pre>sudo mv redis-server \/etc\/init.d\nsudo chmod 755 \/etc\/init.d\/redis-server\nsudo nano \/etc\/init.d\/redis-server<\/pre>\n<pre>redis=\"\/usr\/local\/bin\/redis-server\"<\/pre>\n<p>\u00a0<\/p>\n<h2><a name=\"TOC-7.-Auto-Enable-Redis-Server\"><\/a><b>7. Auto-Enable Redis-Server<\/b><\/h2>\n<pre>sudo chkconfig --add redis-server\nsudo chkconfig --level 345 redis-server on<\/pre>\n<p>\u00a0<\/p>\n<h2><a name=\"TOC-8.-Start-Redis-Server\"><\/a><b>8. Start Redis Server<\/b><\/h2>\n<pre>sudo service redis-server start\n\n\n<\/pre>\n<h2><a name=\"TOC-9.-On-Redis-Slave-Server-\"><\/a><b>9. (On Redis Slave Server)<\/b><\/h2>\n<pre>Follow the steps from 1 to 6 except step 4, for the step 4 use any editor(vim)\nand specify the settings under the \/etc\/redis\/redis.conf file -\ndaemonize yes\nslaveof &lt;hostname or IPaddress&gt; 6379\npidfile \/var\/run\/redis.pid\nport 6379\n\n\n<\/pre>\n<h2><a name=\"TOC-10.-Auto-Enable-Redis-Server\"><\/a><b>10. Auto-Enable Redis-Server<\/b><\/h2>\n<pre>sudo chkconfig --add redi-server &amp;&amp; sudo chkconfig --level 345 redis-server on<\/pre>\n<p>\u00a0<\/p>\n<h2><a name=\"TOC-11.-Start-Redis-Server\"><\/a><b>11. Start Redis Server<\/b><\/h2>\n<pre>sudo service redis-server start<\/pre>\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Configuring Redis in a master-slave setup provides data replication between servers, improving availability and supporting read scalability. After configuring both the master and slave servers, verify that replication is functioning correctly to ensure data is synchronized across the Redis environment.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Redis replication allows data from a Redis master server to be replicated to one or more slave servers. This setup improves data availability, supports read scaling, and provides redundancy in case of server failures. This guide explains how to install Redis and configure a master-slave replication environment. Prerequisites Root&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/redismaster-and-slave-setup\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">RedisMaster and Slave Setup<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[1],"tags":[],"class_list":{"0":"post-622","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/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:\/\/pheonixsolutions.com\/blog\/redismaster-and-slave-setup\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction Redis replication allows data from a Redis master server to be replicated to one or more slave servers. This setup improves data availability, supports read scaling, and provides redundancy in case of server failures. This guide explains how to install Redis and configure a master-slave replication environment. Prerequisites Root&hellip; Continue Reading RedisMaster and Slave Setup\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/redismaster-and-slave-setup\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-06-20T10:07:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-01T09:39:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/redismaster-and-slave-setup\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/redismaster-and-slave-setup\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"RedisMaster and Slave Setup\",\"datePublished\":\"2016-06-20T10:07:09+00:00\",\"dateModified\":\"2026-08-01T09:39:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/redismaster-and-slave-setup\\\/\"},\"wordCount\":210,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/redismaster-and-slave-setup\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/redismaster-and-slave-setup\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/redismaster-and-slave-setup\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2016-06-20T10:07:09+00:00\",\"dateModified\":\"2026-08-01T09:39:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/redismaster-and-slave-setup\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/redismaster-and-slave-setup\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/redismaster-and-slave-setup\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"RedisMaster and Slave Setup\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/pheonixsolutions.com\\\/blog\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/redismaster-and-slave-setup\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction Redis replication allows data from a Redis master server to be replicated to one or more slave servers. This setup improves data availability, supports read scaling, and provides redundancy in case of server failures. This guide explains how to install Redis and configure a master-slave replication environment. Prerequisites Root&hellip; Continue Reading RedisMaster and Slave Setup","og_url":"https:\/\/pheonixsolutions.com\/blog\/redismaster-and-slave-setup\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2016-06-20T10:07:09+00:00","article_modified_time":"2026-08-01T09:39:50+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/redismaster-and-slave-setup\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/redismaster-and-slave-setup\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"RedisMaster and Slave Setup","datePublished":"2016-06-20T10:07:09+00:00","dateModified":"2026-08-01T09:39:50+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/redismaster-and-slave-setup\/"},"wordCount":210,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/redismaster-and-slave-setup\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/redismaster-and-slave-setup\/","url":"https:\/\/pheonixsolutions.com\/blog\/redismaster-and-slave-setup\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2016-06-20T10:07:09+00:00","dateModified":"2026-08-01T09:39:50+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/redismaster-and-slave-setup\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/redismaster-and-slave-setup\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/redismaster-and-slave-setup\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"RedisMaster and Slave Setup"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/pheonixsolutions.com\/blog"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-a2","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/622","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=622"}],"version-history":[{"count":1,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/622\/revisions"}],"predecessor-version":[{"id":10640,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/622\/revisions\/10640"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=622"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=622"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=622"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}