共计 6627 个字符,预计需要花费 17 分钟才能阅读完成。
LEMP 是一个软件堆栈,包含一组免费的开源工具,这些工具用于为高流量和动态网站提供动力。LEMP 是 Linux,Nginx(发音为 Engine X),MariaDB/MySQL 和 PHP 的首字母缩写。
Nginx 是一款开源,强大且高性能的 Web 服务器,它还可以兼作反向代理。MariaDB 是用于存储用户数据的数据库系统,而 PHP 是用于开发和支持动态网页的服务器端脚本语言。
相关:
CentOS 8.1 下搭建 LAMP(Linux+Apache+MySQL+PHP)环境 https://www.linuxidc.com/Linux/2020-02/162446.htm
在本文中,您将学习如何在 CentOS 8 Linux 发行版上安装 LEMP 服务器。
步骤 1:在 CentOS 8 上更新软件包
首先,通过运行以下 dnf 命令在 CentOS 8 Linux 上更新存储库和软件包。
[linuxidc@localhost ~/www.linuxidc.com]$sudo dnf update
更新 CentOS 8 软件包
步骤 2:在 CentOS 8 上安装 Nginx Web 服务器
软件包更新完成后,使用简单命令安装 Nginx。
[linuxidc@localhost ~/www.linuxidc.com]$sudo dnf install nginx
在 CentOS 8 上安装 Nginx
该代码段显示 Nginx 安装工作进展顺利,没有出现任何问题。
在 CentOS 8 上安装 Nginx
安装完成后,将 Nginx 配置为在系统启动时自启动,并通过执行命令来验证 Nginx 是否正在运行。
[linuxidc@localhost ~/www.linuxidc.com]$sudo systemctl enable nginx
[linuxidc@localhost ~/www.linuxidc.com]$sudo systemctl start nginx
将 Nginx 配置为在系统启动时自启动
[linuxidc@localhost ~/www.linuxidc.com]$sudo systemctl status nginx
验证 Nginx 服务状态
要检查已安装的 Nginx 版本,请运行命令。
[linuxidc@localhost ~/www.linuxidc.com]$nginx -v
nginx version: nginx/1.14.1
检查 Nginx 版本
如果您对 Nginx 感到好奇,并且希望挖掘更多关于 Nginx 的信息,请执行以下 rpm 命令。
[linuxidc@localhost ~/www.linuxidc.com]$rpm -qi nginx
查看 Nginx 详细信息
要确认 Nginx 服务器正在使用浏览器运行,只需在 URL 栏中键入系统的 IP 地址或者网址(本文以 https://www.linuxidc.com 为例,如下图),然后按 Enter。
您应该能够看到“Welcome to nginx on Red Hat Enterprise Linux!”网页,这表明您的 Nginx Web 服务器已启动并正在运行。
检查 Nginx 网页
步骤 3:在 CentOS 8 上安装 MariaDB
MariaDB 是 MySQL 的免费开源分支,并提供了最新功能,这些功能使其可以更好地替代 MySQL。要安装 MariaDB,请运行命令。
在 CentOS 8 中安装 MariaDB
要使 MariaDB 在系统启动时自动启动,请运行。
[linuxidc@localhost ~/www.linuxidc.com]$systemctl start mariadb
[linuxidc@localhost ~/www.linuxidc.com]$systemctl enable mariadb
Created symlink /etc/systemd/system/mysql.service → /usr/lib/systemd/system/mariadb.service.
Created symlink /etc/systemd/system/mysqld.service → /usr/lib/systemd/system/mariadb.service.
Created symlink /etc/systemd/system/multi-user.target.wants/mariadb.service → /usr/lib/systemd/system/mariadb.service.
MariaDB 在系统启动时自动启动
安装后,请使用以下命令检查其状态。
验证 MariaDB 服务状态
MariaDB 数据库引擎不安全,任何人都可以在没有凭据的情况下登录。要加固 MariaDB 并对其进行保护以最大程度地减少未经授权的访问的机会,请运行命令。
[linuxidc@localhost ~/www.linuxidc.com]$mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we’ll need the current
password for the root user. If you’ve just installed MariaDB, and
you haven’t set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none):
系统将提示您输入 root 密码(如果您已经有 root 密码)或进行设置。在随后的每个提示中回答 Y。
设置密码后,回答其余问题以删除匿名用户,删除测试数据库并禁用远程 root 登录。
完成所有步骤后,您可以登录 MariaDB 服务器并检查 MariaDB 服务器版本信息(提供保护服务器时指定的密码)。
[linuxidc@localhost ~/www.linuxidc.com]$mysql -u root -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 8
Server version: 10.3.17-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)]>
检查 MariaDB 版本
步骤 4:在 CentOS 8 上安装 PHP 7
最后,我们将安装最后一个 LEMP 组件组件,即 PHP,这是一种脚本化 Web 编程语言,通常用于开发动态网页。
在撰写本指南时,最新版本是 PHP 7.4。我们将使用 Remi 存储库安装它。Remi 资料库是一个免费的资料库,附带了最新的尖端软件版本,默认情况下在 CentOS 上不可用。
运行以下命令以安装 EPEL 存储库。
[linuxidc@localhost ~/www.linuxidc.com]$sudo dnf install https://dl.Fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
接下来,安装 yum utils 并使用以下命令启用 remi-repository。
[linuxidc@localhost ~/www.linuxidc.com]$sudo dnf install dnf-utils http://rpms.remirepo.net/enterprise/remi-release-8.rpm
成功安装 yum-utils 和 Remi-packages 之后,通过运行命令搜索可下载的 PHP 模块。
[linuxidc@localhost ~/www.linuxidc.com]$sudo dnf module list php
输出将包括可用的 PHP 模块,流和安装配置文件,如下所示。
Extra Packages for Enterprise Linux 8 – x86_64 3.3 MB/s | 5.9 MB 00:01
Remi’s Modular repository for Enterprise Linux 7.1 kB/s | 535 kB 01:15
Safe Remi’s RPM repository for Enterprise Linux 3.7 kB/s | 1.4 MB 06:27
上次元数据过期检查:0:00:03 前,执行于 2020 年 02 月 26 日 星期三 07 时 39 分 24 秒。
CentOS-8 – AppStream
Name Stream Profiles Summary
php 7.2 [d][e] common [d], devel, minimal PHP scripting language
php 7.3 common, devel, minimal PHP scripting language
Remi’s Modular repository for Enterprise Linux 8 – x86_64
Name Stream Profiles Summary
php remi-7.2 common [d], devel, minimal PHP scripting language
php remi-7.3 common [d], devel, minimal PHP scripting language
php remi-7.4 common [d], devel, minimal PHP scripting language
提示:[d]默认,[e]已启用,[x]已禁用,[i]已安装
输出表明当前安装的 PHP 版本是 PHP 7.2。要安装较新的版本 PHP 7.4,请重置 PHP 模块。
[linuxidc@localhost ~/www.linuxidc.com]$sudo dnf module reset php
重置 PHP 模块后,通过运行启用 PHP 7.4 模块。
[linuxidc@localhost ~/www.linuxidc.com]$sudo dnf module enable php:remi-7.4
最后,使用命令安装 PHP,PHP-FPM(FastCGI 进程管理器)和关联的 PHP 模块。
[linuxidc@localhost ~/www.linuxidc.com]$ sudo dnf install php php-opcache php-gd php-curl php-mysqlnd
已安装:
php-7.4.3-1.el8.remi.x86_64
php-gd-7.4.3-1.el8.remi.x86_64
php-mysqlnd-7.4.3-1.el8.remi.x86_64
php-opcache-7.4.3-1.el8.remi.x86_64
nginx-filesystem-1:1.14.1-9.module_el8.0.0+184+e34fea82.noarch
php-fpm-7.4.3-1.el8.remi.x86_64
php-mbstring-7.4.3-1.el8.remi.x86_64
php-sodium-7.4.3-1.el8.remi.x86_64
oniguruma-6.8.2-1.el8.x86_64
libsodium-1.0.18-2.el8.x86_64
php-pdo-7.4.3-1.el8.remi.x86_64
完毕!
验证安装的版本可以运行。
[linuxidc@localhost ~/www.linuxidc.com]$php -v
PHP 7.4.3 (cli) (built: Feb 18 2020 11:53:05) (NTS)
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
with Zend OPcache v7.4.3, Copyright (c), by Zend Technologies
完善!现在,我们已经安装了 PHP 7.4。同样重要的是,我们需要在启动时启动并启用 PHP-FPM。
[linuxidc@localhost ~/www.linuxidc.com]$sudo systemctl start php-fpm
[sudo] linuxidc 的密码:
[linuxidc@localhost ~/www.linuxidc.com]$sudo systemctl enable php-fpm
Created symlink /etc/systemd/system/multi-user.target.wants/php-fpm.service → /usr/lib/systemd/system/php-fpm.service.
要检查其状态,请执行命令。
[linuxidc@localhost ~/www.linuxidc.com]$sudo systemctl status php-fpm
检查 PHP-FPM 状态
另一件事是,默认情况下,PHP-FPM 配置为以 Apache 用户身份运行。但是由于我们正在运行 Nginx Web 服务器,因此我们需要将其更改为 Nginx 用户。
因此,打开文件/etc/php-fpm.d/www.conf。
[linuxidc@localhost ~/www.linuxidc.com]$sudo nano /etc/php-fpm.d/www.conf
找到这两行。
user = apache
group = apache
现在将两个值都更改为 Nginx。
user = nginx
group = nginx
配置 PHP-FPM
保存并退出配置文件。
然后重新启动 Nginx 和 PHP-FPM,以使更改生效。
[linuxidc@localhost ~/www.linuxidc.com]$sudo systemctl restart nginx
[sudo] linuxidc 的密码:
[linuxidc@localhost ~/www.linuxidc.com]$sudo systemctl restart php-fpm
步骤 5:测试 PHP 信息
默认情况下,Nginx 的 Web 目录文件夹位于 /usr/share/nginx/html/ 路径中。为了测试 PHP-FPM,我们将创建一个 phpinfo 文件。
[linuxidc@localhost ~/www.linuxidc.com]$cd /usr/share/nginx/html/
[linuxidc@localhost /usr/share/nginx/html]$su
密码:
[root@localhost /usr/share/nginx/html]$echo “<?php phpinfo(); ?>” > linuxidc.com.php
保存并退出文件。
启动浏览器,然后在 URL 栏中键入您的 Web 服务器的 IP 地址或网址(本文以 https://www.linuxidc.com 为例),如图所示。
如果一切顺利,您将看到有关正在运行的 PHP 版本的信息,并显示其他指标。
OK,就这样,现在您已在 CentOS 8 上成功安装了 LEMP 服务器堆栈。为安全起见,您可能希望删除 info.php 文件,以防止被人从您的 Nginx 服务器获取信息。
: