{"id":221,"date":"2010-03-20T03:58:37","date_gmt":"2010-03-20T08:58:37","guid":{"rendered":"http:\/\/www.migrate2cloud.com\/blog\/?p=221"},"modified":"2016-03-21T02:53:33","modified_gmt":"2016-03-21T07:53:33","slug":"how-to-configure-memcached-on-aws-ec2-a-starters-guide","status":"publish","type":"post","link":"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/","title":{"rendered":"How to configure Memcached on AWS EC2: A Starter&#8217;s Guide"},"content":{"rendered":"<p>Memached is a high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load and session management. Lets focus on session management first and build up a caching daemon to store PHP sessions in a load balanced environment.\u00a0<strong> In this post I will explain how you can easily install it and make it available in LAMP<\/strong>.<!--more--><\/p>\n<p>If you have a cluster of multiple instances(web servers) behind a load balancer , for example, Elastic Load Balancer (ELB) without sticky sessions, persistent PHP session storage will definitely be a matter of concern. You won&#8217;t be able to store sessions across multiple instances. In these situations, you usually save the user sessions in a fast storage ( RAM ) , where all your servers can access, and which is usually memcached. So lets start with the installation.<\/p>\n<p>Activate the RPMForge custom repository <a href=\"http:\/\/dag.wieers.com\/rpm\/packages\/rpmforge-release\/\">http:\/\/dag.wieers.com\/rpm\/packages\/rpmforge-release\/<\/a><\/p>\n<p>Download your specific RPM and install it:<\/p>\n<p>[bash]<br \/>\nwget http:\/\/dag.wieers.com\/rpm\/packages\/rpmforge-release\/rpmforge-release-*.rpm<br \/>\nrpm &#8211;install rpmforge-release-*.rpm<br \/>\nyum install &#8211;enablerepo=rpmforge memcached<br \/>\n[\/bash]<\/p>\n<p>Now memcached is installed.<\/p>\n<p>You can test it:<\/p>\n<p>[bash]<br \/>\nmemcached -d -m 2048 -l 10.0.0.40 -p 11211 -u nobody<br \/>\n[\/bash]<\/p>\n<p>This starts memcached up as a daemon, using 2GB of memory, and listening on IP 10.0.0.40, port 11211. The -m switch specifies the amount of memory in megabytes. The -l switch specifies the IP to listen on and finally the -p switch specifies the port to listen on.<\/p>\n<p><strong>Install PHP Memcache extension<\/strong><\/p>\n<p>[bash]<br \/>\nwget http:\/\/pecl.php.net\/get\/memcache-2.2.5.tgz<br \/>\ntar -xvf memcache-2.2.5.tgz<br \/>\ncd memcache-2.2.5<br \/>\nphpize<br \/>\n.\/configure &#8211;enable-memcache<br \/>\nmake<br \/>\nmake install<br \/>\n[\/bash]<\/p>\n<p>Copy the file memcache.so to the default module directory.<\/p>\n<p>In my case it was \/usr\/lib\/php\/modules.<\/p>\n<p># vi \/etc\/php.ini ( your php configuration file )<\/p>\n<p><strong>Add<\/strong><\/p>\n<p>[bash]<br \/>\nextension=memcache.so<br \/>\n[\/bash]<\/p>\n<p>This should do !<\/p>\n<p>Now restart your web server<\/p>\n<p>[bash]\/etc\/init.d\/httpd restart[\/bash]<\/p>\n<p>If you check your phpinfo() you should see a MemCache section appear.<br \/>\nYou can now fully use the MemCache functionality in your PHP.<\/p>\n<p>Now set the <strong>session.save_handler<\/strong> as memcache<\/p>\n<p>[bash]session.save_handler = memcache[\/bash]<\/p>\n<p>Then set the <strong>session.save_ path<\/strong>. Mention all the server ip&#8217;s that you want to share the sessions using memcached.<\/p>\n<p>[bash]session.save_path = &#8220;tcp:\/\/127.0.0.1:11211 , tcp:\/\/192.168.1.1:11211&#8221; [\/bash]<\/p>\n<p>Also make sure that you give the path of the memcached server in the php.ini of the client servers.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you have a cluster of multiple instances(web servers) behind a load balancer , say Elastic Load Balancer (ELB)  without sticky sessions, persistent PHP session storage will  definitely be a matter of concern. You won&#8217;t be able to store sessions across multiple instances. In these situations, you usually save the user sessions in a fast storage ( RAM ) , where all your servers can access, and  which is usually memcached. So lets start with the installation.<\/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":[3],"tags":[4,20,123,141,623,127,133,622,6,245,251,44,24,232,134,619,608,618,620,25,204,621],"class_list":["post-221","post","type-post","status-publish","format-standard","hentry","category-cloud-computing","tag-amazon","tag-aws","tag-cache","tag-caching","tag-caching-system","tag-cloud-computing","tag-cross-platform-software","tag-dynamic-web-applications","tag-ec2","tag-hypertext-transfer-protocol","tag-lamp","tag-load-balancing","tag-memcached","tag-network-management","tag-php","tag-resin","tag-routing","tag-session","tag-session-management","tag-tutorial","tag-web-server","tag-web-servers"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"If you have a cluster of multiple instances(web servers) behind a load balancer , say Elastic Load Balancer (ELB) without sticky sessions, persistent PHP session storage will definitely be a matter of concern.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"DevOps Team\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Migrate to Cloud - we make the clouds rain\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to configure Memcached on AWS EC2: A Starter\u2019s Guide - Migrate to Cloud\" \/>\n\t\t<meta property=\"og:description\" content=\"If you have a cluster of multiple instances(web servers) behind a load balancer , say Elastic Load Balancer (ELB) without sticky sessions, persistent PHP session storage will definitely be a matter of concern.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2010-03-20T08:58:37+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2016-03-21T07:53:33+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to configure Memcached on AWS EC2: A Starter\u2019s Guide - Migrate to Cloud\" \/>\n\t\t<meta name=\"twitter:description\" content=\"If you have a cluster of multiple instances(web servers) behind a load balancer , say Elastic Load Balancer (ELB) without sticky sessions, persistent PHP session storage will definitely be a matter of concern.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\\\/#blogposting\",\"name\":\"How to configure Memcached on AWS EC2: A Starter\\u2019s Guide - Migrate to Cloud\",\"headline\":\"How to configure Memcached on AWS EC2: A Starter&#8217;s Guide\",\"author\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#organization\"},\"datePublished\":\"2010-03-20T03:58:37-05:00\",\"dateModified\":\"2016-03-21T02:53:33-05:00\",\"inLanguage\":\"en-US\",\"commentCount\":4,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\\\/#webpage\"},\"articleSection\":\"Cloud computing, amazon, aws, cache, caching, caching system, Cloud computing, Cross-platform software, dynamic web applications, EC2, Hypertext Transfer Protocol, LAMP, load balancing, memcached, Network management, PHP, Resin, Routing, Session, session management, tutorial, web server, web servers\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/#listItem\",\"name\":\"Cloud computing\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/#listItem\",\"position\":2,\"name\":\"Cloud computing\",\"item\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\\\/#listItem\",\"name\":\"How to configure Memcached on AWS EC2: A Starter&#8217;s Guide\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\\\/#listItem\",\"position\":3,\"name\":\"How to configure Memcached on AWS EC2: A Starter&#8217;s Guide\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/#listItem\",\"name\":\"Cloud computing\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#organization\",\"name\":\"Migrate to Cloud\",\"description\":\"we make the clouds rain\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/admin\\\/#author\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/admin\\\/\",\"name\":\"DevOps Team\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/20b51e018d8f61e1739f60911fcf45cc9d09284569e448583a87f7fd0ac3d9dc?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"DevOps Team\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\\\/#webpage\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\\\/\",\"name\":\"How to configure Memcached on AWS EC2: A Starter\\u2019s Guide - Migrate to Cloud\",\"description\":\"If you have a cluster of multiple instances(web servers) behind a load balancer , say Elastic Load Balancer (ELB) without sticky sessions, persistent PHP session storage will definitely be a matter of concern.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/admin\\\/#author\"},\"datePublished\":\"2010-03-20T03:58:37-05:00\",\"dateModified\":\"2016-03-21T02:53:33-05:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/\",\"name\":\"Migrate to Cloud\",\"description\":\"we make the clouds rain\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to configure Memcached on AWS EC2: A Starter\u2019s Guide - Migrate to Cloud","description":"If you have a cluster of multiple instances(web servers) behind a load balancer , say Elastic Load Balancer (ELB) without sticky sessions, persistent PHP session storage will definitely be a matter of concern.","canonical_url":"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/#blogposting","name":"How to configure Memcached on AWS EC2: A Starter\u2019s Guide - Migrate to Cloud","headline":"How to configure Memcached on AWS EC2: A Starter&#8217;s Guide","author":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/admin\/#author"},"publisher":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/#organization"},"datePublished":"2010-03-20T03:58:37-05:00","dateModified":"2016-03-21T02:53:33-05:00","inLanguage":"en-US","commentCount":4,"mainEntityOfPage":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/#webpage"},"isPartOf":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/#webpage"},"articleSection":"Cloud computing, amazon, aws, cache, caching, caching system, Cloud computing, Cross-platform software, dynamic web applications, EC2, Hypertext Transfer Protocol, LAMP, load balancing, memcached, Network management, PHP, Resin, Routing, Session, session management, tutorial, web server, web servers"},{"@type":"BreadcrumbList","@id":"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.migrate2cloud.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/#listItem","name":"Cloud computing"}},{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/#listItem","position":2,"name":"Cloud computing","item":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/#listItem","name":"How to configure Memcached on AWS EC2: A Starter&#8217;s Guide"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/#listItem","position":3,"name":"How to configure Memcached on AWS EC2: A Starter&#8217;s Guide","previousItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/#listItem","name":"Cloud computing"}}]},{"@type":"Organization","@id":"https:\/\/www.migrate2cloud.com\/blog\/#organization","name":"Migrate to Cloud","description":"we make the clouds rain","url":"https:\/\/www.migrate2cloud.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/admin\/#author","url":"https:\/\/www.migrate2cloud.com\/blog\/author\/admin\/","name":"DevOps Team","image":{"@type":"ImageObject","@id":"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/20b51e018d8f61e1739f60911fcf45cc9d09284569e448583a87f7fd0ac3d9dc?s=96&d=mm&r=g","width":96,"height":96,"caption":"DevOps Team"}},{"@type":"WebPage","@id":"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/#webpage","url":"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/","name":"How to configure Memcached on AWS EC2: A Starter\u2019s Guide - Migrate to Cloud","description":"If you have a cluster of multiple instances(web servers) behind a load balancer , say Elastic Load Balancer (ELB) without sticky sessions, persistent PHP session storage will definitely be a matter of concern.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/#breadcrumblist"},"author":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/admin\/#author"},"creator":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/admin\/#author"},"datePublished":"2010-03-20T03:58:37-05:00","dateModified":"2016-03-21T02:53:33-05:00"},{"@type":"WebSite","@id":"https:\/\/www.migrate2cloud.com\/blog\/#website","url":"https:\/\/www.migrate2cloud.com\/blog\/","name":"Migrate to Cloud","description":"we make the clouds rain","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Migrate to Cloud - we make the clouds rain","og:type":"article","og:title":"How to configure Memcached on AWS EC2: A Starter\u2019s Guide - Migrate to Cloud","og:description":"If you have a cluster of multiple instances(web servers) behind a load balancer , say Elastic Load Balancer (ELB) without sticky sessions, persistent PHP session storage will definitely be a matter of concern.","og:url":"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/","article:published_time":"2010-03-20T08:58:37+00:00","article:modified_time":"2016-03-21T07:53:33+00:00","twitter:card":"summary_large_image","twitter:title":"How to configure Memcached on AWS EC2: A Starter\u2019s Guide - Migrate to Cloud","twitter:description":"If you have a cluster of multiple instances(web servers) behind a load balancer , say Elastic Load Balancer (ELB) without sticky sessions, persistent PHP session storage will definitely be a matter of concern."},"aioseo_meta_data":{"post_id":"221","title":"","description":"If you have a cluster of multiple instances(web servers) behind a load balancer , say Elastic Load Balancer (ELB)  without sticky sessions, persistent PHP session storage will  definitely be a matter of concern.","keywords":[{"label":"ELB","value":"ELB"},{"label":"AWS","value":"AWS"},{"label":"PHP","value":"PHP"},{"label":"Memcache","value":"Memcache"},{"label":"EC2","value":"EC2"},{"label":"Sessions","value":"Sessions"},{"label":"Cloud computing","value":"Cloud computing"}],"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2022-12-27 09:14:38","updated":"2026-07-21 15:27:07","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.migrate2cloud.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/\" title=\"Cloud computing\">Cloud computing<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to configure Memcached on AWS EC2: A Starter\u2019s Guide\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.migrate2cloud.com\/blog"},{"label":"Cloud computing","link":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/"},{"label":"How to configure Memcached on AWS EC2: A Starter&#8217;s Guide","link":"https:\/\/www.migrate2cloud.com\/blog\/how-to-configure-memcached-on-aws-ec2-a-starters-guide\/"}],"jetpack_featured_media_url":"","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts\/221","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/comments?post=221"}],"version-history":[{"count":39,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts\/221\/revisions"}],"predecessor-version":[{"id":2174,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts\/221\/revisions\/2174"}],"wp:attachment":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/media?parent=221"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/categories?post=221"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/tags?post=221"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}