Skip to content

5hadtv/lemp-stack-demo

Repository files navigation

LEMP STACK IMPLEMENTATION

What is LEMP stack?

LEMP is a variation of the ubiquitous LAMP stack used for developing and deploying web applications. Traditionally, LAMP consists of Linux, Apache, MySQL, and PHP. Due to its modular nature, the components can easily be swapped out. With LEMP, Apache is replaced with the lightweight yet powerful Nginx.

Linux

An open source Unix-like operating system provides the base for the stack components. Many distributions include package management systems that make installing the desired applications easy. However, these repository versions will generally not be the most current. Two of the most commonly used Linux distributions in LEMP stacks are Debian and Ubuntu.

Nginx :

Nginx is an open source reverse proxy server for HTTP, HTTPS, SMTP, POP3, and IMAP protocols. It also functions as a load balancer, HTTP cache, and web server (origin server). It has a strong focus on high concurrency, high performance and low memory usage. The HTML5 Boilerplate project has sample server configuration files to improve performance and security.

MySQL :

MySQL is the second most widely used open source relational database management system. A community-developed fork, MariaDB, is led by the original developers. It aims to be a drop-in replacement.

PHP

PHP is a server-side scripting language designed for web development. The scripting role can also be filled with Python or Perl. Servers such as Gunicorn or uWSGI can be used in conjunction with Nginx to serve these applications.

A visualized LEMP Stack :

LEMP STACK

  • In order to complete this project you will need an AWS account and a Vitual Server with Ubuntu Server OS.
  • To learn how to create an AWS free tier account and an EC2 Instance of t2.micro family with Ubuntu Server 20.04 LTS(HVM), follow this link: Create an EC2 Instance in AWS
  • This time, instead of connecting via PuTTY, I will connect to my EC2 Instance with an already downloaded and installed Git Bash Command Line Interface (CLI).
  • To connect, Launch Git Bash and run the following command:
ssh -i shadrach-ec2.pem ubuntu@ec2-35-178-12-124.eu-west-2.compute.amazonaws.com
  • It will look like this:

GIT BASH LOGIN

This is how I got the complete and valid command that works with my already created Ubuntu 20.04 LTS(HVM) AWS Instance I connected to.

  • First, I selected the Server I want to connect to:

AWS INSTANCE

  • Then, Click on the connect button. The image below will be navigated to:

SSH CLIENT

There you have it!

STEP 1 - Installing the Nginx Web Server

  • In order to display web pages to our site visitors we are going to employ Nginx, a high performance Web Server. We'll use the apt Package Manager to install this package.
  • Since this is our first time using apt for this session, start of by updating your server's package index. Following that, you can use apt install to get Nginx installed:
$ sudo apt update

$ sudo apt install nginx
  • When prompted, enter Y to confirm that you want to install Nginx. Once the installation is finished, the Nginx Web Server will be active and running on your Ubuntu 20.04 Server.
  • To verify that nginx was successfully installed and running as a service in Ubuntu, run:
$ sudo systemctl status nginx
  • If it is green and running, then you did everything correctly - you have just launch your first web Server in the Clouds!

  • We need to configure our firewall settings to allow HTTP traffic. UFW has different application profiles that we can leverage for accomplishing that.

  • To list all currently available UFW application profile, run :

sudo ufw app list

App List

Available applications :

  • Nginx Full : This profile opens both port 80(normal, unencrypted web traffic) and port 443(TLS/SSL encrypted web traffic)
  • Nginx HTTP : This profile opens only port 80(normal, unencrypted web traffic)
  • Nginx HTTPS : This profile opens only port 443(TLS/SSL encrypted traffic)

It is recommended that you enable the most restrictive profile that will still allow the traffic you've configured. Since we haven't configured SSL for our Server yet, we will ony need to allow traffic on port 80.

  • You can enable this by typing:
$ sudo ufw allow 80

$ sudo ufw allow ssh

$ sudo ufw enable

You may get a prompt like this:

command may disrupt existing ssh connection. proceed with operation (y/n)?

Click on y on your keyboard and ENTER to proceed.

  • You can verify the change by typing:
$ sudo ufw status

You should see HTTP traffic allowed in the displayed output :

UFW STATUS

First, lets try to access it locally in our Ubuntu shell, run:

$ curl http://localhost:80
or
$ curl http://127.0.0.1:80

UBUNTU SHELL

As an output, you can see some strangely formatted test, do not worry, we just made sure that our Nginx web service responds to 'curl' command with some payload.

Now it is time for to test how our Nginx Server can respond to requests from the internet.

  • Another way to retrieve your Public IP address, other than to check it in AWS Web Console, is to use the following command.
curl -s http://169.254.169.254/latest/meta-data/public-ipv4

PUBLIC IP

  • Open a web browser of your choice and try to access the following URL:
http://<Public-IP-Address>:80
  • See the Public IP I used:
35.178.12.124:80

To make it work and accessible from the internet, I had to do a manual adjustment of the Security Group settings to allow inbound request from TCP/80/AnyWhere.

INBOUND RULES

  • Voila! Connection was successful after saving my new Inbound rules and refreshing the page.
  • see my output : Welcome Nginx

Infact, it is the same content that we previously got by 'curl' command, but represented in a nice HTML formatting by the web browser.

STEP 2 - Installing MySQL

Now that you have a Web Server up and running you need to install a Database Management System(DBMS) to be able to store and manage data for your site in a relational database. MySQL is a popular relational database management system used within PHP environments, so we will use it in our project. Again use apt to acquire and install this software :

$ sudo apt install mysql-server

When prompted, confirm installation by typing Y, and then ENTER.

When the installation is finished, it's recommended that you run a security script that comes pre-installed with MySQL. This Script will remove some insecure default settings and lock down access to your database system. Start the interactive script by running:

$ sudo mysql_secure_installation

This will ask if you want to configure the VALIDATE PASSWORD PLUGIN. Answer Y for "yes" or anything else to continue without enabling. If you answer "yes", you'll be asked to select a level of password validation. Keep in mind that if you enter 2 for the strongest level you will receive errors when attempting to set any password which does not contain numbers, upper and lowercase letters, and special charachers, or which is based on common dictionary words.

Regardless of whether you chose to set up the VALIDATE PASSWORD PLUGIN, your Server will next ask you to select and confirm a password for MySQL root user. This is not to be confused with the system root. The database root user is an administrative user with full privileges over the database system. Even though the default authentication method for the MySQL root user dispenses the use of a password, even when one is set, you should define a strong password here as an additional safety measure.

If you enabled password validation, you'll be shown the password strength for the root password you just entered and your Server will ask if you want to continue with that password. If you are happy with your current password, enter Y for "yes" at the prompt.

For the rest of the questions, press Y and hit ENTER key at the prompt. This will remove some anonymous users and the test database, disable remote root logins, and load these new rules so that MySQL immediately respect the changes you have made.

When you are finished, test if you're able to log into the MySQL console by typing:

$ sudo mysql

This will connect to the MySQL Server as the administrative database user root, which is infered by the use of sudo when running this command.

You should see an output like this :

To exit the MySQL console, type :

Notice that you didn't need to provide a password to connect as the root user, even though you have defined one when running the mysql_secure_installation script. That is because the default authentication method for the administrative MySQL user is unix_socket instead of password. Even though this might look like a security concern at first, it makes the database server more secure because the only users allowed to log is as the root MySQL user are the system users with sudo privileges connecting from the console or through an application running with the same privileges. In practical terms, that means you won't be able to use the administrative database root user to connect from your PHP application. Setting a password for the root MySQL accounts works as a safeguard, in case the default authentication method is changed from unix_socket to password.

For increased security, it's best to have dedicated user accounts with less expansive privileges set up for every database, especially if you plan on having multiple databases hosted on your server

Your MySQL Server is now installed and secured. Next, we will install PHP, the final component in the LEMP Stack

STEP 3 - Installing PHP

You have Nginx installed to serve your content and MySQL installed to store and manage your data. Now you can install PHP to process code and generate dynamic content for the Web Server.

While Apache embeds the PHP interpreter in each request, Nginx requires an external program to handle PHP processing and act as a bridge between the PHP interpreter itself and the Web Server. This allows for a better performance in most PHP-based websites, but it requires additional configuration. You'll need to install php-fpm, which stands for "PHP fastCGI Process Manager", and tell Nginx to pass PHP requests to this software for processing. Additionally you'll need php-mysql, a PHP module that allows PHP to communicate with MySQL-based databases. Core PHP packages will automatically be installed as dependenes.

To install these 2 packages at once, run :

$ sudo apt install php-fpm php-mysql

When prompted, type Y and press ENTER to confirm installation. You now have your PHP components installed. Next, you will configure Nginx to use them.

STEP 4 - Configuring Nginx to use PHP Processor

When using the Nginx web server, we can create server blocks (similar to virtual hosts in Apache) to encapsulate configuration details and host more than one domain on a single server. We will use projectLEMP as an example domain name.

On Ubuntu 20.04, Nginx has one server block enabled by default and is configured to serve documents out of a directory at /var/www/html. While this works well for a single site, it can become difficult to manage if you are hosting multiple sites. Instead of modifying /var/www/html, we’ll create a directory structure within /var/www for the your_domain website, leaving /var/www/html in place as the default directory to be served if a client request does not match any other sites.

  • Create the root web directory for your_domain as follows:
