The LNMP environment is a website server architecture consisting of Nginx, MySQL or MariaDB, and PHP running on Linux. This document describes how to manually set up the LNMP environment on a Tencent Cloud CVM.
To manually set up the LNMP environment, you should familiarize yourself with common Linux commands such as installing software via YUM in CentOS, and understand the usage and version compatibility of the software to be installed.
Note:It’s recommended that you can configure the LNMP environment through the image environment of Tencent Cloud marketplace, and it may take a long time to set up the LNMP environment manually.
The following software is used to build the LNMP environment.
Setting up a LNMP environment requires a Linux CVM. If you have not purchased one yet, see Getting Started with Linux CVMs.
Log in to the Linux instance using standard login method. You can also use any of the following login methods you are comfortable with:
Run the following command to create a file named nginx.repo
under /etc/yum.repos.d/
.
vi /etc/yum.repos.d/nginx.repo
Press i to switch to the editing mode and enter the following.
[nginx]
name = nginx repo
baseurl = https://nginx.org/packages/mainline/centos/7/$basearch/
gpgcheck = 0
enabled = 1
Click Esc and enter :wq to save and close the file.
Run the following command to install Nginx.
yum install -y nginx
Run the following command to open the default.conf
file.
vim /etc/nginx/conf.d/default.conf
Press i to switch to the edit mode to modify the default.conf
file.
Find server{...}
and replace the content inside the curly brackets with the following. This is to cancel the listening of the IPv6 address and configure Nginx to realize linkage with PHP.
server {
listen 80;
root /usr/share/nginx/html;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
#
location / {
index index.php index.html index.htm;
}
#error_page 404 /404.html;
#redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
#pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
Press Esc and enter :wq to save and close the file.
Run the following command to start Nginx.
systemctl start nginx
Run the following command to enable Nginx autostart.
systemctl enable nginx
Enter the following URL in your local browser and verify whether the Nginx service is working properly.
http://[Public IP address of the CVM instance]
If the following appears, Nginx has been successfully installed and configured.
rpm -qa | grep -i mariadb
If the following appears, MariaDB is already installed.
To avoid conflicts between different versions, run the following command to remove the installed MariaDB.
yum -y remove [Package name]
If nothing is returned, MySQL has not been installed. In this case, proceed to the next step.
Execute the following command to create the MariaDB.repo
file under /etc/yum.repos.d/
.
vi /etc/yum.repos.d/MariaDB.repo
Press i to switch to edit mode and enter the following content to add MariaDB.
Note:
- Different operating systems require different versions of MariaDB. Download MariaDB that is compatible with your operating system.
- If your CVM has private network access, change
mirrors.cloud.tencent.com
to the private network addressmirrors.tencentyun.com
. In this way, your public network traffic will not be affected and the access is faster.
# MariaDB 10.4 CentOS repository list - created 2019-11-05 11:56 UTC
# http://downloads.mariadb.org/mariadb/repositories/
[mariadb]
name = MariaDB
baseurl = https://mirrors.cloud.tencent.com/mariadb/yum/10.4/centos7-amd64
gpgkey=https://mirrors.cloud.tencent.com/mariadb/yum/RPM-GPG-KEY-MariaDB
gpgcheck=1
Press Esc, enter :wq, save the file and return.
Run the following command to install MariaDB. Please pay attention to the installation progress and wait for the installation to complete.
yum -y install MariaDB-client MariaDB-server
Run the following command to start the MariaDB service.
systemctl start mariadb
Run the following command to enable MariaDB autostart.
systemctl enable mariadb
Run the following command to verify that MariaDB is successfully installed.
mysql
If the following appears, MariaDB has been successfully installed.
9. Run the following command to exit MariaDB.
\q
rpm -Uvh https://mirrors.cloud.tencent.com/epel/epel-release-latest-7.noarch.rpm
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
Run the following command to install the packages required for PHP 7.2.
yum -y install mod_php72w.x86_64 php72w-cli.x86_64 php72w-common.x86_64 php72w-mysqlnd php72w-fpm.x86_64
Run the following command to start the PHP-FPM service.
systemctl start php-fpm
Run the following command to enable PHP-FPM autostart.
systemctl enable php-fpm
Follow these steps to verify that the LNMP environment has been built successfully.
Run the following command to create a test file.
echo "<?php phpinfo(); ?>" >> /usr/share/nginx/html/index.php
Run the following command to restart the Nginx service.
systemctl restart nginx
Enter the following URL in a local browser to check whether the environment configuration is successful.
http://[Public IP address of the CVM instance]
If the following appears, the environment has been successfully configured.
After the LNMP environment is built, you can manually build a WordPress website to familiarize yourself with CVM and its features.
If you encounter a problem when using CVM, refer to the following documents for troubleshooting:
Was this page helpful?