Manually Deploying LNMP (CentOS 7.2)
Overview
LNMP (Linux, Nginx, MySQL, and PHP) is one of the mainstream website server architectures. It is used for running large-sized and high-concurrency website applications, such as e-commerce websites, social networks, and content management systems. This section describes how to use a CentOS 7.2 64bit Linux ECS to set up an LNMP environment on Huawei Cloud.
Prerequisites
- The ECS has an EIP bound.
- The rule listed in the following table has been added to the security group which the target ECS belongs to. For details, see Adding a Security Group Rule.
Table 1 Security group rule Direction
Priority
Action
Type
Protocol & Port
Source Address
Inbound
1
Allow
IPv4
TCP: 80
0.0.0.0/0
- To obtain and update the system and software, you are advised to update the image source to a Huawei Cloud image source. For details, see How Can I Use an Automated Tool to Configure a Huawei Cloud Image Source (x86_64 and Arm)?
Resource Planning
Table 2 lists the resource configuration and software versions used in this practice. The commands and parameters may vary according to the hardware specifications or software versions you would use.
Resource |
Description |
Cost |
---|---|---|
ECS |
|
The following resources generate costs:
For billing details, see Billing Modes. |
Nginx |
A high-performance HTTP and reverse proxy server. Download URL: http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm |
Free |
MySQL |
An open-source relational database software. Download URL: https://dev.mysql.com/get/mysql80-community-release-el7-11.noarch.rpm |
Free |
PHP |
An open-source software used for web development. Download URL: https://mirrors.huaweicloud.com/remi/enterprise/remi-release-7.rpm |
Free |
Procedure
- Install Nginx.
- Log in to the ECS.
- Run the following command to download the Nginx package:
wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
- Run the following command to create the Nginx yum repository:
- Run the following command to install Nginx:
- Run the following command to check the Nginx version:
Information similar to the following is displayed:
nginx version: nginx/1.26.1
- Run the following commands to start Nginx and enable it to start automatically upon ECS startup:
systemctl enable nginx
- Check the startup status.
- Enter http://IP address of the Nginx server in the address bar to access Nginx. If the following page is displayed, Nginx has been installed.
Figure 1 Accessing Nginx
- Install MySQL.
- Run the following commands in sequence to install MySQL:
rpm -Uvh https://dev.mysql.com/get/mysql80-community-release-el7-11.noarch.rpm
yum -y install mysql-community-server
- Run the following command to check the MySQL version:
Information similar to the following is displayed:
mysql Ver 8.0.39 for Linux on x86_64 (MySQL Community Server - GPL)
- Run the following commands in sequence to start MySQL and enable it to start automatically upon ECS startup:
systemctl enable mysqld
- Run the following command to check the MySQL status:
systemctl status mysqld.service
Information similar to the following is displayed.
- Run the following command to obtain the root user's password that is automatically set during MySQL installation:
grep 'temporary password' /var/log/mysqld.log
Information similar to the following is displayed:2018-08-29T07:27:37.541944Z 1 [Note] A temporary password is generated for root@localhost: 2YY?3uHUA?Ys
- Run the following command and follow the prompts to harden MySQL:
Securing the MySQL server deployment. Enter password for user root: #Enter the obtained password of user root. The existing password for the user account root has expired. Please set a new password. New password: #Enter a new password of user root. Re-enter new password: #Enter the new password again. The 'validate_password' plugin is installed on the server. The subsequent steps will run with the existing configuration of the plugin. Using existing password for root. Estimated strength of the password: 100 Change the password for root ? ((Press y|Y for Yes, any other key for No) : N #Press N. ... skipping. By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? (Press y|Y for Yes, any other key for No) : Y #Press Y to remove anonymous users. Success. Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? (Press y|Y for Yes, any other key for No) : Y #Press Y to disallow remote logins of user root. Success. By default, MySQL comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? (Press y|Y for Yes, any other key for No) : Y #Press Y to delete the test database and remove access to it. - Dropping test database... Success. - Removing privileges on test database... Success. Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? (Press y|Y for Yes, any other key for No) : Y #Press Y to reload privilege tables. Success. All done!
- Run the following commands in sequence to install MySQL:
- Install PHP.
- Run the following commands to install the EPEL and REMI repositories:
rpm -Uvh https://mirrors.huaweicloud.com/remi/enterprise/remi-release-7.rpm
- Run the following command to install the Yum repository management tool:
- Run the following command to enable the PHP 8.0 repository:
- Run the following commands to install PHP:
yum install -y php php-cli php-fpm php-mysqlnd php-zip php-devel php-gd php-mcrypt php-mbstring php-curl php-xml php-pear php-bcmath php-json
- Run the following command to check the version of the installed PHP:
If information similar to the following is displayed, PHP has been installed:
- Run the following commands to start PHP and enable it to start automatically upon ECS startup:
systemctl enable php-fpm
- Modify the Nginx configuration file to support PHP.
- Run the following command to open the /etc/nginx/nginx.conf file:
vim /etc/nginx/nginx.confFigure 2 nginx.conf
According to the nginx.conf, the configuration file is directed to /etc/nginx/conf.d/*.conf.
- Enter :quit to exit nginx.conf.
- Run the following command to open the /etc/nginx/conf.d/default.conf file:
vim /etc/nginx/conf.d/default.conf
- Press i to enter insert mode.
- Modify the default.conf file.
Find the server paragraph and configure it as follows:
server { listen 80; server_name localhost; #access_log /var/log/nginx/host.access.log main; location / { root /usr/share/nginx/html; index index.html index.htm index.php; } location ~ \.php$ { root /usr/share/nginx/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }
Figure 3 shows the configuration after modification.
- Press Esc to exit the editing mode. Then, enter :wq to save the settings and exit the file.
- Run the following command to open the /etc/nginx/nginx.conf file:
- Run the following command to reload the Nginx configuration file:
- Run the following commands to install the EPEL and REMI repositories:
- Test the LNMP deployment.
- Create the info.php test file in /usr/share/nginx/html/.
- Run the following command to create and open the info.php test file:
vim /usr/share/nginx/html/info.php
- Press i to enter insert mode.
- Modify the info.php file and add the following to the file:
<?php phpinfo(); ?>
- Press Esc to exit the editing mode. Then, enter :wq to save the settings and exit the file.
- Run the following command to create and open the info.php test file:
- Enter http://Server IP address/info.php in the address bar. If the following page is displayed, the LNMP environment has been set up.
- Create the info.php test file in /usr/share/nginx/html/.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot