CentOS上搭建 LNMP 环境

操作场景

LNMP 环境是指在 Linux 系统下,由 Nginx + MySQL/MariaDB + PHP 组成的网站服务器架构。本文档介绍如何在腾讯云云服务器(CVM)上手动搭建 LNMP 环境。

进行手动搭建 LNMP 环境,您需要熟悉 Linux 命令,例如 CentOS 环境下通过 YUM 安装软件 等常用命令,并对所安装软件的使用及版本兼容性比较了解。

示例软件版本

本文搭建的 LNMP 环境软件组成版本及说明如下:

  • Linux:Linux 操作系统,本文以 CentOS 7.6 为例。
  • Nginx:Web 服务器,本文以 Nginx 1.17.5 为例。
  • MariaDB:数据库,本文以 MariaDB 10.4.8 为例。
  • PHP:脚本语言,本文以 PHP 7.2.22 为例。

官方教程地址:

操作步骤

步骤1:登录 Linux 服务器

步骤2:安装 Nginx

1、执行以下命令,在 /etc/yum.repos.d/ 下创建 nginx.repo 文件。

vi /etc/yum.repos.d/nginx.repo

2、按 “i” 切换至编辑模式,写入以下内容。

[nginx] 
name = nginx repo 
baseurl = https://nginx.org/packages/mainline/centos/7/$basearch/ 
gpgcheck = 0 
enabled = 1

3、按 “Esc”,输入 “:wq”,保存文件并返回。

4、执行以下命令,安装 nginx。

yum install -y nginx

5、执行以下命令,打开 nginx.conf 文件。

vim /etc/nginx/nginx.conf

6、按 “i” 切换至编辑模式,编辑 nginx.conf 文件。
用于取消对 IPv6 地址的监听,同时配置 Nginx,实现与 PHP 的联动。(找到 nginx.conf 文件中的 #gzip on;,另起一行并输入以下内容。)

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;
 }
}

7、按 “Esc”,输入 “:wq”,保存文件并返回。

8、执行以下命令启动 Nginx。

systemctl start nginx

9、执行以下命令,设置 Nginx 为开机自启动。

systemctl enable nginx 

10、在本地浏览器中访问以下地址,查看 Nginx 服务是否正常运行。

http://云服务器实例的公网 IP

显示如下,则说明 Nginx 安装配置成功。

CentOS上搭建 LNMP 环境_第1张图片

步骤3:安装数据库

1、执行以下命令,查看系统中是否已安装 MariaDB。

rpm -qa | grep -i mariadb

返回结果类似如下内容,则表示已存在 MariaDB。

为避免安装版本不同造成冲突,请执行以下命令移除已安装的 MariaDB。

yum -y remove 包名

2、执行以下命令,在 /etc/yum.repos.d/ 下创建 MariaDB.repo 文件。

vi /etc/yum.repos.d/MariaDB.repo

3、按 “i” 切换至编辑模式,写入以下内容。

# MariaDB 10.4 CentOS repository list - created 2019-11-05 11:56 UTC
# http://downloads.mariadb.org/mariadb/repositories/
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.4/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1

4、按 “Esc”,输入 “:wq”,保存文件并返回。

5、执行以下命令,安装 MariaDB。

yum -y install MariaDB-client MariaDB-server

6、执行以下命令,启动 MariaDB 服务。

systemctl start mariadb

7、执行以下命令,设置 MariaDB 为开机自启动。

systemctl enable mariadb

8、执行以下命令,验证 MariaDB 是否安装成功。

mysql

显示结果如下,则成功安装。

CentOS上搭建 LNMP 环境_第2张图片

9、执行以下命令,退出 MariaDB。

\q

步骤4:安装配置 PHP

1、依次执行以下命令,更新 yum 中 PHP 的软件源。

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

2、执行以下命令,安装 PHP 7.2 所需要的包。

yum -y install mod_php72w.x86_64 php72w-cli.x86_64 php72w-common.x86_64 php72w-mysqlnd php72w-fpm.x86_64

3、执行以下命令,启动 PHP-FPM 服务。

systemctl start php-fpm

4、执行以下命令,设置 PHP-FPM 服务为开机自启动。

systemctl enable php-fpm

验证环境配置

当您完成环境配置后,可以通过以下验证 LNMP 环境是否搭建成功。

1、执行以下命令,创建测试文件。

echo "" >> /usr/share/nginx/html/index.php

2、执行以下命令,重启 Nginx 服务。

systemctl restart nginx

3、在本地浏览器中访问如下地址,查看环境配置是否成功。

http://云服务器实例的公网 IP

显示结果如下, 则说明环境配置成功。

CentOS上搭建 LNMP 环境_第3张图片

 

相关操作

在完成了 LNMP 环境搭建之后,您可在此基础上进行 手动搭建 Wordpress 个人站点 实践,了解并掌握更多关于云服务器的相关功能。

你可能感兴趣的:(CentOS上搭建 LNMP 环境)