$ sudo mkdir /var/www/projectLEMP
  • Next, assign ownership of the directory with the $USER environment variable, which will reference your current system user:
$ sudo chown -R ubuntu:ubuntu /var/www/projectLEMP
  • Then, open a new configuration file in Nginx’s sites-available directory using your preferred command-line editor. Here, we’ll use nano:
$ sudo nano /etc/nginx/sites-available/projecLEMP
  • This will create a new blank file. Paste in the following bare-bones configuration:
#/etc/nginx/sites-available/projectLEMP

server {
    listen 80;
    server_name projectLEMP www.projectLEMP;
    root /var/www/projectLEMP;

    index index.html index.htm index.php;

    location / {
        try_files $uri $uri/ =404;
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
     }

    location ~ /\.ht {
        deny all;
    }

}
  • Like so :

PROJECT LEMP

Here’s what each of these directives and location blocks do:

  • listen — Defines what port Nginx will listen on. In this case, it will listen on port 80, the default port for HTTP.

  • root — Defines the document root where the files served by this website are stored.

  • index — Defines in which order Nginx will prioritize index files for this website. It is a common practice to list index.html files with a higher precedence than index.php files to allow for quickly setting up a maintenance landing page in PHP applications. You can adjust these settings to better suit your application needs.

  • server_name — Defines which domain names and/or IP addresses this server block should respond for. Point this directive to your server’s domain name or public IP address.

  • location / — The first location block includes a try_files directive, which checks for the existence of files or directories matching a URI request. If Nginx cannot find the appropriate resource, it will return a 404 error.

  • location ~ .php$ — This location block handles the actual PHP processing by pointing Nginx to the fastcgi-php.conf configuration file and the php7.4-fpm.sock file, which declares what socket is associated with php-fpm.

  • location ~ /.ht — The last location block deals with .htaccess files, which Nginx does not process. By adding the deny all directive, if any .htaccess files happen to find their way into the document root ,they will not be served to visitors.

When you’re done editing, save and close the file. If you’re using nano, you can do so by typing CTRL+X and then y and ENTER to confirm.

Activate your configuration by linking to the config file from Nginx’s sites-enabled directory:

$ sudo ln -s /etc//nginx/sites-available/projectLEMP /etc/nginx/sites-enabled/

This will tell Nginx to use the configuration next time it is reloaded. You can test your configuration for syntax errors by typing:

$ sudo nginx -t
  • You shall see the following message:

NGINX TEST

If any errors are reported, go back to your configuration file to review its contents before continuing.

We also need to disable default Nginx host that is currently configured to listen on port 80, for this run:

$ sudo unlink /etc/nginx/sites-enabled/default

When you are ready, reload Nginx to apply the changes:

$ sudo systemctl reload nginx

Your new website is now active, but the web root /var/www/projectLEMP is still empty. Create an index.html file in that location so that we can test that your new server block works as expected:

Now go to your browser and try to open your website URL using IP address:

http://<Public-DNS-Name>:80

You can also access your website in your browser by public DNS name, not only by IP - try it out, the result must be the same (port is optional)

http://<Public-DNS-Name>:80

You can leave this file in place as a temporary landing page for your application until you set up an index.php file to replace it. Once you do that, remember to remove or rename the index.html file from your document root, as it would take precedence over an index.php file by default.

Your LEMP stack is now fully configured. In the next step, we’ll create a PHP script to test that Nginx is in fact able to handle .php files within your newly configured website.

STEP 5 - Testing PHP with Nginx

At this point, your LEMP stack is completely installed and fully operational.

You can test it to validate that Nginx can correctly hand .php files off to your PHP processor.

You can do this by creating a test PHP file in your document root. Open a new file called info.php within your document root in your text editor:

$ nano /var/www/projectLEMP/info.php

Type or paste the following lines into the new file. This is valid PHP code that will return information about your server:

<?php
phpinfo();

You can now access this page in your web browser by visiting the domain name or public IP address you’ve set up in your Nginx configuration file, followed by /info.php:

http://`server_domain_or_IP`/info.php

You will see a web page containing detailed information about your server:

PHP INFO

After checking the relevant information about your PHP server through that page, it’s best to remove the file you created as it contains sensitive information about your PHP environment and your Ubuntu server. You can use rm to remove that file:

$ sudo rm /var/www/your_domain/info.php

You can always regenerate this file if you need it later.

STEP 6 - Retrieving data from MySQL database with PHP

In this step you will create a test database (DB) with simple “To do list” and configure access to it, so the Nginx website would be able to query data from the DB and display it.

At the time of this writing, the native MySQL PHP library mysqlnd doesn’t support caching_sha2_authentication, the default authentication method for MySQL 8. We’ll need to create a new user with the mysql_native_password authentication method in order to be able to connect to the MySQL database from PHP.

