{"id":69,"date":"2016-09-17T15:25:22","date_gmt":"2016-09-17T15:25:22","guid":{"rendered":"https:\/\/draculaservers.com\/tutorials\/?p=69"},"modified":"2024-01-18T13:58:24","modified_gmt":"2024-01-18T13:58:24","slug":"install-lemp-stack-ubuntu-14-04-vps","status":"publish","type":"post","link":"https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/","title":{"rendered":"How to Install LEMP Stack on an Ubuntu 14.04 VPS"},"content":{"rendered":"<h2 id=\"whats-lemp\">What&#8217;s LEMP?<\/h2>\n<p>It stands for <strong>L<\/strong>inux, nginx (Pronounced <strong>E<\/strong>ngine X), <strong>M<\/strong>ySQL, <strong>P<\/strong>HP<\/p>\n<p>LEMP stack is used for developing and deploying web applications, and it consists of: Linux operating system, Nginx(pronounced engine x) web server, MySQL relational database management system that stores site data and PHP for processing dynamic content.<\/p>\n<p>In this tutorial we will show you how to install a LEMP stack on Ubuntu 14.04 systems.<\/p>\n\n<h2 id=\"step-1-installing-nginx\">Step 1 \u2014 Installing Nginx<\/h2>\n<p>Nginx is a very powerful and efficient web server that helps you show your web pages to the world( when it has decided to stop searching for cat pictures). First we&#8217;ll start with an update then we&#8217;ll install it:<\/p>\n<pre class=\"lang:vim decode:true \">sudo apt-get update\r\nsudo apt-get install nginx\r\n<\/pre>\n<h2 id=\"step-2-installing-mysql\">Step 2 \u2014 installing MySQL<\/h2>\n<p>Now let&#8217;s get to installing server packages for MySQL and a php5-mysql package:<\/p>\n<pre class=\"lang:vim decode:true \">sudo apt-get install mysql-server php5-mysql\r\n<\/pre>\n<p>The installer will ask you for a root(admin) password, which you&#8217;ll use for your MySQL root user.<\/p>\n<p>Now that you&#8217;ve installed the software, you can run a security script to change whatever settings you don&#8217;t like.<\/p>\n<pre class=\"lang:vim decode:true \">sudo mysql_secure_installation\r\n<\/pre>\n<h2 id=\"step-3-installing-php\">Step 3 \u2014 Installing PHP<\/h2>\n<p>First we need to install php5-fpm (fastCGI process manager) due to the fact that Nginx does not contain native PHP processing:<\/p>\n<pre class=\"lang:vim decode:true \">sudo apt-get install php5-fpm\r\n<\/pre>\n<p>Now, let&#8217;s configure the FPM implementation we just made. First we open the php5-fpm file:<\/p>\n<pre class=\"lang:vim decode:true \">sudo nano \/etc\/php5\/fpm\/php.ini\r\n<\/pre>\n<p>Ok, now set the value for cgi.fix_pathinfo from 1 to 0:<\/p>\n<pre class=\"lang:vim decode:true \">cgi.fix_pathinfo=0\r\n<\/pre>\n<p>Save and close and restart the processor:<\/p>\n<pre class=\"lang:vim decode:true \">sudo service php5-fpm restart\r\n<\/pre>\n<h2 id=\"step-4-configuring-nginx-virtualhost\">Step 4 \u2014 Configuring Nginx Virtualhost<\/h2>\n<p>We&#8217;ll start by opening default configuration file:<\/p>\n<pre class=\"lang:vim decode:true \">sudo nano \/etc\/nginx\/sites-available\/default\r\n<\/pre>\n<p>And let&#8217; start making some changes :<\/p>\n<pre class=\"lang:vim decode:true \">server {\r\n\r\n    listen 80 default_server;\r\n    listen [::]:80 default_server ipv6only=on;\r\n\r\n    root \/usr\/share\/nginx\/html;\r\n    index index.php index.html index.htm;  \/* we added to the index directive a index.php option *\/\r\n\r\n\r\n    server_name server_domain_name_or_IP;  \/* we modified the server_name directive to point to server's domain name or public IP address *\/\r\n\r\n\r\n    location \/ {\r\n        try_files $uri $uri\/ =404;\r\n    }\r\n\r\n    error_page 404 \/404.html;  \/* define error processing *\/\r\n\r\n    error_page 500 502 503 504 \/50x.html;\r\n    location = \/50x.html {\r\n        root \/usr\/share\/nginx\/html;\r\n    }\r\n\r\n    location ~ \\.php$ {\r\n        try_files $uri =404;\r\n        fastcgi_split_path_info ^(.+\\.php)(\/.+)$;\r\n        fastcgi_pass unix:\/var\/run\/php5-fpm.sock;\r\n        fastcgi_index index.php;\r\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n        include fastcgi_params;\r\n    }\/* added try_files directive to obstruct Nginx from passing bad requests to PHP for processing *\/\r\n}<\/pre>\n<p>And as always, save and close and for restarting you can:<\/p>\n<pre class=\"lang:vim decode:true \">sudo service nginx restart\r\n<\/pre>\n<p>or restart just the FPM implementation we just configured like so:<\/p>\n<pre class=\"lang:vim decode:true \">sudo service php5-fpm restart\r\n<\/pre>\n<p>If you followed these steps you should have your LEMP stack installed successfully on your server, but let&#8217;s test out to see if all the mods we made really work.<\/p>\n<p>First create a php file in our document root:<\/p>\n<pre class=\"lang:vim decode:true \">sudo nano \/usr\/share\/nginx\/html\/info.php\r\n<\/pre>\n<p>&#8230; and paste this in:<\/p>\n<pre class=\"lang:php decode:true \"><!--?php phpinfo(); ?-->\r\n<\/pre>\n<p>Save and close then type into your browser :<\/p>\n<p>http:\/\/server_domain_name_or_IP\/info.php<\/p>\n<p>And a PHP generated page should appear with info about your server.<\/p>\n<p>Ok, now delete file because we don&#8217;t want to make it easy for malicious software to see our server settings:<\/p>\n<pre class=\"lang:vim decode:true \">sudo rm \/usr\/share\/nginx\/html\/info.php\r\n<\/pre>\n<p>Hopefully this tutorial was of assistance. Don&#8217;t hesitate to leave your feedback.<\/p>\n<p>Want to host your website on a VPS? Then check out our <a href=\"https:\/\/draculaservers.com\/kvm.php\">Linux VPS Plans<\/a>, starting at 2GB RAM &amp; 10GB SSD for only $5\/mo.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What&#8217;s LEMP? It stands for Linux, nginx (Pronounced Engine X), MySQL, PHP LEMP stack is used for developing and deploying web applications, and it consists of: Linux operating system, Nginx(pronounced engine x) web server, MySQL relational database management system that stores site data and PHP for processing dynamic content. In this tutorial we will show [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":70,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,6,2],"tags":[14,15],"class_list":["post-69","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-getting-started","category-hosting","category-linux-basics","tag-lemp","tag-nginx"],"blocksy_meta":{"styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":6}},"featured_image_urls_v2":{"full":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/09\/how_to_install_lemp_stack_on_ubuntu_14.04.png",1024,512,false],"thumbnail":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/09\/how_to_install_lemp_stack_on_ubuntu_14.04-150x150.png",150,150,true],"medium":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/09\/how_to_install_lemp_stack_on_ubuntu_14.04-300x150.png",300,150,true],"medium_large":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/09\/how_to_install_lemp_stack_on_ubuntu_14.04-768x384.png",768,384,true],"large":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/09\/how_to_install_lemp_stack_on_ubuntu_14.04-1024x512.png",1024,512,true],"1536x1536":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/09\/how_to_install_lemp_stack_on_ubuntu_14.04.png",1024,512,false],"2048x2048":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/09\/how_to_install_lemp_stack_on_ubuntu_14.04.png",1024,512,false],"pk-small":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/09\/how_to_install_lemp_stack_on_ubuntu_14.04-80x80.png",80,80,true],"pk-thumbnail":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/09\/how_to_install_lemp_stack_on_ubuntu_14.04-300x225.png",300,225,true]},"post_excerpt_stackable_v2":"<p>What&#8217;s LEMP? It stands for Linux, nginx (Pronounced Engine X), MySQL, PHP LEMP stack is used for developing and deploying web applications, and it consists of: Linux operating system, Nginx(pronounced engine x) web server, MySQL relational database management system that stores site data and PHP for processing dynamic content. In this tutorial we will show you how to install a LEMP stack on Ubuntu 14.04 systems. Step 1 \u2014 Installing Nginx Nginx is a very powerful and efficient web server that helps you show your web pages to the world( when it has decided to stop searching for cat pictures).&hellip;<\/p>\n","category_list_v2":"<a href=\"https:\/\/draculaservers.com\/tutorials\/category\/getting-started\/\" rel=\"category tag\">Getting Started<\/a>, <a href=\"https:\/\/draculaservers.com\/tutorials\/category\/hosting\/\" rel=\"category tag\">Hosting<\/a>, <a href=\"https:\/\/draculaservers.com\/tutorials\/category\/linux-basics\/\" rel=\"category tag\">Linux Basics<\/a>","author_info_v2":{"name":"Vlad","url":"https:\/\/draculaservers.com\/tutorials\/author\/vlad\/"},"comments_num_v2":"1 comment","yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install LEMP Stack on Ubuntu 14.04 VPS | Dracula Servers<\/title>\n<meta name=\"description\" content=\"Learn how to set up a LEMP Stack on your Ubuntu 14.04 VPS. This comprehensive tutorial guides you through installing Linux, Nginx, MySQL, and PHP.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install LEMP Stack on Ubuntu 14.04 VPS | Dracula Servers\" \/>\n<meta property=\"og:description\" content=\"Learn how to set up a LEMP Stack on your Ubuntu 14.04 VPS. This comprehensive tutorial guides you through installing Linux, Nginx, MySQL, and PHP.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/\" \/>\n<meta property=\"og:site_name\" content=\"Dracula Servers Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2016-09-17T15:25:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-18T13:58:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/09\/how_to_install_lemp_stack_on_ubuntu_14.04.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Vlad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vlad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-lemp-stack-ubuntu-14-04-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-lemp-stack-ubuntu-14-04-vps\\\/\"},\"author\":{\"name\":\"Vlad\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/person\\\/931f7fa8b2126ace6edfb82775e0ec0e\"},\"headline\":\"How to Install LEMP Stack on an Ubuntu 14.04 VPS\",\"datePublished\":\"2016-09-17T15:25:22+00:00\",\"dateModified\":\"2024-01-18T13:58:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-lemp-stack-ubuntu-14-04-vps\\\/\"},\"wordCount\":411,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-lemp-stack-ubuntu-14-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/how_to_install_lemp_stack_on_ubuntu_14.04.png\",\"keywords\":[\"lemp\",\"nginx\"],\"articleSection\":[\"Getting Started\",\"Hosting\",\"Linux Basics\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-lemp-stack-ubuntu-14-04-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-lemp-stack-ubuntu-14-04-vps\\\/\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-lemp-stack-ubuntu-14-04-vps\\\/\",\"name\":\"How to Install LEMP Stack on Ubuntu 14.04 VPS | Dracula Servers\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-lemp-stack-ubuntu-14-04-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-lemp-stack-ubuntu-14-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/how_to_install_lemp_stack_on_ubuntu_14.04.png\",\"datePublished\":\"2016-09-17T15:25:22+00:00\",\"dateModified\":\"2024-01-18T13:58:24+00:00\",\"description\":\"Learn how to set up a LEMP Stack on your Ubuntu 14.04 VPS. This comprehensive tutorial guides you through installing Linux, Nginx, MySQL, and PHP.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-lemp-stack-ubuntu-14-04-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-lemp-stack-ubuntu-14-04-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-lemp-stack-ubuntu-14-04-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/how_to_install_lemp_stack_on_ubuntu_14.04.png\",\"contentUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/09\\\/how_to_install_lemp_stack_on_ubuntu_14.04.png\",\"width\":1024,\"height\":512},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-lemp-stack-ubuntu-14-04-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install LEMP Stack on an Ubuntu 14.04 VPS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#website\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\",\"name\":\"Dracula Servers Tutorials\",\"description\":\"Dedicated Servers\",\"publisher\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\",\"name\":\"Dracula Servers\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/dracula_full_logo_smaller.png\",\"contentUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/dracula_full_logo_smaller.png\",\"width\":1625,\"height\":200,\"caption\":\"Dracula Servers\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/person\\\/931f7fa8b2126ace6edfb82775e0ec0e\",\"name\":\"Vlad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g\",\"caption\":\"Vlad\"},\"description\":\"Tech Support\",\"sameAs\":[\"https:\\\/\\\/draculaservers.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install LEMP Stack on Ubuntu 14.04 VPS | Dracula Servers","description":"Learn how to set up a LEMP Stack on your Ubuntu 14.04 VPS. This comprehensive tutorial guides you through installing Linux, Nginx, MySQL, and PHP.","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:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to Install LEMP Stack on Ubuntu 14.04 VPS | Dracula Servers","og_description":"Learn how to set up a LEMP Stack on your Ubuntu 14.04 VPS. This comprehensive tutorial guides you through installing Linux, Nginx, MySQL, and PHP.","og_url":"https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/","og_site_name":"Dracula Servers Tutorials","article_published_time":"2016-09-17T15:25:22+00:00","article_modified_time":"2024-01-18T13:58:24+00:00","og_image":[{"width":1024,"height":512,"url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/09\/how_to_install_lemp_stack_on_ubuntu_14.04.png","type":"image\/png"}],"author":"Vlad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Vlad","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/#article","isPartOf":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/"},"author":{"name":"Vlad","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/person\/931f7fa8b2126ace6edfb82775e0ec0e"},"headline":"How to Install LEMP Stack on an Ubuntu 14.04 VPS","datePublished":"2016-09-17T15:25:22+00:00","dateModified":"2024-01-18T13:58:24+00:00","mainEntityOfPage":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/"},"wordCount":411,"commentCount":1,"publisher":{"@id":"https:\/\/draculaservers.com\/tutorials\/#organization"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/09\/how_to_install_lemp_stack_on_ubuntu_14.04.png","keywords":["lemp","nginx"],"articleSection":["Getting Started","Hosting","Linux Basics"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/","url":"https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/","name":"How to Install LEMP Stack on Ubuntu 14.04 VPS | Dracula Servers","isPartOf":{"@id":"https:\/\/draculaservers.com\/tutorials\/#website"},"primaryImageOfPage":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/#primaryimage"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/09\/how_to_install_lemp_stack_on_ubuntu_14.04.png","datePublished":"2016-09-17T15:25:22+00:00","dateModified":"2024-01-18T13:58:24+00:00","description":"Learn how to set up a LEMP Stack on your Ubuntu 14.04 VPS. This comprehensive tutorial guides you through installing Linux, Nginx, MySQL, and PHP.","breadcrumb":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/#primaryimage","url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/09\/how_to_install_lemp_stack_on_ubuntu_14.04.png","contentUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/09\/how_to_install_lemp_stack_on_ubuntu_14.04.png","width":1024,"height":512},{"@type":"BreadcrumbList","@id":"https:\/\/draculaservers.com\/tutorials\/install-lemp-stack-ubuntu-14-04-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/draculaservers.com\/tutorials\/"},{"@type":"ListItem","position":2,"name":"How to Install LEMP Stack on an Ubuntu 14.04 VPS"}]},{"@type":"WebSite","@id":"https:\/\/draculaservers.com\/tutorials\/#website","url":"https:\/\/draculaservers.com\/tutorials\/","name":"Dracula Servers Tutorials","description":"Dedicated Servers","publisher":{"@id":"https:\/\/draculaservers.com\/tutorials\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/draculaservers.com\/tutorials\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/draculaservers.com\/tutorials\/#organization","name":"Dracula Servers","url":"https:\/\/draculaservers.com\/tutorials\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/logo\/image\/","url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/06\/dracula_full_logo_smaller.png","contentUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/06\/dracula_full_logo_smaller.png","width":1625,"height":200,"caption":"Dracula Servers"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/person\/931f7fa8b2126ace6edfb82775e0ec0e","name":"Vlad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g","caption":"Vlad"},"description":"Tech Support","sameAs":["https:\/\/draculaservers.com"]}]}},"_links":{"self":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/69","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/comments?post=69"}],"version-history":[{"count":2,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/69\/revisions"}],"predecessor-version":[{"id":2177,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/69\/revisions\/2177"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/media\/70"}],"wp:attachment":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/media?parent=69"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/categories?post=69"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/tags?post=69"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}