@robsean
This commit is contained in:
Xingyu Wang 2019-12-01 10:35:49 +08:00
parent 10164d8e7b
commit b9e36ee08c

View File

@ -1,13 +1,13 @@
[#]: collector: (lujun9972) [#]: collector: (lujun9972)
[#]: translator: (robsean) [#]: translator: (robsean)
[#]: reviewer: ( ) [#]: reviewer: (wxy)
[#]: publisher: ( ) [#]: publisher: ( )
[#]: url: ( ) [#]: url: ( )
[#]: subject: (How to Install LEMP (Linux, Nginx, MariaDB, PHP) on Fedora 30 Server) [#]: subject: (How to Install LEMP (Linux, Nginx, MariaDB, PHP) on Fedora 30 Server)
[#]: via: (https://www.linuxtechi.com/install-lemp-stack-fedora-30-server/) [#]: via: (https://www.linuxtechi.com/install-lemp-stack-fedora-30-server/)
[#]: author: (Pradeep Kumar https://www.linuxtechi.com/author/pradeep/) [#]: author: (Pradeep Kumar https://www.linuxtechi.com/author/pradeep/)
如何在 Fedora 30 Server 上安装 LEMP (Linux, Nginx, MariaDB, PHP) 如何在 Fedora 30 Server 上安装 LEMPLinux、Nginx、MariaDB、PHP
====== ======
在这篇文章中,我们将看看如何在 Fedora 30 Server 上安装 **LEMP** 。LEMP 代表: 在这篇文章中,我们将看看如何在 Fedora 30 Server 上安装 **LEMP** 。LEMP 代表:
@ -17,19 +17,17 @@
* M -> Maria DB * M -> Maria DB
* P -> PHP * P -> PHP
我假设 [Fedora 30][1] 已经安装在你的电脑系统上。
![](https://img.linux.net.cn/data/attachment/album/201912/01/103537wil7hd36dhcxdh03.jpg)
我假设 **[Fedora 30][1]** 已经安装在你的电脑系统上 LEMP 是一组强大的软件设置集合,它安装在一个 Linux 服务器上以帮助使用流行的开发平台来构建网站LEMP 是 LAMP 的一个变种,在其中不是 Apache ,而是使用 EngineXNginx此外使用 MariaDB 代替 MySQL。这篇入门指南是一个安装 Nginx、Maria DB 和 PHP 的独立指南的作品集合
![LEMP-Stack-Fedora30][2] ### 在 Fedora 30 Server 上安装 Nginx、PHP 7.3 和 PHP-FPM
LEMP 是一组强大的软件设置集合,它安装在一个 Linux 服务器上以帮助使用流行的开发平台来构建网站LEMP 是 LAMP 的一个变种,在其中不是 **Apache** ,而是使用 **EngineX (Nginx)** 此外,使用 **MariaDB** 代替 **MySQL** 。这篇入门指南是一个安装 Nginx, Maria DB 和 PHP 的独立指南的作品集合 让我们看看如何在 Fedora 30 Server 上安装 Nginx 和 PHP 以及 PHP FPM
### 在 Fedora 30 Server 上安装 Nginx PHP 7.3 和 PHP-FPM #### 步骤 1) 切换到 root 用户
让我们看看如何在 Fedora 30 Server 上安装 Nginx 和 PHP 以及 PHP FPM 。
### 步骤 1) 切换到 root 用户
在系统上安装 Nginx 的第一步是切换到 root 用户。使用下面的命令: 在系统上安装 Nginx 的第一步是切换到 root 用户。使用下面的命令:
@ -39,25 +37,25 @@ root@linuxtechi ~]$ sudo -i
[root@linuxtechi ~]# [root@linuxtechi ~]#
``` ```
### 步骤 2) 使用 dnf 命令安装 Nginx PHP 7.3 和 PHP FPM #### 步骤 2) 使用 dnf 命令安装 Nginx、PHP 7.3 和 PHP FPM
使用下面的 dnf 命令安装 Nginx 使用下面的 `dnf` 命令安装 Nginx
``` ```
[root@linuxtechi ~]# dnf install nginx php php-fpm php-common -y [root@linuxtechi ~]# dnf install nginx php php-fpm php-common -y
``` ```
### 步骤 3) 安装额外的 PHP 模块 #### 步骤 3) 安装额外的 PHP 模块
PHP 的默认安装仅自带基本模块和最需要的模块,如果你需要额外的模块,像 PHP 支持的 GD XML ,命令行接口 Zend OPCache 功能等等,你总是能够选择你的软件包,并一次性安装所有的东西。查看下面的示例命令: PHP 的默认安装仅自带基本模块和最需要的模块,如果你需要额外的模块,像 PHP 支持的 GD、XML、命令行接口、Zend OPCache 功能等等,你总是能够选择你的软件包,并一次性安装所有的东西。查看下面的示例命令:
``` ```
[root@linuxtechi ~]# sudo dnf install php-opcache php-pecl-apcu php-cli php-pear php-pdo php-pecl-mongodb php-pecl-redis php-pecl-memcache php-pecl-memcached php-gd php-mbstring php-mcrypt php-xml -y [root@linuxtechi ~]# sudo dnf install php-opcache php-pecl-apcu php-cli php-pear php-pdo php-pecl-mongodb php-pecl-redis php-pecl-memcache php-pecl-memcached php-gd php-mbstring php-mcrypt php-xml -y
``` ```
### 步骤 4) 开始 & 启用 Nginx 和 PHP-fpm 服务 #### 步骤 4) 开始 & 启用 Nginx 和 PHP-fpm 服务
使用下面的命令来开始并启用 Nginx 服务 使用下面的命令来开始并启用 Nginx 服务
``` ```
[root@linuxtechi ~]# systemctl start nginx && systemctl enable nginx [root@linuxtechi ~]# systemctl start nginx && systemctl enable nginx
@ -65,7 +63,7 @@ Created symlink /etc/systemd/system/multi-user.target.wants/nginx.service → /u
[root@linuxtechi ~]# [root@linuxtechi ~]#
``` ```
使用下面的命令来开始并启用 PHP-FPM 服务 使用下面的命令来开始并启用 PHP-FPM 服务
``` ```
[root@linuxtechi ~]# systemctl start php-fpm && systemctl enable php-fpm [root@linuxtechi ~]# systemctl start php-fpm && systemctl enable php-fpm
@ -73,9 +71,9 @@ Created symlink /etc/systemd/system/multi-user.target.wants/php-fpm.service →
[root@linuxtechi ~]# [root@linuxtechi ~]#
``` ```
**核实 Nginx (Web 服务) 和 PHP 安装,** #### 步骤 5) 核实 Nginx (Web 服务) 和 PHP 安装
**注意:** 假使操作系统防火墙是启用的,并运行在你的 Fedora 30 系统上,那么使用下面的命令来准许 80 和 443 端口 注意:假使操作系统防火墙是启用的,并运行在你的 Fedora 30 系统上,那么使用下面的命令来准许 80 和 443 端口
``` ```
[root@linuxtechi ~]# firewall-cmd --permanent --add-service=http [root@linuxtechi ~]# firewall-cmd --permanent --add-service=http
@ -88,24 +86,22 @@ success
[root@linuxtechi ~]# [root@linuxtechi ~]#
``` ```
打开网页浏览器,输入下面的 URL http://<Your-Server-IP> 打开网页浏览器,输入下面的 URL http://<Your-Server-IP>
[![Test-Page-HTTP-Server-Fedora-30][3]][4] ![Test-Page-HTTP-Server-Fedora-30][4]
上面的屏幕证实 NGINX 已经成功地安装。 上面的屏幕证实 Nginx 已经成功地安装。
现在,让我们核实 PHP 安装,使用下面的命令创建一个测试 php 页(info.php) 现在,让我们核实 PHP 安装,使用下面的命令创建一个测试 php 页`info.php`
``` ```
[root@linuxtechi ~]# echo "<?php phpinfo(); ?>" > /usr/share/nginx/html/info.php [root@linuxtechi ~]# echo "<?php phpinfo(); ?>" > /usr/share/nginx/html/info.php
[root@linuxtechi ~]# [root@linuxtechi ~]#
``` ```
在网页浏览器中输入下面的 URL 在网页浏览器中输入下面的 URL http://<Your-Server-IP>/info.php
http://<Your-Server-IP>/info.php ![Php-info-page-fedora30][6]
[![Php-info-page-fedora30][5]][6]
上面的页面验证 PHP 7.3.5 已经被成功地安装。现在,让我们安装 MariaDB 数据库服务器。 上面的页面验证 PHP 7.3.5 已经被成功地安装。现在,让我们安装 MariaDB 数据库服务器。
@ -113,7 +109,7 @@ http://<Your-Server-IP>/info.php
MariaDB 是 MySQL 数据库的一个极好的替代品,因为它的工作方式与 MySQL 非常类似,并且兼容性也与 MySQL 一致。让我们看看在 Fedora 30 Server 上安装 MariaDB 的步骤。 MariaDB 是 MySQL 数据库的一个极好的替代品,因为它的工作方式与 MySQL 非常类似,并且兼容性也与 MySQL 一致。让我们看看在 Fedora 30 Server 上安装 MariaDB 的步骤。
### 步骤 1) 切换到 root 用户 #### 步骤 1) 切换到 root 用户
在系统上安装 MariaDB 的第一步是切换到 root 用户,或者你可以使用有 root 权限的本地用户。使用下面的命令: 在系统上安装 MariaDB 的第一步是切换到 root 用户,或者你可以使用有 root 权限的本地用户。使用下面的命令:
@ -122,25 +118,25 @@ MariaDB 是 MySQL 数据库的一个极好的替代品,因为它的工作方
[root@linuxtechi ~]# [root@linuxtechi ~]#
``` ```
### 步骤 2) 使用 dnf 命令安装 MariaDB (10.3) 的最新版本 #### 步骤 2) 使用 dnf 命令安装 MariaDB10.3的最新版本
在 Fedora 30 Server 上使用下面的命令来安装 MariaDB 在 Fedora 30 Server 上使用下面的命令来安装 MariaDB
``` ```
[root@linuxtechi ~]# dnf install mariadb-server -y [root@linuxtechi ~]# dnf install mariadb-server -y
``` ```
### 步骤 3) 开启并启用 MariaDB 服务 #### 步骤 3) 开启并启用 MariaDB 服务
在步骤2中成功地安装 mariadb 后,接下来的步骤是开启 MariaDB 服务。使用下面的命令: 在步骤 2 中成功地安装 MariaDB 后,接下来的步骤是开启 MariaDB 服务。使用下面的命令:
``` ```
[root@linuxtechi ~]# systemctl start mariadb.service ; systemctl enable mariadb.service [root@linuxtechi ~]# systemctl start mariadb.service ; systemctl enable mariadb.service
``` ```
### 步骤 4) 保护 MariaDB 安装 #### 步骤 4) 保护安装好的 MariaDB
当我们安装 MariaDB 服务器时,因为默认情况下没有 root密码,在数据库中也创建匿名用户。因此,来保护 MariaDB 安装,运行下面的 “mysql_secure_installation” 命令 当我们安装 MariaDB 服务器时,因为默认情况下没有 root 密码,在数据库中也会创建匿名用户。因此,要保护安装好的 MariaDB运行下面的 `mysql_secure_installation` 命令:
``` ```
[root@linuxtechi ~]# mysql_secure_installation [root@linuxtechi ~]# mysql_secure_installation
@ -152,7 +148,7 @@ MariaDB 是 MySQL 数据库的一个极好的替代品,因为它的工作方
![Secure-MariaDB-Installation-Part2][8] ![Secure-MariaDB-Installation-Part2][8]
### 步骤 5) 测试 MariaDB 安装 #### 步骤 5) 测试 MariaDB 安装
在你安装后,你总是能够测试是否 MariaDB 被成功地安装在 Fedora 30 Server 上。使用下面的命令: 在你安装后,你总是能够测试是否 MariaDB 被成功地安装在 Fedora 30 Server 上。使用下面的命令:
@ -161,7 +157,7 @@ MariaDB 是 MySQL 数据库的一个极好的替代品,因为它的工作方
Enter password: Enter password:
``` ```
接下来,你将被提示一个密码。输入在 MariaDB 保护安装期间你设置的密码,接下来你可以看到 MariaDB 欢迎屏幕。 接下来,你将被提示一个密码。输入在保护安装好的 MariaDB 期间你设置的密码,接下来你可以看到 MariaDB 欢迎屏幕。
``` ```
Welcome to the MariaDB monitor. Commands end with ; or \g. Welcome to the MariaDB monitor. Commands end with ; or \g.
@ -175,7 +171,7 @@ Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> MariaDB [(none)]>
``` ```
最后,我们已经在你的 Fedora 30 Server 上成功地完成安装 LEMP (Linux, Nginx, MariaDB and PHP) 的所有工作。请在下面的反馈部分发布你的评论和建议,我们将尽快在后面回应。 最后,我们已经在你的 Fedora 30 Server 上成功地完成安装 LEMPLinux、Nginx、MariaDB 和 PHP的所有工作。请在下面的反馈部分发布你的评论和建议,我们将尽快在后面回应。
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
@ -184,7 +180,7 @@ via: https://www.linuxtechi.com/install-lemp-stack-fedora-30-server/
作者:[Pradeep Kumar][a] 作者:[Pradeep Kumar][a]
选题:[lujun9972][b] 选题:[lujun9972][b]
译者:[robsean](https://github.com/robsean) 译者:[robsean](https://github.com/robsean)
校对:[校对者ID](https://github.com/校对者ID) 校对:[wxy](https://github.com/wxy)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出