#: subject: (How to Install LEMP (Linux, Nginx, MariaDB, PHP) on Fedora 30 Server) #: via: (www.linuxtechi.com/install-lem…) #: author: (Pradeep Kumar www.linuxtechi.com/author/prad…)php
在這篇文章中,咱們將看看如何在 Fedora 30 Server 上安裝 LEMP 。LEMP 表明:html
我假設 Fedora 30 已經安裝在你的電腦系統上。mysql
LEMP 是一組強大的軟件設置集合,它安裝在一個 Linux 服務器上以幫助使用流行的開發平臺來構建網站,LEMP 是 LAMP 的一個變種,在其中不是 Apache ,而是使用 EngineX(Nginx),此外,使用 MariaDB 代替 MySQL。這篇入門指南是一個安裝 Nginx、Maria DB 和 PHP 的獨立指南的做品集合。linux
讓咱們看看如何在 Fedora 30 Server 上安裝 Nginx 和 PHP 以及 PHP FPM。nginx
在系統上安裝 Nginx 的第一步是切換到 root 用戶。使用下面的命令:git
root@linuxtechi ~]$ sudo -i
[sudo] password for pkumar:
[root@linuxtechi ~]#
複製代碼
使用下面的 dnf
命令安裝 Nginx:github
[root@linuxtechi ~]# dnf install nginx php php-fpm php-common -y
複製代碼
PHP 的默認安裝僅自帶基本模塊和最須要的模塊,若是你須要額外的模塊,像 PHP 支持的 GD、XML、命令行接口、Zend OPCache 功能等等,你老是可以選擇你的軟件包,並一次性安裝全部的東西。查看下面的示例命令:redis
[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
複製代碼
使用下面的命令來開始並啓用 Nginx 服務:sql
[root@linuxtechi ~]# systemctl start nginx && systemctl enable nginx
Created symlink /etc/systemd/system/multi-user.target.wants/nginx.service → /usr/lib/systemd/system/nginx.service.
[root@linuxtechi ~]#
複製代碼
使用下面的命令來開始並啓用 PHP-FPM 服務:mongodb
[root@linuxtechi ~]# systemctl start php-fpm && systemctl enable php-fpm
Created symlink /etc/systemd/system/multi-user.target.wants/php-fpm.service → /usr/lib/systemd/system/php-fpm.service.
[root@linuxtechi ~]#
複製代碼
注意:假使操做系統防火牆是啓用的,並運行在你的 Fedora 30 系統上,那麼使用下面的命令來准許 80 和 443 端口:
[root@linuxtechi ~]# firewall-cmd --permanent --add-service=http
success
[root@linuxtechi ~]#
[root@linuxtechi ~]# firewall-cmd --permanent --add-service=https
success
[root@linuxtechi ~]# firewall-cmd --reload
success
[root@linuxtechi ~]#
複製代碼
打開網頁瀏覽器,輸入下面的 URL: http:// 。
上面的屏幕證明 Nginx 已經成功地安裝。
如今,讓咱們覈實 PHP 安裝,使用下面的命令建立一個測試 php 頁(info.php
):
[root@linuxtechi ~]# echo "<?php phpinfo(); ?>" > /usr/share/nginx/html/info.php
[root@linuxtechi ~]#
複製代碼
在網頁瀏覽器中輸入下面的 URL, http:///info.php
上面的頁面驗證 PHP 7.3.5 已經被成功地安裝。如今,讓咱們安裝 MariaDB 數據庫服務器。
MariaDB 是 MySQL 數據庫的一個極好的替代品,由於它的工做方式與 MySQL 很是相似,而且兼容性也與 MySQL 一致。讓咱們看看在 Fedora 30 Server 上安裝 MariaDB 的步驟。
在系統上安裝 MariaDB 的第一步是切換到 root 用戶,或者你可使用有 root 權限的本地用戶。使用下面的命令:
[root@linuxtechi ~]# sudo -i
[root@linuxtechi ~]#
複製代碼
在 Fedora 30 Server 上使用下面的命令來安裝 MariaDB:
[root@linuxtechi ~]# dnf install mariadb-server -y
複製代碼
在步驟 2 中成功地安裝 MariaDB 後,接下來的步驟是開啓 MariaDB 服務。使用下面的命令:
[root@linuxtechi ~]# systemctl start mariadb.service ; systemctl enable mariadb.service
複製代碼
當咱們安裝 MariaDB 服務器時,由於默認狀況下沒有 root 密碼,在數據庫中也會建立匿名用戶。所以,要保護安裝好的 MariaDB,運行下面的 mysql_secure_installation
命令:
[root@linuxtechi ~]# mysql_secure_installation
複製代碼
接下來你將被提示一些問題,僅回答下面展現的問題:
在你安裝後,你老是可以測試是否 MariaDB 被成功地安裝在 Fedora 30 Server 上。使用下面的命令:
[root@linuxtechi ~]# mysql -u root -p
Enter password:
複製代碼
接下來,你將被提示一個密碼。輸入在保護安裝好的 MariaDB 期間你設置的密碼,接下來你能夠看到 MariaDB 歡迎屏幕。
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 17
Server version: 10.3.12-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)]>
複製代碼
最後,咱們已經在你的 Fedora 30 Server 上成功地完成安裝 LEMP(Linux、Nginx、MariaDB 和 PHP)的全部工做。請在下面的反饋部分發布你的評論和建議,咱們將盡快在後面迴應。
via: www.linuxtechi.com/install-lem…
做者:Pradeep Kumar 選題:lujun9972 譯者:robsean 校對:wxy