lamp

1. lamp簡介

所謂lamp,其實就是由Linux+Apache+Mysql/MariaDB+Php/Perl/Python的一組動態網站或者服務器的開源軟件,除Linux外其它各部件自己都是各自獨立的程序,可是由於常常被放在一塊兒使用,擁有了愈來愈高的兼容度,共同組成了一個強大的Web應用程序平臺。php

LAMP指的是Linux(操做系統)、Apache(HTTP服務器)、MySQL(也指MariaDB,數據庫軟件)和PHP(有時也是指Perl或Python)的第一個字母,通常用來創建web應用平臺。html

2. web服務器工做流程

web服務器的資源分爲兩種,靜態資源和動態資源python

  • 靜態資源就是指靜態內容,客戶端從服務器得到的資源的表現形式與原文件相同。能夠簡單的理解爲就是直接存儲於文件系統中的資源
  • 動態資源則一般是程序文件,須要在服務器執行以後,將執行的結果返回給客戶端

那麼web服務器如何執行程序並將結果返回給客戶端呢?下面經過一張圖來講明一下web服務器如何處理客戶端的請求mysql

如上圖所示linux

階段①顯示的是httpd服務器(即apache)和php服務器經過FastCGI協議進行通訊,且php做爲獨立的服務進程運行web

階段②顯示的是php程序和mysql數據庫間經過mysql協議進行通訊。php與mysql本沒有什麼聯繫,可是由Php語言寫成的程序能夠與mysql進行數據交互。同理perl和python寫的程序也能夠與mysql數據庫進行交互sql

2.1 cgi與fastcgi

上圖階段①中提到了FastCGI,下面咱們來了解下CGI與FastCGI。數據庫

CGI(Common Gateway Interface,通用網關接口),CGI是外部應用程序(CGI程序)與WEB服務器之間的接口標準,是在CGI程序和Web服務器之間傳遞信息的過程。CGI規範容許Web服務器執行外部程序,並將它們的輸出發送給Web瀏覽器,CGI將web的一組簡單的靜態超媒體文檔變成一個完整的新的交互式媒體。apache

FastCGI(Fast Common Gateway Interface)是CGI的改良版,CGI是經過啓用一個解釋器進程來處理每一個請求,耗時且耗資源,而FastCGI則是經過master-worker形式來處理每一個請求,即啓動一個master主進程,而後根據配置啓動幾個worker進程,當請求進來時,master會從worker進程中選擇一個去處理請求,這樣就避免了重複的生成和殺死進程帶來的頻繁cpu上下文切換而致使耗時json

2.2 httpd與php結合的方式

httpd與php結合的方式有如下三種:

  • modules:php將以httpd的擴展模塊形式存在,須要加載動態資源時,httpd能夠直接經過php模塊來加工資源並返回給客戶端
  • CGI:httpd須要加載動態資源時,經過CGI與php解釋器聯繫,得到php執行的結果,此時httpd負責與php鏈接的創建和斷開等
  • FastCGI:利用php-fpm機制,啓動爲服務進程,php自行運行爲一個服務,https經過socket與php通訊

較於CGI方式,FastCGI更爲經常使用,不多有人使用CGI方式來加載動態資源

2.3 web工做流程

經過上面的圖說明一下web的工做流程:

  • 客戶端經過http協議請求web服務器資源
  • web服務器收到請求後判斷客戶端請求的資源是靜態資源或是動態資源
    • 如果靜態資源則直接從本地文件系統取之返回給客戶端。
    • 不然若爲動態資源則經過FastCGI協議與php服務器聯繫,經過CGI程序的master進程調度worker進程來執行程序以得到客戶端請求的動態資源,並將執行的結果經過FastCGI協議返回給httpd服務器,httpd服務器收到php的執行結果後將其封裝爲http響應報文響應給客戶端。在執行程序獲取動態資源時若須要得到數據庫中的資源時,由Php服務器經過mysql協議與MySQL/MariaDB服務器交互,取之然後返回給httpd,httpd將從php服務器收到的執行結果封裝成http響應報文響應給客戶端。

3. lamp平臺構建

環境說明:

系統平臺 IP 須要安裝的服務
centos7
redhat7
192.168.56.22 httpd-2.4
mysql-5.7
php
php-mysql

lamp平臺軟件安裝次序:

httpd --> mysql --> php 

注意:php要求httpd使用prefork MPM

3.1 安裝httpd

//安裝開發工具包 [root@22liuzhenchao ~]# yum grouplist 已加載插件:product-id, search-disabled-repos, subscription-manager This system is not registered with an entitlement server. You can use subscription-manager to register. 可用的環境分組: 最小安裝 基礎設施服務器 計算節點 文件及打印服務器 基本網頁服務器 虛擬化主機 帶 GUI 的服務器 GNOME 桌面 KDE Plasma Workspaces 開發及生成工做站 可用組: 傳統 UNIX 兼容性 兼容性程序庫 圖形管理工具 安全性工具 開發工具 控制檯互聯網工具 智能卡支持 科學記數法支持 系統管理 系統管理工具 完成 [root@22liuzhenchao ~]# yum groups mark install '開發工具' 已加載插件:product-id, search-disabled-repos, subscription-manager This system is not registered with an entitlement server. You can use subscription-manager to register. Marked install: 開發工具 //建立apache服務的用戶和組 [root@22liuzhenchao ~]# groupadd -r apache [root@22liuzhenchao ~]# useradd -r -M -s /sbin/nologin -g apache apache //安裝解壓工具 [root@22liuzhenchao ~]# yum -y install bzip2 bzip2-devel //安裝依賴包 [root@22liuzhenchao ~]# yum -y install openssl-devel pcre-devel expat-devel libtool 已加載插件:product-id, search-disabled-repos, subscription-manager This system is not registered with an entitlement server. You can use subscription-manager to register. 正在解決依賴關係 ...... ...... 做爲依賴被升級: e2fsprogs.x86_64 0:1.42.9-13.el7 e2fsprogs-libs.x86_64 0:1.42.9-13.el7 glibc.x86_64 0:2.17-260.el7_6.5 glibc-common.x86_64 0:2.17-260.el7_6.5 krb5-libs.x86_64 0:1.15.1-37.el7_6 libcom_err.x86_64 0:1.42.9-13.el7 libgcc.x86_64 0:4.8.5-36.el7_6.2 libgomp.x86_64 0:4.8.5-36.el7_6.2 libselinux.x86_64 0:2.5-14.1.el7 libselinux-python.x86_64 0:2.5-14.1.el7 libselinux-utils.x86_64 0:2.5-14.1.el7 libsepol.x86_64 0:2.5-10.el7 libss.x86_64 0:1.42.9-13.el7 openssl.x86_64 1:1.0.2k-16.el7_6.1 openssl-libs.x86_64 1:1.0.2k-16.el7_6.1 zlib.x86_64 0:1.2.7-18.el7 完畢! //下載和安裝apr以及apr-util [root@22liuzhenchao ~]# cd /usr/src [root@22liuzhenchao src]# wget http://mirror.bit.edu.cn/apache//apr/apr-1.6.5.tar.bz2 http://mirror.bit.edu.cn/apache//apr/apr-util-1.6.1.tar.bz2 --2019-05-13 22:48:40-- http://mirror.bit.edu.cn/apache//apr/apr-1.6.5.tar.bz2 正在解析主機 mirror.bit.edu.cn (mirror.bit.edu.cn)... 219.143.204.117, 202.204.80.77, 2001:da8:204:2001:250:56ff:fea1:22 正在鏈接 mirror.bit.edu.cn (mirror.bit.edu.cn)|219.143.204.117|:80... 已鏈接。 已發出 HTTP 請求,正在等待迴應... 302 Found 位置:http://64.123.28.134/files/905700000068C2C3/mirrors.hust.edu.cn/apache/apr/apr-1.6.5.tar.bz2 [跟隨至新的 URL] --2019-05-13 22:48:40-- http://64.123.28.134/files/905700000068C2C3/mirrors.hust.edu.cn/apache/apr/apr-1.6.5.tar.bz2 正在鏈接 64.123.28.134:80... 已鏈接。 已發出 HTTP 請求,正在等待迴應... 200 OK 長度:855393 (835K) [application/octet-stream] 正在保存至: 「apr-1.6.5.tar.bz2」 100%[=================================================================================================================================================>] 855,393 3.86MB/s 用時 0.2s 2019-05-13 22:48:41 (3.86 MB/s) - 已保存 「apr-1.6.5.tar.bz2」 [855393/855393]) --2019-05-13 22:48:41-- http://mirror.bit.edu.cn/apache//apr/apr-util-1.6.1.tar.bz2 正在鏈接 mirror.bit.edu.cn (mirror.bit.edu.cn)|219.143.204.117|:80... 已鏈接。 已發出 HTTP 請求,正在等待迴應... 302 Found 位置:http://64.123.28.135/files/319000000044E45E/mirrors.shu.edu.cn/apache//apr/apr-util-1.6.1.tar.bz2 [跟隨至新的 URL] --2019-05-13 22:48:44-- http://64.123.28.135/files/319000000044E45E/mirrors.shu.edu.cn/apache//apr/apr-util-1.6.1.tar.bz2 正在鏈接 64.123.28.135:80... 已鏈接。 已發出 HTTP 請求,正在等待迴應... 200 OK 長度:428595 (419K) [application/octet-stream] 正在保存至: 「apr-util-1.6.1.tar.bz2」 100%[=================================================================================================================================================>] 428,595 2.66MB/s 用時 0.2s 2019-05-13 22:48:44 (2.66 MB/s) - 已保存 「apr-util-1.6.1.tar.bz2」 [428595/428595]) FINISHED --2019-05-13 22:48:44-- Total wall clock time: 4.1s Downloaded: 2 files, 1.2M in 0.4s (3.36 MB/s) [root@22liuzhenchao src]# ls apr-1.6.5.tar.bz2 apr-util-1.6.1.tar.bz2 debug kernels [root@22liuzhenchao src]# tar -xf apr-1.6.5.tar.bz2 [root@22liuzhenchao src]# tar -xf apr-util-1.6.1.tar.bz2 [root@22liuzhenchao src]# ls apr-1.6.5 apr-1.6.5.tar.bz2 apr-util-1.6.1 apr-util-1.6.1.tar.bz2 debug kernels [root@22liuzhenchao src]# cd apr-1.6.5 [root@22liuzhenchao apr-1.6.5]# vim configure cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 # $RM "$cfgfile" //將此行加上註釋,或者刪除此行 [root@22liuzhenchao apr-1.6.5]# ./configure --prefix=/usr/local/apr 配置過程略... [root@22liuzhenchao apr-1.6.5]# make && make install 編譯安裝過程略... [root@22liuzhenchao apr-1.6.5]# cd ../apr-util-1.6.1 [root@22liuzhenchao apr-util-1.6.1]# ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr 配置過程略... [root@22liuzhenchao apr-util-1.6.1]# make && make install 編譯安裝過程略... //編譯安裝httpd [root@22liuzhenchao src]# wget https://mirrors.tuna.tsinghua.edu.cn/apache/httpd/httpd-2.4.39.tar.bz2 --2019-05-13 23:01:46-- https://mirrors.tuna.tsinghua.edu.cn/apache/httpd/httpd-2.4.39.tar.bz2 正在解析主機 mirrors.tuna.tsinghua.edu.cn (mirrors.tuna.tsinghua.edu.cn)... 101.6.8.193, 2402:f000:1:408:8100::1 正在鏈接 mirrors.tuna.tsinghua.edu.cn (mirrors.tuna.tsinghua.edu.cn)|101.6.8.193|:443... 已鏈接。 已發出 HTTP 請求,正在等待迴應... 200 OK 長度:7030539 (6.7M) [application/octet-stream] 正在保存至: 「httpd-2.4.39.tar.bz2」 100%[=================================================================================================================================================>] 7,030,539 2.94MB/s 用時 2.3s 2019-05-13 23:01:49 (2.94 MB/s) - 已保存 「httpd-2.4.39.tar.bz2」 [7030539/7030539]) [root@22liuzhenchao src]# tar -xf httpd-2.4.39.tar.bz2 [root@22liuzhenchao src]# cd httpd-2.4.39 [root@22liuzhenchao httpd-2.4.39]# ./configure --prefix=/usr/local/apache \ > --sysconfdir=/etc/httpd24 \ > --enable-so \ > --enable-ssl \ > --enable-cgi \ > --enable-rewrite \ > --with-zlib \ > --with-pcre \ > --with-apr=/usr/local/apr \ > --with-apr-util=/usr/local/apr-util/ \ > --enable-modules=most \ > --enable-mpms-shared=all \ > --with-mpm=prefork [root@22liuzhenchao httpd-2.4.39]# make && make install 編譯安裝過程略... //安裝後配置 [root@22liuzhenchao profile.d]# echo 'export PATH=/usr/local/apache/bin:$PATH' > /etc/profile.d/httpd.sh [root@22liuzhenchao profile.d]# . //etc/profile.d/httpd.sh [root@22liuzhenchao ~]# ln -s /usr/local/apache/include/ /usr/include/httpd [root@22liuzhenchao ~]# echo 'MANPATH /usr/local/apache/man' >> /etc/man.config //取消ServerName前面的註釋 [root@22liuzhenchao ~]# sed -i '/#ServerName/s/#//g' /etc/httpd24/httpd.conf //啓動apache [root@22liuzhenchao ~]# apachectl start [root@22liuzhenchao ~]# ss -antl State Recv-Q Send-Q Local Address:Port Peer Address:Port LISTEN 0 128 *:22 *:* LISTEN 0 100 127.0.0.1:25 *:* LISTEN 0 128 :::80 :::* LISTEN 0 128 :::22 :::* LISTEN 0 100 ::1:25 :::*

3.2 安裝mysql

//安裝依賴包 [root@22liuzhenchao ~]# yum -y install ncurses-devel openssl-devel openssl cmake mariadb-devel 已加載插件:product-id, search-disabled-repos, subscription-manager This system is not registered with an entitlement server. You can use subscription-manager to register. 軟件包 1:openssl-devel-1.0.2k-16.el7_6.1.x86_64 已安裝而且是最新版本 軟件包 1:openssl-1.0.2k-16.el7_6.1.x86_64 已安裝而且是最新版本 正在解決依賴關係 ================================================================================================ Install 3 Packages (+1 Dependent package) Total download size: 8.8 M ..... 做爲依賴被升級: mariadb-libs.x86_64 1:5.5.60-1.el7_5 完畢! //建立用戶和組 [root@22liuzhenchao ~]# groupadd -r -g 306 mysql [root@22liuzhenchao ~]# useradd -M -s /sbin/nologin -g 306 -u 306 mysql //下載二進制格式的mysql軟件包 [root@22liuzhenchao ~]# cd /usr/src [root@22liuzhenchao src]# wget https://downloads.mysql.com/archives/get/file/mysql-5.7.22-linux-glibc2.12-x86_64.tar.gz 過程略...... //解壓軟件至/usr/local/ [root@22liuzhenchao src]# tar xf mysql-5.7.22-linux-glibc2.12-x86_64.tar.gz -C /usr/local [root@22liuzhenchao src]# ls /usr/local apache apr apr-util bin etc games include lib lib64 libexec mysql-5.7.22-linux-glibc2.12-x86_64 sbin share src [root@22liuzhenchao src]# cd /usr/local/ [root@22liuzhenchao local]# ln -sv mysql-5.7.22-linux-glibc2.12-x86_64/ mysql "mysql" -> "mysql-5.7.22-linux-glibc2.12-x86_64/" //修改目錄/usr/local/mysql的屬主屬組 [root@22liuzhenchao local]# chown -R mysql.mysql mysql* [root@22liuzhenchao local]# ll 總用量 0 drwxr-xr-x. 13 root root 152 5月 13 23:07 apache drwxr-xr-x. 6 root root 58 5月 13 22:57 apr drwxr-xr-x. 5 root root 43 5月 13 22:59 apr-util drwxr-xr-x. 2 root root 6 12月 15 2017 bin drwxr-xr-x. 2 root root 6 12月 15 2017 etc drwxr-xr-x. 2 root root 6 12月 15 2017 games drwxr-xr-x. 2 root root 6 12月 15 2017 include drwxr-xr-x. 2 root root 6 12月 15 2017 lib drwxr-xr-x. 2 root root 6 12月 15 2017 lib64 drwxr-xr-x. 2 root root 6 12月 15 2017 libexec lrwxrwxrwx. 1 mysql mysql 36 5月 13 23:30 mysql -> mysql-5.7.22-linux-glibc2.12-x86_64/ drwxr-xr-x. 9 mysql mysql 129 5月 13 23:28 mysql-5.7.22-linux-glibc2.12-x86_64 drwxr-xr-x. 2 root root 6 12月 15 2017 sbin drwxr-xr-x. 5 root root 49 5月 13 17:09 share drwxr-xr-x. 2 root root 6 12月 15 2017 src //添加環境變量 [root@22liuzhenchao local]# echo 'export PATH=/usr/local/mysql/bin:$PATH' > /etc/profile.d/mysql.sh [root@22liuzhenchao local]# source /etc/profile.d/mysql.sh [root@22liuzhenchao local]# echo $PATH /usr/local/mysql/bin:/usr/local/apache/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin //創建數據存放目錄 [root@22liuzhenchao local]# mkdir /opt/data [root@22liuzhenchao local]# chown -R mysql.mysql /opt/data [root@22liuzhenchao local]# ll /opt/data -d drwxr-xr-x. 2 mysql mysql 6 5月 13 23:35 /opt/data //初始化數據庫 [root@22liuzhenchao local]# mysqld --initialize --user=mysql --datadir=/opt/data 2019-05-13T15:37:29.582505Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details). 2019-05-13T15:37:29.780366Z 0 [Warning] InnoDB: New log files created, LSN=45790 2019-05-13T15:37:29.831830Z 0 [Warning] InnoDB: Creating foreign key constraint system tables. 2019-05-13T15:37:29.923965Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: 04993e66-7595-11e9-9683-000c29670698. 2019-05-13T15:37:29.924593Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened. 2019-05-13T15:37:29.925241Z 1 [Note] A temporary password is generated for root@localhost: Tjhhwdesj5&f //請注意,這個命令的最後會生成一個臨時密碼,此處密碼是Tjhhwdesj5&f //配置mysql [root@22liuzhenchao local]# ln -sv /usr/local/mysql/include/ /usr/local/include/mysql "/usr/local/include/mysql" -> "/usr/local/mysql/include/" [root@22liuzhenchao local]# echo '/usr/local/mysql/lib' > /etc/ld.so.conf.d/mysql.conf [root@22liuzhenchao local]# ldconfig -v ldconfig: 沒法對 /libx32 進行 stat 操做: 沒有那個文件或目錄 ldconfig: 屢次給出路徑「/usr/lib」 ldconfig: 屢次給出路徑「/usr/lib64」 ldconfig: 沒法對 /usr/libx32 進行 stat 操做: 沒有那個文件或目錄 /usr/lib64/mysql: libmysqlclient.so.18 -> libmysqlclient_r.so /usr/local/mysql/lib: libmysqlclient.so.20 -> libmysqlclient.so.20.3.9 /lib: /lib64: libarchive.so.13 -> libarchive.so.13.1.2 libmpfr.so.4 -> libmpfr.so.4.1.1 libDeployPkg.so.0 -> libDeployPkg.so.0.0.0 libisccfg-export.so.90 -> libisccfg-export.so.90.0.7 libisc-export.so.95 -> libisc-export.so.95.2.1 ...... ...... /lib/sse2: (hwcap: 0x0000000004000000) /lib64/sse2: (hwcap: 0x0000000004000000) /lib64/tls: (hwcap: 0x8000000000000000) [root@22liuzhenchao local]# ldconfig -p |grep mysql libmysqlclient.so.20 (libc6,x86-64) => /usr/local/mysql/lib/libmysqlclient.so.20 libmysqlclient.so.18 (libc6,x86-64) => /usr/lib64/mysql/libmysqlclient.so.18 libmysqlclient.so (libc6,x86-64) => /usr/lib64/mysql/libmysqlclient.so libmysqlclient.so (libc6,x86-64) => /usr/local/mysql/lib/libmysqlclient.so //生成配置文件 [root@22liuzhenchao local]# cat >/etc/my.cnf<<EOF > [mysqld] > basedir=/usr/local/mysql > datadir=/opt/data > socket=/tmp/mysql.sock > port=3306 > pid-file=/opt/data/mysql.pid > user=mysql > skip-name-resolve > EOF //配置服務啓動腳本 [root@22liuzhenchao ~]# cp -a /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld [root@22liuzhenchao ~]# sed -ri 's#^(basedir=).*#\1/usr/local/mysql#g' /etc/init.d/mysqld [root@22liuzhenchao ~]# sed -ri 's#^(datadir=).*#\1/opt/data#g' /etc/init.d/mysqld //啓動mysql [root@22liuzhenchao ~]# service mysqld start Starting MySQL.Logging to '/opt/data/22liuzhenchao.err'. SUCCESS! [root@22liuzhenchao ~]# ss -antl State Recv-Q Send-Q Local Address:Port Peer Address:Port LISTEN 0 128 *:22 *:* LISTEN 0 100 127.0.0.1:25 *:* LISTEN 0 80 :::3306 :::* LISTEN 0 128 :::80 :::* LISTEN 0 128 :::22 :::* LISTEN 0 100 ::1:25 :::* //修改密碼 //使用臨時密碼登陸 [root@22liuzhenchao ~]# mysql -uroot -p'Tjhhwdesj5&f' -e 'set password = password("liuzhenchao123!");' --connect-expired-password mysql: [Warning] Using a password on the command line interface can be insecure.

