Tutorial

How To Install Linux, Nginx, MySQL, PHP (LEMP) Stack on CentOS 8 [Quickstart]

Updated on April 16, 2020
Default avatar

By Erika Heidi

Developer Advocate

English
How To Install Linux, Nginx, MySQL, PHP (LEMP) Stack on CentOS 8 [Quickstart]

Introduction

In this tutorial, you’ll install a LEMP stack on a CentOS 8 server. Although MySQL is available from the default repositories in CentOS 8, this guide will walk through the process of setting up a LEMP stack with MariaDB as the database management system.

For a more detailed version of this tutorial, with more explanations of each step, please refer to How To Install Linux, Nginx, MySQL, PHP (LEMP) Stack on CentOS 8.

Prerequisites

To follow this guide, you’ll need access to a CentOS 8 server as a sudo user.

Step 1 — Install Nginx

Install the nginx package with:

  1. sudo dnf install nginx

After the installation is finished, run the following command to enable and start the server:

  1. sudo systemctl start nginx

If firewalld is active, you’ll need to run the following command to allow external access on port 80 (HTTP):

  1. sudo firewall-cmd --permanent --add-service=http

Reload the firewall configuration so the changes take effect:

  1. sudo firewall-cmd --reload

With the new firewall rule added, you can test if the server is up and running by accessing your server’s public IP address or domain name from your web browser. You’ll see a page like this:

Default Nginx Page CentOS 8

Step 2 — Install MariaDB

We’ll now install MariaDB, a community-developed fork of the original MySQL server by Oracle. To install this software, run:

  1. sudo dnf install mariadb-server

When the installation is finished, enable and start the MariaDB server with:

  1. sudo systemctl start mariadb

To improve the security of your database server, it’s recommended that you run a security script that comes pre-installed with MariaDB. Start the interactive script with:

  1. sudo mysql_secure_installation

The first prompt will ask you to enter the current database root password. Because you just installed MariaDB and haven’t made any configuration changes yet, this password will be blank, so just press ENTER at the prompt.

The next prompt asks you whether you’d like to set up a database root password. Because MariaDB uses a special authentication method for the root user that is typically safer than using a password, you don’t need to set this now. Type N and then press ENTER.

From there, you can press Y and then ENTER to accept the defaults for all the subsequent questions.

Step 3 — Install PHP-FPM

To install the php-fpm and php-mysql packages, run:

  1. sudo dnf install php-fpm php-mysqlnd

When the installation is finished, you’ll need to edit the /etc/php-fpm.d/www.conf file in order to adjust a couple settings. We’ll install nano to facilitate editing these files:

  1. sudo dnf install nano

Now open the /etc/php-fpm.d/www.conf configuration file using nano or your editor of choice:

  1. sudo nano /etc/php-fpm.d/www.conf

Look for the user and group directives. If you are using nano, you can hit CTRL+W to search for these terms inside the open file. Make sure to change both values from apache to nginx:

/etc/php-fpm.d/www.conf
…
; RPM: apache user chosen to provide access to the same directories as httpd
user = nginx
; RPM: Keep a group allowed to write in log dir.
group = nginx

Save and close the file when you’re done editing.

To enable and start the php-fpm service, run:

  1. sudo systemctl start php-fpm

Finally, restart the Nginx web server so that it loads the configuration files created by the php-fpm installation:

  1. sudo systemctl restart nginx

Step 4 — Test PHP with Nginx

On CentOS 8, the default php-fpm installation automatically creates configuration files that will allow your Nginx web server to handle .php files in the default document root located at /usr/share/nginx/html. You won’t need to make any changes to Nginx’s configuration in order for PHP to work correctly within your web server.

We’ll only need to modify the default owner and group on Nginx’s document root, so that you can create and modify files in that location using your regular non-root system user:

  1. sudo chown -R sammy.sammy /usr/share/nginx/html/

Create a new PHP file called info.php at the /usr/share/nginx/html directory:

  1. nano /usr/share/nginx/html/info.php

The following PHP code will display information about the current PHP environment running on the server:

/usr/share/nginx/html/info.php
<?php

phpinfo();

Copy this content to your info.php file, and don’t forget to save it when you’re done.

Now we can test whether our web server can correctly display content generated by a PHP script. Go to your browser and access your server hostname or IP address, followed by /info.php:

http://server_host_or_IP/info.php

You’ll see a page similar to this:

CentOS 8 default PHP info

Here are links to more detailed guides related to this tutorial:

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


About the authors
Default avatar

Developer Advocate

Dev/Ops passionate about open source, PHP, and Linux.

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
Leave a comment


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel