{"id":14487,"date":"2014-07-01T14:39:49","date_gmt":"2014-07-01T09:09:49","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=14487"},"modified":"2014-12-17T09:03:33","modified_gmt":"2014-12-17T03:33:33","slug":"install-lamp-stack-using-cloud-formation","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/","title":{"rendered":"Install LAMP Stack Using Cloud Formation"},"content":{"rendered":"<div style=\"color: #000000\">AWS\u00a0Cloud formation\u00a0\u00a0is a service used to create and manage a collection of other AWS services. This service is used to automate the infrastructure setup and deployment.<\/p>\n<p>In this article, we will be launching a LAMP Stack Instance using\u00a0Cloud Formation. For this we are using\u00a0Ubuntu Server 14.04 LTS (PV)\u00a0&#8211; <span>ami-9a7724c8<\/span> (64-bit)<\/div>\n<div style=\"color: #000000\">\n<span><strong><\/p>\n<h3 style=\"text-align: justify;color: #ff9900\">Steps to Launch:<\/h3>\n<p><\/strong><\/span><br \/>\n1) Create a .json file<br \/>\n2) Open AWS Console<br \/>\n3) Browse to Cloudformation, CREATE STACK and upload the .json file<\/div>\n<div style=\"color: #000000\">\n<strong><\/p>\n<h3 style=\"text-align: justify;color: #ff9900\">Create a .json file<\/h3>\n<p><\/strong>\n<\/div>\n<div>[js]<br \/>\n{<br \/>\n &quot;Resources&quot; :<br \/>\n    {<br \/>\n    &quot;WebServer&quot;:{<\/p>\n<p>      &quot;Type&quot;: &quot;AWS::EC2::Instance&quot;,<br \/>\n         &quot;Properties&quot;:{<br \/>\n         &quot;ImageId&quot; : &quot;ami-9a7724c8&quot;,<br \/>\n         &quot;KeyName&quot; : &quot;demo&quot;,<br \/>\n         &quot;InstanceType&quot;:&quot;t1.micro&quot;,<br \/>\n         &quot;SecurityGroups&quot; : [ &quot;demo&quot; ],<br \/>\n         &quot;UserData&quot; : {&quot;Fn::Base64&quot; : {&quot;Fn::Join&quot; : [&quot;&quot;, [<br \/>\n           &quot;#!\/bin\/bash\\n&quot;,<br \/>\n           &quot;# Launching Instance&quot;,<br \/>\n           &quot;apt-get -y install apache2 \\n&quot;,<br \/>\n           &quot;apt-get -y install mysql \\n&quot;,<br \/>\n           &quot;apt-get -y install mysql-server \\n&quot;,<br \/>\n           &quot;apt-get -y install php php5-mysql \\n&quot;<br \/>\n            ] ] } }<br \/>\n        }<br \/>\n    }<br \/>\n },<br \/>\n &quot;Outputs&quot;:{<br \/>\n    &quot;WebsiteURL&quot; : {<br \/>\n      &quot;Value&quot; : { &quot;Fn::Join&quot; : [&quot;&quot;, [&quot;http:\/\/&quot;, { &quot;Fn::GetAtt&quot; : [        &quot;WebServer&quot;, &quot;PublicDnsName&quot; ]}]] },<br \/>\n        &quot;Description&quot; : &quot;URL for newly created LAMP stack&quot;<br \/>\n   }<br \/>\n }<br \/>\n}<br \/>\n[\/js]\n<\/p><\/div>\n<p>[js] **Note: Keyname and Security groups must exists on your account [\/js]<\/p>\n<div><strong><span><\/p>\n<h3 style=\"text-align: justify;color: #ff9900\">Open AWS Console &gt; Browse to Cloud Formation &gt;Create Stack<\/h3>\n<p><\/span><\/p>\n<p><a href=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation2.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-14492\" src=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation2.png\" alt=\"cloudformation2\" width=\"460\" height=\"151\" \/><\/a><\/strong><\/div>\n<div><\/div>\n<div>Once you click <strong style=\"color:#ff9900\">Create Stack<\/strong> button, it will ask for the <strong>Stack Name<\/strong> and the <strong>.json<\/strong> file.<\/p>\n<p><a href=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation3.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-14493\" src=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation3.png\" alt=\"cloudformation3\" width=\"854\" height=\"596\" \/><\/a><\/div>\n<div><\/div>\n<div>Upload the <span><strong style=\"color:#ff9900\">.json<\/strong><\/span> file and Follow the wizard. The next wizard ask you to enter the Key Value name for the Instance:<\/p>\n<p><a href=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudfomration4.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-14497\" src=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudfomration4.png\" alt=\"cloudfomration4\" width=\"1067\" height=\"398\" \/><\/a><\/p>\n<\/div>\n<div>Click\u00a0the <span style=\"color:#ff9900\">Next Button<\/span> and the launch the stack. Once you launch the stack, you will get the following screen with launching process events.<\/p>\n<p><a href=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation6.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-14498\" src=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation6.png\" alt=\"cloudformation6\" width=\"734\" height=\"416\" \/><\/a><\/p>\n<p>If everything goes well, you will get the the <span style=\"color:#ff9900\">CREATE_COMPLETE<\/span> message in the Status Tab. If any error occurs then a <span style=\"color:#ff9900\">ROLLBACK<\/span> event is invoked which will delete the stack.<\/p>\n<p>Since we got the <span style=\"color:#ff9900\">CREATE_COMPLETE<\/span> message with a output parameter that we have defined in our json which returns the public DNS name of the Instance.<\/p>\n<p><a href=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation7.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-14499\" src=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation7.png\" alt=\"cloudformation7\" width=\"1088\" height=\"432\" \/><\/a><\/div>\n<div><\/div>\n<div><span style=\"color:#ff9900\">By Clicking on the output\u00a0URL, it takes us to the apache default page: <\/span><\/p>\n<p><a href=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation12.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-14500\" src=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation12.png\" alt=\"cloudformation12\" width=\"959\" height=\"589\" \/><\/a><\/div>\n<div><\/div>\n<div>We can check the Console to see our running Instances:<\/p>\n<p><a href=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation10.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-14501\" src=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation10.png\" alt=\"cloudformation10\" width=\"1098\" height=\"187\" \/><\/p>\n<p><\/a>We can see the <span style=\"color:#ff9900\">Public DNS<\/span> is same.<\/p>\n<p>To Terminate this Instance we can delete the stack from the Cloud Formation Wizard. Deleting the stack will terminate all the instances launched by that stack.<\/p>\n<p><a href=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation11.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-14502\" src=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation11.png\" alt=\"cloudformation11\" width=\"668\" height=\"187\" \/><\/a><\/p>\n<p><a href=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation13.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-14503\" src=\"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation13.png\" alt=\"cloudformation13\" width=\"1090\" height=\"152\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>AWS\u00a0Cloud formation\u00a0\u00a0is a service used to create and manage a collection of other AWS services. This service is used to automate the infrastructure setup and deployment. In this article, we will be launching a LAMP Stack Instance using\u00a0Cloud Formation. For this we are using\u00a0Ubuntu Server 14.04 LTS (PV)\u00a0&#8211; ami-9a7724c8 (64-bit) Steps to Launch: 1) Create [&hellip;]<\/p>\n","protected":false},"author":100,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":12,"footnotes":""},"categories":[1174],"tags":[1464,49],"class_list":["post-14487","post","type-post","status-publish","format-standard","hentry","category-aws-2","tag-cloud-formation","tag-json"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"AWS Cloud formation is a service used to create and manage a collection of other AWS services. This service is used to automate the infrastructure setup and deployment. In this article, we will be launching a LAMP Stack Instance using Cloud Formation. For this we are using Ubuntu Server 14.04 LTS (PV) - ami-9a7724c8 (64-bit) Steps to Launch: 1) Create\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Vikash Jha\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Install LAMP Stack Using Cloud Formation | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"AWS Cloud formation is a service used to create and manage a collection of other AWS services. This service is used to automate the infrastructure setup and deployment. In this article, we will be launching a LAMP Stack Instance using Cloud Formation. For this we are using Ubuntu Server 14.04 LTS (PV) - ami-9a7724c8 (64-bit) Steps to Launch: 1) Create\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Install LAMP Stack Using Cloud Formation | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"AWS Cloud formation is a service used to create and manage a collection of other AWS services. This service is used to automate the infrastructure setup and deployment. In this article, we will be launching a LAMP Stack Instance using Cloud Formation. For this we are using Ubuntu Server 14.04 LTS (PV) - ami-9a7724c8 (64-bit) Steps to Launch: 1) Create\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/install-lamp-stack-using-cloud-formation\\\/#article\",\"name\":\"Install LAMP Stack Using Cloud Formation | TO THE NEW Blog\",\"headline\":\"Install LAMP Stack Using Cloud Formation\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2014\\\/07\\\/cloudformation2.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/install-lamp-stack-using-cloud-formation\\\/#articleImage\"},\"datePublished\":\"2014-07-01T14:39:49+05:30\",\"dateModified\":\"2014-12-17T09:03:33+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/install-lamp-stack-using-cloud-formation\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/install-lamp-stack-using-cloud-formation\\\/#webpage\"},\"articleSection\":\"AWS, Cloud Formation, JSON\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/install-lamp-stack-using-cloud-formation\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/#listItem\",\"name\":\"AWS\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/#listItem\",\"position\":2,\"name\":\"AWS\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/install-lamp-stack-using-cloud-formation\\\/#listItem\",\"name\":\"Install LAMP Stack Using Cloud Formation\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/install-lamp-stack-using-cloud-formation\\\/#listItem\",\"position\":3,\"name\":\"Install LAMP Stack Using Cloud Formation\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/#listItem\",\"name\":\"AWS\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/\",\"name\":\"Vikash Jha\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/install-lamp-stack-using-cloud-formation\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fa67f119919550cc9af23ac9542eb0ef48d4e69a6ad310fb29f55390d4662b36?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Vikash Jha\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/install-lamp-stack-using-cloud-formation\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/install-lamp-stack-using-cloud-formation\\\/\",\"name\":\"Install LAMP Stack Using Cloud Formation | TO THE NEW Blog\",\"description\":\"AWS Cloud formation is a service used to create and manage a collection of other AWS services. This service is used to automate the infrastructure setup and deployment. In this article, we will be launching a LAMP Stack Instance using Cloud Formation. For this we are using Ubuntu Server 14.04 LTS (PV) - ami-9a7724c8 (64-bit) Steps to Launch: 1) Create\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/install-lamp-stack-using-cloud-formation\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vikash-jha\\\/#author\"},\"datePublished\":\"2014-07-01T14:39:49+05:30\",\"dateModified\":\"2014-12-17T09:03:33+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Install LAMP Stack Using Cloud Formation | TO THE NEW Blog","description":"AWS Cloud formation is a service used to create and manage a collection of other AWS services. This service is used to automate the infrastructure setup and deployment. In this article, we will be launching a LAMP Stack Instance using Cloud Formation. For this we are using Ubuntu Server 14.04 LTS (PV) - ami-9a7724c8 (64-bit) Steps to Launch: 1) Create","canonical_url":"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/#article","name":"Install LAMP Stack Using Cloud Formation | TO THE NEW Blog","headline":"Install LAMP Stack Using Cloud Formation","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/vikash-jha\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2014\/07\/cloudformation2.png","@id":"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/#articleImage"},"datePublished":"2014-07-01T14:39:49+05:30","dateModified":"2014-12-17T09:03:33+05:30","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/#webpage"},"articleSection":"AWS, Cloud Formation, JSON"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/aws-2\/#listItem","name":"AWS"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/aws-2\/#listItem","position":2,"name":"AWS","item":"https:\/\/2thenew.xyz\/blog\/category\/aws-2\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/#listItem","name":"Install LAMP Stack Using Cloud Formation"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/#listItem","position":3,"name":"Install LAMP Stack Using Cloud Formation","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/aws-2\/#listItem","name":"AWS"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/vikash-jha\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/vikash-jha\/","name":"Vikash Jha","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/fa67f119919550cc9af23ac9542eb0ef48d4e69a6ad310fb29f55390d4662b36?s=96&d=mm&r=g","width":96,"height":96,"caption":"Vikash Jha"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/","name":"Install LAMP Stack Using Cloud Formation | TO THE NEW Blog","description":"AWS Cloud formation is a service used to create and manage a collection of other AWS services. This service is used to automate the infrastructure setup and deployment. In this article, we will be launching a LAMP Stack Instance using Cloud Formation. For this we are using Ubuntu Server 14.04 LTS (PV) - ami-9a7724c8 (64-bit) Steps to Launch: 1) Create","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/vikash-jha\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/vikash-jha\/#author"},"datePublished":"2014-07-01T14:39:49+05:30","dateModified":"2014-12-17T09:03:33+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Install LAMP Stack Using Cloud Formation | TO THE NEW Blog","og:description":"AWS Cloud formation is a service used to create and manage a collection of other AWS services. This service is used to automate the infrastructure setup and deployment. In this article, we will be launching a LAMP Stack Instance using Cloud Formation. For this we are using Ubuntu Server 14.04 LTS (PV) - ami-9a7724c8 (64-bit) Steps to Launch: 1) Create","og:url":"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Install LAMP Stack Using Cloud Formation | TO THE NEW Blog","twitter:description":"AWS Cloud formation is a service used to create and manage a collection of other AWS services. This service is used to automate the infrastructure setup and deployment. In this article, we will be launching a LAMP Stack Instance using Cloud Formation. For this we are using Ubuntu Server 14.04 LTS (PV) - ami-9a7724c8 (64-bit) Steps to Launch: 1) Create","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"14487","title":null,"description":null,"keywords":null,"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":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"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":"2021-04-29 15:29:28","updated":"2024-02-29 09:26:53","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"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:\/\/2thenew.xyz\/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:\/\/2thenew.xyz\/blog\/category\/aws-2\/\" title=\"AWS\">AWS<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tInstall LAMP Stack Using Cloud Formation\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"AWS","link":"https:\/\/2thenew.xyz\/blog\/category\/aws-2\/"},{"label":"Install LAMP Stack Using Cloud Formation","link":"https:\/\/2thenew.xyz\/blog\/install-lamp-stack-using-cloud-formation\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/14487","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/100"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=14487"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/14487\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=14487"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=14487"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=14487"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}