3.3 安裝php

//配置yum源 [root@22liuzhenchao ~]# cd /etc/yum.repos.d/ [root@22liuzhenchao yum.repos.d]# wget http://mirrors.163.com/.help/CentOS7-Base-163.repo --2019-05-13 23:56:41-- http://mirrors.163.com/.help/CentOS7-Base-163.repo 正在解析主機 mirrors.163.com (mirrors.163.com)... 59.111.0.251 正在鏈接 mirrors.163.com (mirrors.163.com)|59.111.0.251|:80... 已鏈接。 已發出 HTTP 請求,正在等待迴應... 200 OK 長度:1572 (1.5K) [application/octet-stream] 正在保存至: 「CentOS7-Base-163.repo」 100%[=================================================================================================================================================>] 1,572 --.-K/s 用時 0s 2019-05-13 23:56:42 (57.2 MB/s) - 已保存 「CentOS7-Base-163.repo」 [1572/1572]) [root@22liuzhenchao yum.repos.d]# sed -i 's/\$releasever/7/g' /etc/yum.repos.d/CentOS7-Base-163.repo [root@22liuzhenchao yum.repos.d]# sed -i 's/^enabled=.*/enabled=1/g' /etc/yum.repos.d/CentOS7-Base-163.repo [root@22liuzhenchao yum.repos.d]# yum -y install epel-release [root@22liuzhenchao yum.repos.d]# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm 安裝過程略.... //安裝依賴包 [root@22liuzhenchao yum.repos.d]# yum -y install libxml2 libxml2-devel openssl openssl-devel bzip2 bzip2-devel libcurl libcurl-devel libicu-devel libjpeg libjpeg-devel libpng libpng-devel openldap-devel libpcre-devel freetype freetype-devel gmp gmp-devel libmcrypt libmcrypt-devel readline readline-devel libxslt libxslt-devel mhash mhash-devel php72w-mysqlnd 安裝過程略.... //下載php [root@22liuzhenchao ~]# cd /usr/src [root@22liuzhenchao src]# wget http://cn.php.net/distributions/php-7.2.8.tar.xz 下載過程略.... //編譯安裝php [root@22liuzhenchao src]# tar xf php-7.2.8.tar.xz [root@22liuzhenchao src]# cd php-7.2.8 [root@22liuzhenchao php-7.2.8]# ./configure --prefix=/usr/local/php7 \ --with-config-file-path=/etc \ --enable-fpm \ --enable-inline-optimization \ --disable-debug \ --disable-rpath \ --enable-shared \ --enable-soap \ --with-openssl \ --enable-bcmath \ --with-iconv \ --with-bz2 \ --enable-calendar \ --with-curl \ --enable-exif \ --enable-ftp \ --with-gd \ --with-jpeg-dir \ --with-png-dir \ --with-zlib-dir \ --with-freetype-dir \ --with-gettext \ --enable-json \ --enable-mbstring \ --enable-pdo \ --with-mysqli=mysqlnd \ --with-pdo-mysql=mysqlnd \ --with-readline \ --enable-shmop \ --enable-simplexml \ --enable-sockets \ --enable-zip \ --enable-mysqlnd-compression-support \ --with-pear \ --enable-pcntl \ --enable-posix [root@22liuzhenchao php-7.2.8]# make -j $(cat /proc/cpuinfo |grep processor|wc -l) 編譯過程略.... [root@22liuzhenchao php-7.2.8]# make install 安裝過程略.... //安裝後配置 [root@22liuzhenchao php-7.2.8]# echo 'export PATH=/usr/local/php7/bin:$PATH' > /etc/profile.d/php7.sh [root@22liuzhenchao php-7.2.8]# source /etc/profile.d/php7.sh [root@22liuzhenchao php-7.2.8]# which php /usr/local/php7/bin/php [root@22liuzhenchao php-7.2.8]# php -v PHP 7.2.8 (cli) (built: May 14 2019 00:18:14) ( NTS ) Copyright (c) 1997-2018 The PHP Group Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies //配置php-fpm [root@22liuzhenchao php-7.2.8]# cp php.ini-production /etc/php.ini cp:是否覆蓋"/etc/php.ini"? yes [root@22liuzhenchao php-7.2.8]# cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm [root@22liuzhenchao php-7.2.8]# chmod +x /etc/rc.d/init.d/php-fpm [root@22liuzhenchao php-7.2.8]# cp /usr/local/php7/etc/php-fpm.conf.default /usr/local/php7/etc/php-fpm.conf [root@22liuzhenchao php-7.2.8]# cp /usr/local/php7/etc/php-fpm.d/www.conf.default /usr/local/php7/etc/php-fpm.d/www.conf //編輯php-fpm的配置文件(/usr/local/php7/etc/php-fpm.conf): //配置fpm的相關選項爲你所須要的值: [root@22liuzhenchao php-7.2.8]# vim /usr/local/php7/etc/php-fpm.conf ..... ..... pm.max_children = 50 //最多同時提供50個進程提供50個併發服務 pm.start_servers = 5 //啓動時啓動5個進程 pm.min_spare_servers = 2 //最小空閒進程數 pm.max_spare_servers = 8 //最大空閒進程數 [root@22liuzhenchao php-7.2.8]# tail /usr/local/php7/etc/php-fpm.conf ; files from a glob(3) pattern. This directive can be used everywhere in the ; file. ; Relative path can also be used. They will be prefixed by: ; - the global prefix if it's been set (-p argument) ; - /usr/local/php7 otherwise include=/usr/local/php7/etc/php-fpm.d/*.conf pm.max_children = 50 pm.start_servers = 5 pm.min_spare_servers = 2 pm.max_spare_servers = 8 //啓動php-fpm [root@22liuzhenchao ~]# service php-fpm start Starting php-fpm done //默認狀況下,fpm監聽在127.0.0.1的9000端口,也可使用以下命令驗證其是否已經監聽在相應的套接字 [root@22liuzhenchao ~]# ss -antl State Recv-Q Send-Q Local Address:Port Peer Address:Port LISTEN 0 128 127.0.0.1:9000 *:* LISTEN 0 128 *:22 *:* LISTEN 0 100 127.0.0.1:25 *:* LISTEN 0 80 :::3306 :::* LISTEN 0 128 :::80 :::* LISTEN 0 128 :::22 :::* LISTEN 0 100 ::1:25 :::*

3.4 配置apache

3.4.1 啓用代理模塊

在apache httpd 2.4之後已經專門有一個模塊針對FastCGI的實現,此模塊爲mod_proxy_fcgi.so,它實際上是做爲mod_proxy.so模塊的擴展,所以,這兩個模塊都要加載,編輯httpd.conf文件,取消如下兩行內容的註釋:

  • LoadModule proxy_module modules/mod_proxy.so
  • LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so

 

//啓用httpd的相關模塊
[root@22liuzhenchao ~]# sed -i '/proxy_module/s/#//g' /etc/httpd24/httpd.conf [root@22liuzhenchao ~]# sed -i '/proxy_fcgi_module/s/#//g' /etc/httpd24/httpd.conf

3.4.2 配置虛擬主機

在須要使用fcgi的虛擬主機中添加相似以下兩行:

ProxyRequests Off       //關閉正向代理 ProxyPassMatch ^/(.*\.php)$ fcgi://127.0.0.1:9000/PATH/TO/DOCUMENT_ROOT/$1

例如:

ProxyPassMatch ^/(.*\.php)$ fcgi://127.0.0.1:9000/var/www/html/idfsoft.com/$1

以上設置表示把以.php結尾的文件請求發送到php-fpm進程,php-fpm至少須要知道運行的目錄和URI,因此這裏直接在fcgi://127.0.0.1:9000後指明瞭這兩個參數,其它參數的傳遞已經被mod_proxy_fcgi.so進行了封裝,不須要手動指定。

注意:

這裏寫的/var/www/html/是yum源安裝方式生成的網頁存放目錄,這裏必須改爲你編譯安裝指定的網頁存放路徑,禁止直接複製我這裏的路徑 這裏的idfsoft.com是域名,你必須改爲你所使用的域名,禁止直接複製此處的域名 這裏的$1表示匹配全部以.php結尾的http請求

 

//建立虛擬主機目錄並生成php測試頁面 [root@22liuzhenchao ~]# mkdir /usr/local/apache/htdocs/liuzhenchao.com [root@22liuzhenchao ~]# cat > /usr/local/apache/htdocs/liuzhenchao.com/index.php <<EOF <?php phpinfo(); ?> EOF [root@22liuzhenchao ~]# chown -R apache.apache /usr/local/apache/htdocs/ [root@22liuzhenchao ~]# ll /usr/local/apache/htdocs/ -d drwxr-xr-x. 3 apache apache 47 5月 14 00:34 /usr/local/apache/htdocs/ [root@22liuzhenchao ~]# vim /etc/httpd24/httpd.conf //在配置文件的最後加入如下內容 <VirtualHost *:80> DocumentRoot "/usr/local/apache/htdocs/liuzhenchao.com" ServerName www.liuzhenchao.com ProxyRequests Off ProxyPassMatch ^/(.*\.php)$ fcgi://127.0.0.1:9000/usr/local/apache/htdocs/liuzhenchao.com/$1 <Directory "/usr/local/apache/htdocs/liuzhenchao.com"> Options none AllowOverride none Require all granted </Directory> </VirtualHost> [root@22liuzhenchao ~]# vim /etc/httpd24/httpd.conf //搜索AddType,添加如下內容 # If the AddEncoding directives above are commented-out, then you # probably should define those extensions to indicate media types: # AddType application/x-compress .Z AddType application/x-gzip .gz .tgz AddType application/x-httpd-php .php //添加此行 AddType application/x-httpd-php-source .phps //添加此行 [root@22liuzhenchao ~]# sed -i '/ DirectoryIndex/s/index.html/index.php index.html/g' /etc/httpd24/httpd.conf //重啓apache服務 [root@22liuzhenchao ~]# apachectl stop [root@22liuzhenchao ~]# apachectl start [root@22liuzhenchao ~]# ss -antl State Recv-Q Send-Q Local Address:Port Peer Address:Port LISTEN 0 128 127.0.0.1:9000 *:* LISTEN 0 128 *:22 *:* LISTEN 0 100 127.0.0.1:25 *:* LISTEN 0 80 :::3306 :::* LISTEN 0 128 :::80 :::* LISTEN 0 128 :::22 :::* LISTEN 0 100 ::1:25 :::*

3.5 驗證

1.修改本地hosts文件,添加域名與IP的映射

windows驗證,將C:\Windows\System32\drivers\etc下hosts文件拖出至桌面修改

 

 

 

2.在瀏覽器上使用域名訪問,若看到如下界面則表示lamp架構搭建成功,不然請檢查你的操做

 

相關文章
相關標籤/搜索