[root@lnmp01tools]# tar xf php-5.3.27.tar.gz解压压缩包[root@lnmp01tools]# cd php-5.3.27 进入php安装目录./configure 编译参数–prefix=/application/php5.3.27指定php的安装路径为/application/php5.3.27–with-mysql=/application/mysql/ 需要指定mysql的安装路径,安装PHP需要的MySQL相关内容。当然如果没有MySQL软件包,也可以不单独安装,这样的情况可使用–with-mysql=mysqlnd替代–with-mysql=/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
# tar xf php-5.3.27.tar.gz解压压缩包[root@lnmp01tools]# cd php-5.3.27 进入php安装目录./configure 编译参数–prefix=/application/php5.3.27指定php的安装路径为/application/php5.3.27–with-mysql=/application/mysql/ 需要指定mysql的安装路径,安装PHP需要的MySQL相关内容。当然如果没有MySQL软件包,也可以不单独安装,这样的情况可使用–with-mysql=mysqlnd替代–with-mysql=/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
[root@lnmp01tools]# cd php-5.3.27 进入php安装目录./configure 编译参数–prefix=/application/php5.3.27指定php的安装路径为/application/php5.3.27–with-mysql=/application/mysql/ 需要指定mysql的安装路径,安装PHP需要的MySQL相关内容。当然如果没有MySQL软件包,也可以不单独安装,这样的情况可使用–with-mysql=mysqlnd替代–with-mysql=/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
# cd php-5.3.27 进入php安装目录./configure 编译参数–prefix=/application/php5.3.27指定php的安装路径为/application/php5.3.27–with-mysql=/application/mysql/ 需要指定mysql的安装路径,安装PHP需要的MySQL相关内容。当然如果没有MySQL软件包,也可以不单独安装,这样的情况可使用–with-mysql=mysqlnd替代–with-mysql=/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
./configure 编译参数–prefix=/application/php5.3.27指定php的安装路径为/application/php5.3.27–with-mysql=/application/mysql/ 需要指定mysql的安装路径,安装PHP需要的MySQL相关内容。当然如果没有MySQL软件包,也可以不单独安装,这样的情况可使用–with-mysql=mysqlnd替代–with-mysql=/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
/configure 编译参数–prefix=/application/php5.3.27指定php的安装路径为/application/php5.3.27–with-mysql=/application/mysql/ 需要指定mysql的安装路径,安装PHP需要的MySQL相关内容。当然如果没有MySQL软件包,也可以不单独安装,这样的情况可使用–with-mysql=mysqlnd替代–with-mysql=/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
编译参数–prefix=/application/php5.3.27指定php的安装路径为/application/php5.3.27–with-mysql=/application/mysql/ 需要指定mysql的安装路径,安装PHP需要的MySQL相关内容。当然如果没有MySQL软件包,也可以不单独安装,这样的情况可使用–with-mysql=mysqlnd替代–with-mysql=/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–prefix=/application/php5.3.27指定php的安装路径为/application/php5.3.27–with-mysql=/application/mysql/ 需要指定mysql的安装路径,安装PHP需要的MySQL相关内容。当然如果没有MySQL软件包,也可以不单独安装,这样的情况可使用–with-mysql=mysqlnd替代–with-mysql=/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
/application/php5.3.27指定php的安装路径为/application/php5.3.27–with-mysql=/application/mysql/ 需要指定mysql的安装路径,安装PHP需要的MySQL相关内容。当然如果没有MySQL软件包,也可以不单独安装,这样的情况可使用–with-mysql=mysqlnd替代–with-mysql=/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
.3.27指定php的安装路径为/application/php5.3.27–with-mysql=/application/mysql/ 需要指定mysql的安装路径,安装PHP需要的MySQL相关内容。当然如果没有MySQL软件包,也可以不单独安装,这样的情况可使用–with-mysql=mysqlnd替代–with-mysql=/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
/application/php5.3.27–with-mysql=/application/mysql/ 需要指定mysql的安装路径,安装PHP需要的MySQL相关内容。当然如果没有MySQL软件包,也可以不单独安装,这样的情况可使用–with-mysql=mysqlnd替代–with-mysql=/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
.3.27–with-mysql=/application/mysql/ 需要指定mysql的安装路径,安装PHP需要的MySQL相关内容。当然如果没有MySQL软件包,也可以不单独安装,这样的情况可使用–with-mysql=mysqlnd替代–with-mysql=/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-mysql=/application/mysql/ 需要指定mysql的安装路径,安装PHP需要的MySQL相关内容。当然如果没有MySQL软件包,也可以不单独安装,这样的情况可使用–with-mysql=mysqlnd替代–with-mysql=/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
/application/mysql/ 需要指定mysql的安装路径,安装PHP需要的MySQL相关内容。当然如果没有MySQL软件包,也可以不单独安装,这样的情况可使用–with-mysql=mysqlnd替代–with-mysql=/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
需要指定mysql的安装路径,安装PHP需要的MySQL相关内容。当然如果没有MySQL软件包,也可以不单独安装,这样的情况可使用–with-mysql=mysqlnd替代–with-mysql=/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
/application/mysql,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
,因为PHP软件里面已经自带连接MySQL的客户端工具。 –with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-iconv-dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
dir=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
=/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
/usr/local/libiconv libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
libiconv库,各种字符集间的转换–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-freetype-dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
dir 打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
打开对freetype字体库支持–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-jpeg-dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
dir 打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
打开对jpeg图片的支持–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-png-dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
dir 打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
打开对png图片的支持–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-zlib 打开zlib库的支持,用于http压缩传输–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-libxml-dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
dir=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
=/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
/usr 打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
打开libxml2库的支持–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-xml –disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–disable-rpath 关闭额外的运行库文件–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-safe-mode 打开安全模式–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-bcmath 打开图片大小调整,用zabbix监控时会用到该模块–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-shmop –enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-sysvsem 使用sysv信号机制,则打开此选项–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-inline-optimization 优化线程–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-curl 打开curl浏览工具的支持–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-curlwrappers 运维curl工具打开url流–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-mbregex –enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-mbstring 支持mbstring–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-mcrypt 编码函数库–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-gd 打开gd库的支持–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-gd-native-ttf 支持TrueType字符串函数库–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-openssl openssl的支持,加密传输时用到–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-mhash mhash算法的扩展–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-pcntl freeTDS需要用到,可能是链接mssql–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-sockets 打开sockets支持–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-xmlrpc 打开xml-rpc的c语言–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-zip 打开对zip的支持–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-soap soap模块的扩展–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-short-tags 开始和标记函数–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-zend-multibyte 支持zend的多字节–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-static 生成静态链接库–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-xsl 打开XSLT文件支持,扩展libXML2库,需要libxslt软件–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
ftp 打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
打开ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
ftp的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
的支持–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
enable-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
-fpm 表示激活PHP-FPM方式服务,即FactCGI方式运行PHP服务。–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-fpm-user=www 指定PHP-FPM进程管理的用户为www,此处最好和Nginx服务用户统一。–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
–with-fpm-group=www 指定PHP-FPM进程管理用户组为www,此处最好和Nginx服务用户组统一。 [root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
[root@lnmp01php]#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
#ln -s /application/mysql/lib/libmysqlclient.so.18 /usr/lib64/软链接[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
[root@lnmp01php]# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
# touch ext/phar/phar.phar 创建php安装需要文件[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
[root@lnmp01php]# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
# make && make install 编译安装[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
[root@lnmp01php]# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
# ln -s /application/php5.3.27/ /application/php 链接去版本(方便升级及后续维护)[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
[root@lnmp01php]# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
# cp /application/tools/php-5.3.27/php.ini-production /application/php/lib/php.ini 拷贝php.ini需要配置文件[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
[root@lnmp01php]# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
# cp /application/php/etc/php-fpm.conf.default /application/php/etc/php-fpm.conf 拷贝php-fpm配置文件[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
[root@lnmp01php]# /application/php/sbin/php-fpm 启动php-fpm
# /application/php/sbin/php-fpm 启动php-fpm
上一篇 Apache和PHP结合总结
下一篇 二维数组去重
版权所有 (c)2021-2022 MSHXW.COM
ICP备案号:晋ICP备2021003244-6号