{"id":188,"date":"2020-02-06T17:33:58","date_gmt":"2020-02-06T13:33:58","guid":{"rendered":"https:\/\/www.buildingtheitguy.com\/\/?p=188"},"modified":"2020-04-05T08:57:19","modified_gmt":"2020-04-05T04:57:19","slug":"how-to-config-lamp-stack-on-ubuntu-server-part-2","status":"publish","type":"post","link":"https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/uncategorized\/","title":{"rendered":"How to Config LAMP STACK on Ubuntu Server \u2013 Part 2"},"content":{"rendered":"\n<p>I believe that you now installed your Ubuntu Server, lets start install LAMP stack and configure MySQL database with Apache Web Server.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get update [Downloads the package lists from the repositories]\nsudo apt-get upgrade [Fetch new versions of packages and upgrades]<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img fetchpriority=\"high\" decoding=\"async\" width=\"648\" height=\"330\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/1-1.jpg\" alt=\"\" class=\"wp-image-189\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get install tasksel\n[To install required task feature on Linux system] <\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"787\" height=\"517\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/2-1.jpg\" alt=\"\" class=\"wp-image-192\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>Select LAMP Server, Choose space button to select.<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"766\" height=\"618\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/3-1.jpg\" alt=\"\" class=\"wp-image-193\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>Once LAMP Stack installed Verify Apache is Running\n[sudo service apache2 status]<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"713\" height=\"271\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/4-1.jpg\" alt=\"\" class=\"wp-image-194\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>It means your Apache web server is running properly.\nNow lets start to install WordPress.\ncd \/ [TO go back to direcoty]\nls   [To see the list of folders in directory]\nwe are in tmp directory by typing this command cd \/tmp<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"804\" height=\"225\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/6-1.jpg\" alt=\"\" class=\"wp-image-196\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>[wget https:\/\/wordpress.org\/latest.zip]\nDownload wordpress package to tmp folder and then unzip \nto unzip install this package first using this command\n[sudo apt-get install unzip]<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"938\" height=\"387\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/7-1.jpg\" alt=\"\" class=\"wp-image-197\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"828\" height=\"406\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/8-1.jpg\" alt=\"\" class=\"wp-image-198\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>Now you can find in tmp folder latest.zip and unzip it.<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"641\" height=\"118\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/9-1.jpg\" alt=\"\" class=\"wp-image-200\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>Now copy WordPress folder to \/var\/www\/html folder\nsudo cp -r wordpress \/var\/www\/html\/\ncd \/var\/www\/html\nls\nVerify the WordPress folder in \/var\/www\/html directory<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>Now configure database for your server.<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"783\" height=\"295\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/10-2.jpg\" alt=\"\" class=\"wp-image-204\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mysql\ncreate database myfirstdb;\ncreate user 'asath'@'localhost' identified by 'yourpass';\ngrant all privileges on myfirstdb.* to 'asath'@'localhost' identified by 'yourpass';\n\nflush privileges;\nexit<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"926\" height=\"197\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/11-1.jpg\" alt=\"\" class=\"wp-image-205\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>Now you have created database and lets configure PHP and WordPress.<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"853\" height=\"103\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/12-1.jpg\" alt=\"\" class=\"wp-image-208\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>Navigate to WordPress directory\ncd \/home\/u676584056\/domains\/buildingtheitguy.com\/public_html\/<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"894\" height=\"140\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/13-2.jpg\" alt=\"\" class=\"wp-image-209\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>Now copy wp-config-sample.php file with a name wp-config.php\nsudo cp wp-config-sample.php wp-config.php<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"698\" height=\"372\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/14-1.jpg\" alt=\"\" class=\"wp-image-210\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>Now edit wp-config.php file on editor and change DB_NAME,DB_USER,DB_PASSWORD\nwhich we created earlier.\nsudo nano wp-config.php<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1324\" height=\"116\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/15-1.jpg\" alt=\"\" class=\"wp-image-211\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>Now move to apache2 directory\ncd \/etc\/apache2\/\nls<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"822\" height=\"398\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/16.jpg\" alt=\"\" class=\"wp-image-212\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nan000-default.conf\n(change Document Root )\nDocumentRoot \/var\/www\/html\/wordpress<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"778\" height=\"93\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/17.jpg\" alt=\"\" class=\"wp-image-213\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>After edit back to one level on directory by [cd ..] and then\ncd sites-enabled\/<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"649\" height=\"97\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/18.jpg\" alt=\"\" class=\"wp-image-214\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>Now make sure your default page conf is enabled to reach your site.\nonce enabled restart your apache2 service and check the status.<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"994\" height=\"787\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/19.jpg\" alt=\"\" class=\"wp-image-215\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>Once you done, enter IP address of your server from another device,\nIt should reach to configure the WordPress.<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1174\" height=\"628\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/20.jpg\" alt=\"\" class=\"wp-image-216\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>Once you enter your information you can start to create page and change theme and create your post and blog.<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1678\" height=\"655\" src=\"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/21.jpg\" alt=\"\" class=\"wp-image-217\"\/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>Congratulations !!! You Create your first website. <\/code><\/pre>\n\n\n\n<p>I believe that, I take you to seashore and now you need to develop your skills for how to catch your fish. <\/p>\n\n\n\n<p>I recommend to practice this and built your site locally first on your PC, then do you want to create in real world server, ping me &#8211; I will share my cloud server with you.<\/p>\n\n\n\n<p>Please do share to students this post, who want to be a programmer.<\/p>\n\n\n\n<p>Here&#8217;s my cloud server if you want request me and I&#8217;m exited to share my knowledge. <em><strong><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/www.buildingtheitguy.com\/\/index.php\/freelab\/mr-o-lab\/\" target=\"_blank\">CLICK<\/a><\/strong><\/em><\/p>\n\n\n\n<p> <\/p>\n","protected":false},"excerpt":{"rendered":"<p>How to Config LAMP STACK on Ubuntu Server \u2013 Part 2<br \/>\nI believe that you now installed your Ubuntu Server, lets start install LAMP stack and configure MySQL database with Apache Web Server.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[28,29,30,27],"class_list":["post-188","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-apache","tag-lamp","tag-mysql","tag-ubuntu"],"featured_image_src":null,"author_info":{"display_name":"Mohamed Asath","author_link":"https:\/\/www.buildingtheitguy.com\/index.php\/author\/asathwebtieradmin\/"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Config LAMP STACK on Ubuntu Server \u2013 Part 2 - Building THE IT GUY<\/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:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Config LAMP STACK on Ubuntu Server \u2013 Part 2 - Building THE IT GUY\" \/>\n<meta property=\"og:description\" content=\"How to Config LAMP STACK on Ubuntu Server \u2013 Part 2 I believe that you now installed your Ubuntu Server, lets start install LAMP stack and configure MySQL database with Apache Web Server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/\" \/>\n<meta property=\"og:site_name\" content=\"Building THE IT GUY\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-06T13:33:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-04-05T04:57:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/aasath.com\/wp-content\/uploads\/2020\/02\/1-1.jpg\" \/>\n<meta name=\"author\" content=\"Mohamed Asath\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mohamed Asath\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/how-to-config-lamp-stack-on-ubuntu-server-part-2\\\/web-developer\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/how-to-config-lamp-stack-on-ubuntu-server-part-2\\\/web-developer\\\/\"},\"author\":{\"name\":\"Mohamed Asath\",\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/#\\\/schema\\\/person\\\/cce03fcda4c40ccf57ab3844ca707561\"},\"headline\":\"How to Config LAMP STACK on Ubuntu Server \u2013 Part 2\",\"datePublished\":\"2020-02-06T13:33:58+00:00\",\"dateModified\":\"2020-04-05T04:57:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/how-to-config-lamp-stack-on-ubuntu-server-part-2\\\/web-developer\\\/\"},\"wordCount\":118,\"commentCount\":3,\"image\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/how-to-config-lamp-stack-on-ubuntu-server-part-2\\\/web-developer\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/1-1.jpg\",\"keywords\":[\"apache\",\"lamp\",\"mysql\",\"ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/how-to-config-lamp-stack-on-ubuntu-server-part-2\\\/web-developer\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/how-to-config-lamp-stack-on-ubuntu-server-part-2\\\/web-developer\\\/\",\"url\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/how-to-config-lamp-stack-on-ubuntu-server-part-2\\\/web-developer\\\/\",\"name\":\"How to Config LAMP STACK on Ubuntu Server \u2013 Part 2 - Building THE IT GUY\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/how-to-config-lamp-stack-on-ubuntu-server-part-2\\\/web-developer\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/how-to-config-lamp-stack-on-ubuntu-server-part-2\\\/web-developer\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/1-1.jpg\",\"datePublished\":\"2020-02-06T13:33:58+00:00\",\"dateModified\":\"2020-04-05T04:57:19+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/#\\\/schema\\\/person\\\/cce03fcda4c40ccf57ab3844ca707561\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/how-to-config-lamp-stack-on-ubuntu-server-part-2\\\/web-developer\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/how-to-config-lamp-stack-on-ubuntu-server-part-2\\\/web-developer\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/how-to-config-lamp-stack-on-ubuntu-server-part-2\\\/web-developer\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/1-1.jpg\",\"contentUrl\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/1-1.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/how-to-config-lamp-stack-on-ubuntu-server-part-2\\\/web-developer\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Config LAMP STACK on Ubuntu Server \u2013 Part 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/#website\",\"url\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/\",\"name\":\"Building THE IT GUY\",\"description\":\"Making Everyone&#039;s Life Easier\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/#\\\/schema\\\/person\\\/cce03fcda4c40ccf57ab3844ca707561\",\"name\":\"Mohamed Asath\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab17cc6285a5051affe4181f53011c89cc055de9416bcc44b3e2771be318d870?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab17cc6285a5051affe4181f53011c89cc055de9416bcc44b3e2771be318d870?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab17cc6285a5051affe4181f53011c89cc055de9416bcc44b3e2771be318d870?s=96&r=g\",\"caption\":\"Mohamed Asath\"},\"description\":\"Turning IT Challenges into Opportunities\",\"sameAs\":[\"https:\\\/\\\/www.buildingtheitguy.com\"],\"url\":\"https:\\\/\\\/www.buildingtheitguy.com\\\/index.php\\\/author\\\/asathwebtieradmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Config LAMP STACK on Ubuntu Server \u2013 Part 2 - Building THE IT GUY","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.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/","og_locale":"en_US","og_type":"article","og_title":"How to Config LAMP STACK on Ubuntu Server \u2013 Part 2 - Building THE IT GUY","og_description":"How to Config LAMP STACK on Ubuntu Server \u2013 Part 2 I believe that you now installed your Ubuntu Server, lets start install LAMP stack and configure MySQL database with Apache Web Server.","og_url":"https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/","og_site_name":"Building THE IT GUY","article_published_time":"2020-02-06T13:33:58+00:00","article_modified_time":"2020-04-05T04:57:19+00:00","og_image":[{"url":"https:\/\/aasath.com\/wp-content\/uploads\/2020\/02\/1-1.jpg","type":"","width":"","height":""}],"author":"Mohamed Asath","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mohamed Asath","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/#article","isPartOf":{"@id":"https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/"},"author":{"name":"Mohamed Asath","@id":"https:\/\/www.buildingtheitguy.com\/#\/schema\/person\/cce03fcda4c40ccf57ab3844ca707561"},"headline":"How to Config LAMP STACK on Ubuntu Server \u2013 Part 2","datePublished":"2020-02-06T13:33:58+00:00","dateModified":"2020-04-05T04:57:19+00:00","mainEntityOfPage":{"@id":"https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/"},"wordCount":118,"commentCount":3,"image":{"@id":"https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/#primaryimage"},"thumbnailUrl":"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/1-1.jpg","keywords":["apache","lamp","mysql","ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/","url":"https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/","name":"How to Config LAMP STACK on Ubuntu Server \u2013 Part 2 - Building THE IT GUY","isPartOf":{"@id":"https:\/\/www.buildingtheitguy.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/#primaryimage"},"image":{"@id":"https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/#primaryimage"},"thumbnailUrl":"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/1-1.jpg","datePublished":"2020-02-06T13:33:58+00:00","dateModified":"2020-04-05T04:57:19+00:00","author":{"@id":"https:\/\/www.buildingtheitguy.com\/#\/schema\/person\/cce03fcda4c40ccf57ab3844ca707561"},"breadcrumb":{"@id":"https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/#primaryimage","url":"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/1-1.jpg","contentUrl":"https:\/\/www.buildingtheitguy.com\/\/wp-content\/uploads\/2020\/02\/1-1.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.buildingtheitguy.com\/index.php\/how-to-config-lamp-stack-on-ubuntu-server-part-2\/web-developer\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.buildingtheitguy.com\/"},{"@type":"ListItem","position":2,"name":"How to Config LAMP STACK on Ubuntu Server \u2013 Part 2"}]},{"@type":"WebSite","@id":"https:\/\/www.buildingtheitguy.com\/#website","url":"https:\/\/www.buildingtheitguy.com\/","name":"Building THE IT GUY","description":"Making Everyone&#039;s Life Easier","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.buildingtheitguy.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.buildingtheitguy.com\/#\/schema\/person\/cce03fcda4c40ccf57ab3844ca707561","name":"Mohamed Asath","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ab17cc6285a5051affe4181f53011c89cc055de9416bcc44b3e2771be318d870?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ab17cc6285a5051affe4181f53011c89cc055de9416bcc44b3e2771be318d870?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ab17cc6285a5051affe4181f53011c89cc055de9416bcc44b3e2771be318d870?s=96&r=g","caption":"Mohamed Asath"},"description":"Turning IT Challenges into Opportunities","sameAs":["https:\/\/www.buildingtheitguy.com"],"url":"https:\/\/www.buildingtheitguy.com\/index.php\/author\/asathwebtieradmin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/posts\/188","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/comments?post=188"}],"version-history":[{"count":11,"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/posts\/188\/revisions"}],"predecessor-version":[{"id":326,"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/posts\/188\/revisions\/326"}],"wp:attachment":[{"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/media?parent=188"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/categories?post=188"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.buildingtheitguy.com\/index.php\/wp-json\/wp\/v2\/tags?post=188"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}