博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php7.2 编译安装
阅读量:5978 次
发布时间:2019-06-20

本文共 3228 字,大约阅读时间需要 10 分钟。

hot3.png

安装前的准备:

下载安装包:

wget http://sg2.php.net/distributions/php-7.2.6.tar.gz

解压:

tar zxf php-7.2.6.tar.gz

安装依赖包构建编译环境:

yum install gcc libxml2 libxml2-devel openssl openssl-devel curl

 

安装(将安装的软件进行配置,检查当前的环境是否满足要安装软件的依赖关系)

./configure  --prefix=/usr/local/php  --with-config-file-path=/usr/local/php/etc  --with-config-file-scan-dir=/usr/local/php/etc/php.d  --with-fpm-user=www  --with-fpm-group=www  --enable-fpm  --disable-fileinfo  --with-mysqli=mysqlnd  --with-pdo-mysql=mysqlnd  --with-iconv-dir=/usr/local  --with-freetype-dir  --with-jpeg-dir  --with-png-dir  --with-zlib  --with-libxml-dir=/usr  --enable-xml  --disable-rpath  --enable-bcmath  --enable-shmop  --enable-exif  --enable-sysvsem  --enable-inline-optimization  --with-curl=/usr/local  --enable-mbregex  --enable-mbstring  --with-mcrypt  --with-gd  --enable-gd-native-ttf  --with-openssl  --with-mhash  --enable-pcntl  --enable-sockets  --with-xmlrpc  --enable-ftp  --enable-intl  --with-xsl  --with-gettext  --enable-zip  --enable-soap  --disable-debug

注释:

--enable-fpm--prefix=/usr/local/php                      //指定 php 安装目录 --with-apxs2=/usr/local/apache/bin/apxs      //整合apache,apxs功能是使用mod_so中的LoadModule指令,加载指定模块到 apache,要求 apache 要打开SO模块--with-config-file-path=/usr/local/php/etc    //指定php.ini位置--with-MySQL=/usr/local/mysql                 //mysql安装目录,对mysql的支持--with-mysqli=/usr/local/mysql/bin/mysql_config                      //mysqli扩展技术不仅可以调用MySQL的存储过程、处理MySQL事务,而且还可以使访问数据库工作变得更加稳定。--with-pdo-mysql=mysqlnd --enable-ftp          //打开ftp的支持 --enable-zip          //打开对zip的支持 --with-bz2            //打开对bz2文件的支持,bzip2 函数用于透明地读写 bzip2(.bz2)压缩文件。--with-jpeg-dir       //打开对jpeg图片的支持 --with-png-dir        //打开对png图片的支持 --with-freetype-dir   //打开对freetype字体库的支持 --with-libXML-dir     //打开libxml2库的支持 --with-XMLrpc         //打开xml-rpc的c语言 --with-zlib-dir       //打开zlib库的支持 --with-gd             //打开gd库的支持 --enable-gd-native-ttf //支持TrueType字符串函数库 --with-curl            //打开curl浏览工具的支持 --with-curlwrappers    //运用curl工具打开url流 --with-ttf             //打开freetype1.*的支持,可以不加了 --with-xsl             //打开XSLT 文件支持,扩展了libXML2库 ,需要libxslt软件 --with-gettext         //打开gnu 的gettext 支持,编码库用到 --with-pear            //打开pear命令的支持,PHP扩展用的 --enable-calendar      //打开日历扩展功能 --enable-mbstring      //多字节,字符串的支持 --enable-bcmath        //打开图片大小调整,用到zabbix监控的时候用到了这个模块--enable-sockets       //打开 sockets 支持--enable-exif,图片的元数据支持 --enable-magic-quotes  //魔术引用的支持 --disable-rpath        //关闭额外的运行库文件 --disable-debug        //关闭调试模式 --with-mime-magic=/usr/share/file/magic.mime  //魔术头文件位置

成功会输出: Thank you for using PHP. 等字样

编译

make

安装

make install

配置

cp php.ini-development /usr/local/php/php.inicp /usr/local/etc/php-fpm.conf.default /usr/local/etc/php-fpm.confcp sapi/fpm/php-fpm /usr/local/bin

配置php.ini (修改php.ini需要重启 php-fpm)

 

配置php-fpm

配置nginx

location ~ \.php$ {    root           html;    fastcgi_pass   127.0.0.1:9000;    fastcgi_index  index.php;    #fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;    fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;    include        fastcgi_params;}

可以参照官方文档:http://php.net/manual/zh/install.unix.nginx.php,该文章是作者根据自己实际的操作编写的,如有错误,欢迎指出。

转载于:https://my.oschina.net/stupidboyblog/blog/1827862

你可能感兴趣的文章
Git fetch和git pull的区别
查看>>
引用与指针的区别
查看>>
pygtk笔记--2.1:布局容器,VBox、Hbox、Alignment
查看>>
修改PHP模板
查看>>
dtree.js树的使用
查看>>
将0~N打乱顺序,然后排序
查看>>
Javascript 函数声明和函数表达式的区别
查看>>
10.23 相对,绝对路径,cd,mkdir/rmdir,rm命令
查看>>
传参方式小记
查看>>
系统重构笔记
查看>>
浏览器本地存储
查看>>
设计模式——工厂方法模式和抽象工厂模式
查看>>
FCC有意支持Sprint与T-Mobile合并?
查看>>
XMLHttpRequest
查看>>
Linux集群架构(下)——DR模式、keepalived+LVS
查看>>
使用Xshell连接Linux服务器
查看>>
hadoop学习笔记2
查看>>
MySQL基础
查看>>
Oracle伪列ROWID和ROWNUM
查看>>
网关冗余--王贝的学习笔记
查看>>