ubuntu18.04 安装PHP7.2并且配置Nginx支持php-fpm模块

PHP7.2安装

1.首先在PHP官网下载

// 下载
wget -c https://www.php.net/distributions/php-7.2.20.tar.gz
// 解压
tar -zxvf php-7.2.20.tar.gz
// 进入
cd php-7.2.20

2.安装需要的配置

sudo apt-get install libxml2
sudo apt-get install libxml2-devel
sudo apt-get install openssl
sudo apt-get install openssl-devel
sudo apt-get install curl
sudo apt-get install curl-devel
sudo apt-get install libjpeg
sudo apt-get install libjpeg-devel
sudo apt-get install libpng
sudo apt-get install libpng-devel
sudo apt-get install freetype 
sudo apt-get install freetype-devel
sudo apt-get install pcre
sudo apt-get install pcre-devel
sudo apt-get install libxslt
sudo apt-get install libxslt-devel
sudo apt-get install bzip2
sudo apt-get install bzip2-devel

3.编译配置

./configure --prefix=/usr/local/php \
--with-curl \
--with-freetype-dir \
--with-gd \
--with-gettext \
--with-iconv-dir \
--with-kerberos \
--with-libdir=lib64 \
--with-libxml-dir \
--with-mysqli \
--with-openssl \
--with-pcre-regex \
--with-pdo-mysql \
--with-pdo-sqlite \
--with-pear \
--with-png-dir \
--with-jpeg-dir \
--with-xmlrpc \
--with-xsl \
--with-zlib \
--with-bz2 \
--with-mhash \
--enable-fpm \
--enable-bcmath \
--enable-libxml \
--enable-inline-optimization \
--enable-mbregex \
--enable-mbstring \
--enable-opcache \
--enable-pcntl \
--enable-shmop \
--enable-soap \
--enable-sockets \
--enable-sysvsem \
--enable-sysvshm \
--enable-xml \
--enable-zip

可以使用./configure --help命令查看所有选项,这里注意在php7中--with-mysql原生支持已经不存在了,操作都变成mysqli或者pdo了。以上这些选项在正常的php开发中完全够用了,后期如果需要,可以选择手动开启相应的模块。

编译成功显示:

| License:                                                           |
| This software is subject to the PHP License, available in this     |
| distribution in the file LICENSE.  By continuing this installation |
| process, you are bound by the terms of this license agreement.     |
| If you do not agree with the terms of this license, you must abort |
| the installation process at this point.                            |
+--------------------------------------------------------------------+

Thank you for using PHP.

config.status: creating php7.spec
config.status: creating main/build-defs.h
config.status: creating scripts/phpize
config.status: creating scripts/man1/phpize.1
config.status: creating scripts/php-config
config.status: creating scripts/man1/php-config.1
config.status: creating sapi/cli/php.1
config.status: creating sapi/fpm/php-fpm.conf
config.status: creating sapi/fpm/www.conf
config.status: creating sapi/fpm/init.d.php-fpm
config.status: creating sapi/fpm/php-fpm.service
config.status: creating sapi/fpm/php-fpm.8
config.status: creating sapi/fpm/status.html
config.status: creating sapi/phpdbg/phpdbg.1
config.status: creating sapi/cgi/php-cgi.1
config.status: creating ext/phar/phar.1
config.status: creating ext/phar/phar.phar.1
config.status: creating main/php_config.h
config.status: main/php_config.h is unchanged
config.status: executing default commands

编译中遇到的问题:

err1:
configure: error: Cannot find OpenSSL's <evp.h>
# 解决办法:
sudo apt-get install libssl-dev
# 安装libssl-dev时如果出现错误:
The following packages have unmet dependencies:
 libssl-dev : Depends: libssl1.0.0 (= 1.0.1f-1ubuntu2) but 1.0.1f-1ubuntu2.19 is to be installed
              Recommends: libssl-doc but it is not going to be installed
# 解决办法:使用aptitude进行安装
sudo apt-get install aptitude
# 然后使用aptitude再次安装libssl-dev,并选择降级的版本。
sudo aptitude install libssl-dev

# 这里提示时,一定要选n,选Y跟apt-get install操作一样
Accept this solution? [Y/n/q/?] n
The following actions will resolve these dependencies:

     Downgrade the following packages:                                   
1)     libssl1.0.0 [1.0.1f-1ubuntu2.19 (now) -> 1.0.1f-1ubuntu2 (trusty)]

# 接受这里的降级处理,成功安装
Accept this solution? [Y/n/q/?] y
The following packages will be DOWNGRADED:
  libssl1.0.0 
The following NEW packages will be installed:

err2:
configure: error: jpeglib.h not found
# 解决办法:
sudo apt-get install libjpeg-dev
如果上面命令失败的话,使用降级安装 sudo aptitude install libjpeg-dev 第一次选n,之后选择y

err3:
configure: error: png.h not found.
# 解决办法:
sudo apt-get install libpng-dev
如果上面命令失败的话,使用降级安装 sudo aptitude install libpng-dev  第一次选n,之后选择y

err4:
configure: error: freetype-config not found.
# 解决办法:
sudo apt-get install libfreetype6-dev
如果上面命令失败的话,使用降级安装 sudo aptitude install libfreetype6-dev 第一次选n,之后选择y

err5:
configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution
解决办法:
sudo apt-get install libxslt1-dev

详细可见:https://phperzh.com/articles/1789

4.编译并且安装,需要较长的时间,请耐心等待
make && make install

5.配置相应文件

cp php.ini-development /usr/local/php/lib/php.ini 
cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf
cp sapi/fpm/php-fpm /usr/local/bin
cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf

然后设置php.ini,使用:vim /usr/local/php/lib/php.ini打开php配置文件找到cgi.fix_pathinfo配置项,这一项默认被注释并且值为1,根据官方文档的说明,这里为了当文件不存在时,阻止Nginx将请求发送到后端的PHP-FPM模块,从而避免恶意脚本注入的攻击,所以此项应该去掉注释并设置为0,设置完毕保存并且退出。

6.创建web用户

groupadd www-data
useradd-g www-data www-data

// 打开www.conf文件,配置用户权限
vim /usr/local/php/etc/php-fpm.d/www.conf
默认user和group的设置为nobody,将其改为www-data
  1. 启动php-fpm服务
/usr/local/bin/php-fpm

php-fpm服务默认使用9000端口,使用 netstat -tln |grep 9000 可以查看端口使用情况,9000端口正常使用,说明php-fpm服务启动成功。

8.配置mginx
打开nginx.conf文件
首先找到user 设置为:user www-data www-data;
然后在service{}层中 添加php location段

       location / {
              root  /var/www/test;
              index index.php index.html; // 添加index.php
        }


        location ~ \.php$ {
           root           /var/www/test; // 项目文件根目录
           fastcgi_pass   127.0.0.1:9000; // 对应的php-fpm地址和端口
           fastcgi_index  index.php; // 默认访问文件
           fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name; // 将 /scripts改为$document_root
           include        fastcgi_params;
        }

修改完之后保存nginx.conf文件 并且重启nginx

/usr/local/nginx/sbin/nginx -s reload

然后在项目路径中创建一个index.php文件,内容可以如下:

<?php 
    echo phpinfo(); 
?>

然后打开浏览器输入对应的地址进行访问,看到输出页面,说明nginx和php都配置成功。

本文参考:https://www.jianshu.com/p/19650dfcb961

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,254评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,875评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,682评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,896评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,015评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,152评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,208评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,962评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,388评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,700评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,867评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,551评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,186评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,901评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,689评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,757评论 2 351

推荐阅读更多精彩内容