How to Install LEMP (Linux, Nginx, MariaDB, PHP) on Fedora 30 Server
======
In this article, we’ll be looking at how to install **LEMP** stack on Fedora 30 Server. LEMP Stands for:
* L -> Linux
* E -> Nginx
* M -> Maria DB
* P -> PHP
I am assuming **[Fedora 30][1]** is already installed on your system.
![LEMP-Stack-Fedora30][2]
LEMP is a collection of powerful software setup that is installed on a Linux server to help in developing popular development platforms to build websites, LEMP is a variation of LAMP wherein instead of **Apache** , **EngineX (Nginx)** is used as well as **MariaDB** used in place of **MySQL**. This how-to guide is a collection of separate guides to install Nginx, Maria DB and PHP.
### Install Nginx, PHP 7.3 and PHP-FPM on Fedora 30 Server
Let’s take a look at how to install Nginx and PHP along with PHP FPM on Fedora 30 Server.
### Step 1) Switch to root user
First step in installing Nginx in your system is to switch to root user. Use the following command :
```
root@linuxtechi ~]$ sudo -i
[sudo] password for pkumar:
[root@linuxtechi ~]#
```
### Step 2) Install Nginx, PHP 7.3 and PHP FPM using dnf command
The default installation of PHP only comes with the basic and the most needed modules installed. If you need additional modules like GD, XML support for PHP, command line interface Zend OPCache features etc, you can always choose your packages and install everything in one go. See the sample command below:
Above page confirms that PHP 7.3.5 has been installed successfully. Now let’s install MariaDB database server.
### Install MariaDB on Fedora 30
MariaDB is a great replacement for MySQL DB as it is works much similar to MySQL and also compatible with MySQL steps too. Let’s look at the steps to install MariaDB on Fedora 30 Server
### Step 1) Switch to Root User
First step in installing MariaDB in your system is to switch to root user or you can use a local user who has root privilege. Use the following command below:
```
[root@linuxtechi ~]# sudo -i
[root@linuxtechi ~]#
```
### Step 2) Install latest version of MariaDB (10.3) using dnf command
Use the following command to install MariaDB on Fedora 30 Server
When we install MariaDB server, so by default there is no root password, also anonymous users are created in database. So, to secure MariaDB installation, run the beneath “mysql_secure_installation” command
```
[root@linuxtechi ~]# mysql_secure_installation
```
Next you will be prompted with some question, just answer the questions as shown below:
![Secure-MariaDB-Installation-Part1][7]
![Secure-MariaDB-Installation-Part2][8]
### Step 5) Test MariaDB Installation
Once you have installed, you can always test if MariaDB is successfully installed on the server. Use the following command:
```
[root@linuxtechi ~]# mysql -u root -p
Enter password:
```
Next you will be prompted for a password. Enter the password same password that you have set during MariaDB secure installation, then you can see the MariaDB welcome screen.
```
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 17
Server version: 10.3.12-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
```
And finally, we’ve completed everything to install LEMP (Linux, Nginx, MariaDB and PHP) on your server successfully. Please post all your comments and suggestions in the feedback section below and we’ll respond back at the earliest.