We will create a database named example_database and a user named example_user, but you can replace these names with different values.

First, connect to the MySQL console using the root account:

$ sudo mysql

To create a new database, run the following command from your MySQL console:

mysql> CREATE DATABASE `example_database`;
  • Remember to replace the example_database with the name you want for your Database during creation.

Now you can create a new user and grant him full privileges on the database you have just created.

The following command creates a new user named example_user, using mysql_native_password as default authentication method. We’re defining this user’s password as password, but you should replace this value with a secure password of your own choosing.

mysql>  CREATE USER 'example_user'@'%' IDENTIFIED WITH mysql_native_password BY 'password';
  • Remember to assign the example_user with a name you can associate with what you are configuring. Pick a strong password other than the default pasword place-holder "password".

Now we need to give this user permission over the example_database database:

  • Remember to assign the example_user with the name that matches what you are configuring.
mysql> GRANT ALL ON example_database.* TO 'example_user'@'%';
  • Remember to replace the example_user with the name you gave it during creation.

This will give the example_user user full privileges over the example_database database, while preventing this user from creating or modifying other databases on your server.

Now exit the MySQL shell with:

mysql> exit

You can test if the new user has the proper permissions by logging in to the MySQL console again, this time using the custom user credentials:

$ mysql -u example_user -p
  • Remember to replace the example_user with the name you gave it during creation.

Notice the -p flag in this command, which will prompt you for the password used when creating the example_user user. After logging in to the MySQL console, confirm that you have access to the example_database database:

  • Remember to replace the example_user with the name you gave it during creation.
mysql> SHOW DATABASES;

This will give you the following output:

  • Like so :

SHOW DATABSE

Next, we’ll create a test table named todo_list. From the MySQL console, run the following statement:

CREATE TABLE example_database.todo_list (
mysql>     item_id INT AUTO_INCREMENT,
mysql>     content VARCHAR(255),
mysql>     PRIMARY KEY(item_id)
mysql> );
  • Like so :

TODO LIST

Insert a few rows of content in the test table. You might want to repeat the next command a few times, using different VALUES:

mysql> INSERT INTO example_database.todo_list (content) VALUES ("My first important item");
  • Like so :

INSERT INTO

To confirm that the data was successfully saved to your table, run:

mysql>  SELECT * FROM example_database.todo_list;

You’ll see the following output:

SELECT FROM

After confirming that you have valid data in your test table, you can exit the MySQL console:

mysql> exit

Now you can create a PHP script that will connect to MySQL and query for your content. Create a new PHP file in your custom web root directory using your preferred editor. We’ll use vi for that:

$ nano /var/www/projectLEMP/todo_list.php

The following PHP script connects to the MySQL database and queries for the content of the todo_list table, displays the results in a list. If there is a problem with the database connection, it will throw an exception.

Copy this content into your todo_list.php script:

<?php
$user = "example_user";
$password = "password";
$database = "example_database";
$table = "todo_list";

try {
  $db = new PDO("mysql:host=localhost;dbname=$database", $user, $password);
  echo "<h2>TODO</h2><ol>";
  foreach($db->query("SELECT content FROM $table") as $row) {
    echo "<li>" . $row['content'] . "</li>";
  }
  echo "</ol>";
} catch (PDOException $e) {
    print "Error!: " . $e->getMessage() . "<br/>";
    die();
}
  • Like so :

PHP SCRIPT

Save and close the file when you are done editing.

You can now access this page in your web browser by visiting the domain name or public IP address configured for your website, followed by /todo_list.php:

http://<Public_domain_or_IP>/todo_list.php

You should see a page like this, showing the content you’ve inserted in your test table:

TODO LIST

That means your PHP environment is ready to connect and interact with your MySQL server.

Congratulations!

In this guide, we have built a flexible foundation for serving PHP websites and applications to your visitors, using Nginx as web server and MySQL as database management system.

  • CREDITS :
  1. https://starter-pbl.darey.io/en/latest/project2.html

  2. https://linuxize.com/post/how-to-setup-a-firewall-with-ufw-on-ubuntu-20-04/

  3. https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-18-04

  4. http://www.linuxandubuntu.com/home/nano-cli-text-editor-for-everyone-basic-tutorials

  5. https://dev.mysql.com/doc/refman/8.0/en/create-user.html

  6. https://www.w3schools.com/sql/sql_syntax.asp

  7. https://www.simplecloudhosting.net/what-is-lemp-stack.html

  8. https://www.youtube.com/watch?v=qdwWe9COT9k&feature=youtu.be

  9. https://www.youtube.com/watch?app=desktop&v=NdQL-mUGnUE

About

LEMP STACK IMPLEMENTATION ON AWS

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors