安装一些依赖的包

wget -c ftp://xmlsoft.org/libxml2/libxml2-2.7.8.tar.gz
tar xf libxml2-2.7..tar.gz -C ../source/
cd ../source/libxml2-2.8./
./configure --prefix=/usr/local/services
make && make install
cd -
wget http://curl.haxx.se/download/curl-7.21.4.tar.gz
tar xf curl-7.21..tar.gz -C ../source/
cd ../source/curl-7.21./
./configure --prefix=/usr/local/services
make && make install
cd -
wget http://www.ijg.org/files/jpegsrc.v8b.tar.gz
tar xf jpegsrc.v8b.tar.gz -C ../source/
cd ../source/jpeg-8b/
./configure --prefix=/usr/local/services
make && make install
cd -
wget http://download.sourceforge.net/libpng/libpng-1.6.2.tar.gz
tar xf libpng-1.6.2.tar.gz -C ../source/
cd ../source/libpng-1.6./
./configure --prefix=/usr/local/services
make && make install
cd -
wget http://download.savannah.gnu.org/releases/freetype/freetype-2.4.11.tar.gz
tar xf freetype-2.4..tar.gz -C ../source/
cd ../source/freetype-2.4./
./configure --prefix=/usr/local/services
make && make install
cd -
wget https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz
tar xf libevent-2.0.-stable.tar.gz -C ../source/
cd ../source/libevent-2.0.-stable/
./configure --prefix=/usr/local/services --disable-debug-mode
make && make install
cd -
wget https://sourceforge.net/projects/re2c/files/0.15.3/re2c-0.15.3.tar.gz
tar xf re2c-0.15..tar.gz -C ../source/
cd ../source/re2c-0.15./
./configure --prefix=/usr/local/services
make && make install
cd -
wget ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/libmcrypt/libmcrypt-2.5.7.tar.gz
tar xvf libmcrypt-2.5.7.tar.gz -C ../source/
cd ../source/libmcrypt-2.5.7/
./configure --prefix=/usr/local/services
make && make install
cd -

一些devel包(缺少各种库,,,一步一个坑)

yum install libxml2-devel -y
yum install libcurl-devel -y
yum install libjpeg-devel -y
yum install libpng-devel -y
yum install freetype-devel -y
yum install openldap-devel

mcrypt.h not found. Please reinstall libmcrypt”的解决方法参考:http://www.linuxidc.com/Linux/2015-08/121079.htm

wget http://cn2.php.net/distributions/php-5.6.13.tar.gz
tar xf php-5.6.13.tar.gz -C ../source/
cd ../source/php-5.6.13
./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --enable-fpm --with-fpm-user=www --with-fpm-group=www --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl  --enable-mbregex --enable-mbstring --with-mcrypt --enable-ftp --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --disable-fileinfo --enable-maintainer-zts --with-libdir=lib64 --with-ldap
make && make instal
cd -
#复制配置文件
cp php.ini-production /usr/local/php/etc/php.ini
cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf

至此PHP安装部分OK


后面仅供参考:

./configure后面的参数来源于:http://www.tuicool.com/articles/ZJfYzyF

./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --enable-fpm --with-fpm-user=daemon --with-fpm-group=daemon --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-magic-quotes --enable-safe-mode --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --with-curlwrappers --enable-mbregex --enable-mbstring --with-mcrypt --enable-ftp --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --disable-fileinfo --enable-maintainer-zts

./configure ...

make && install

#configure: WARNING: unrecognized options: --enable-magic-quotes, --enable-safe-mode, --with-curlwrappers

#这里是我安装是出现的警告

如果加的参数有不支持的,提示比如:configure: WARNING: unrecognized options: --enable-discard-path, --enable-safe-mode, --enable-fastcgi, --enable-force-cgi-redirect

说明上述这些参数废弃了

--prefix=/usr/local/php  指定 php 安装目录
--with-apxs2=/usr/local/apache/bin/apxs   整合 apache,apxs功能是使用mod_so中的LoadModule指令,加载指定模块到 apache,要求 apache 要打开SO模块--with-config-file-path=/usr/local/php/etc               指定php.ini位置
--with-MySQL=/usr/local/mysql      mysql安装目录,对mysql的支持
--with-mysqli=/usr/local/mysql/bin/mysql_config       mysqli扩展技术不仅可以调用MySQL的存储过程、处理MySQL事务,而且还可以使访问数据库工作变得更加稳定。 
--enable-safe-mode   打开安全模式           php-5.4.x 已经去掉了该选项,编译时可以 #./configure --help | grep “safe-mode” 查看一下,没有信息输出,表示已经不支持!
--enable-ftp   打开ftp的支持 
--enable-zip   打开对zip的支持 
--with-bz2    打开对bz2文件的支持       
--with-jpeg-dir   打开对jpeg图片的支持
--with-png-dir   打开对png图片的支持
--with-freetype-dir   打开对freetype字体库的支持
--without-iconv   关闭iconv函数,种字符集间的转换
--with-libXML-dir   打开libxml2库的支持
--with-XMLrpc    打开xml-rpc的c语言
--with-zlib-dir   打开zlib库的支持
--with-gd    打开gd库的支持
--enable-gd-native-ttf   支持TrueType字符串函数库
--with-curl    打开curl浏览工具的支持
--with-curlwrappers    运用curl工具打开url流
--with-ttf     打开freetype1.*的支持,可以不加了
--with-xsl     打开XSLT 文件支持,扩展了libXML2库 ,需要libxslt软件
--with-gettext     打开gnu 的gettext 支持,编码库用到
--with-pear    打开pear命令的支持,PHP扩展用的
--enable-calendar    打开日历扩展功能
--enable-mbstring    多字节,字符串的支持
--enable-bcmath    打开图片大小调整,用到zabbix监控的时候用到了这个模块
--enable-sockets     打开 sockets 支持
--enable-exif    图片的元数据支持
--enable-magic-quotes    魔术引用的支持 是一个极其不推荐的参数,当然,如果你需要PHP为你做这些底下的工作,实际上他也没有很彻底的解决问题    
--disable-rpath    关闭额外的运行库文件
--disable-debug    关闭调试模式
--with-mime-magic=/usr/share/file/magic.mime      魔术头文件位置

CGI方式安装才用的参数
--enable-fpm                       打上PHP-fpm 补丁后才有这个参数,CGI方式安装的启动程序
--enable-fastCGI                   支持fastcgi方式启动PHP
--enable-force-CGI-redirect        重定向方式启动PHP
--with-ncurses                     支持ncurses 屏幕绘制以及基于文本终端的图形互动功能的动态库
--enable-pcntl                     freeTDS需要用到的,可能是链接mssql 才用到

mhash和mcrypt算法的扩展
--with-mcrypt                     算法
--with-mhash                      算法

以上函数库需要安装

--with-gmp  应该是支持一种规范
--enable-inline-optimization  优化线程
--with-openssl                     openssl的支持,加密传输时用到的
--enable-dbase                     建立DBA 作为共享模块
--with-pcre-dir=/usr/local/bin/pcre-config      perl的正则库案安装位置
--disable-dmalloc
--with-gdbm                     dba的gdbm支持
--enable-sigchild
--enable-sysvsem
--enable-sysvshm
--enable-zend-multibyte         支持zend的多字节
--enable-mbregex
--enable-wddx
--enable-shmop
--enable-soap
指定了--with-apxs2=/usr/local/apache/bin/apxs以后,就不要再激活--enable-fpm和--enable-fastCGI,apxs是以php module的模式加载PHP的。
Mysql在编译了Mysql开发library以后,可以不用指定mysql的路径。
PHP编译存在基础的依赖的关系,编译PHP首先需要安装XML扩展,因为php5核心默认打开了XML的支持,其他的基础库,相应需要:
GD -> zlib, Png, Jpg, 如果需要支持其他,仍需要根据实际情况编译扩展库,ttf库需要freetype库的支持。
--enable-magic-quotes,是一个极其不推荐的参数,当然,如果你需要PHP为你做这些底下的工作,实际上他也没有很彻底的解决问题。
--with-openssl,需要openssl库。
mysqli是MySQL团队提供的MySQL驱动,具有很多实用的功能和典型特征。不过他不是MySQL于PHP平台最好的选择,PDO被证实,是一个简易、高并发性,而且易于创建和回收的标准接口。不过PDO也经历了5.3以前的内存溢出的问题,在5.3以后,在读取Oracle的LOB资源时,若不对内存进行限制,仍会内存溢出。
如果是产品模式,好像pear、shmop、ftp等,都不推荐使用,他们要做的事情,用C/C++,用Java,甚至其他脚本语言,都有很好很快速的选择,无需局限于使用PHP去实现。不熟悉的类库和不常用的库,也不推荐使用。magic-quote、session.auto_start、PHP服务器信息、PHP报错信息等在编译完成后,应该第一时间关闭,避免暴露服务器信息。
PHP对应的Web Server模式,Module、fastcgi、fpm只需要一种即可,服务器不是你的试验田。fastcgi可以选择Nginx和lighttpd,其实Nginx也是使用lighttpd的spwan-fcgi进行fcgi进程管理的。fpm是使用PHP自身去管理多进程,有点类似一个后端代理。无论什么模式,在发布产品服务器,都应该做进程和线程调优,做足够多的压力测试,找出最好的进程数组合。
选好一种PHP OPCode cache的扩展,这个也是很重要的,linux 2.6核心下,fcgi下,xcache有较好的实践经验,其他的在并发数增加以后,性能衰减严重。
如果真的想体验,宁可编译多几个PHP版本,也不要针对一个版本的PHP集合各种扩展,适应各种环境,这会让把你自己逼进窘境的。

基于LNMP的Zabbbix之PHP源码安装的更多相关文章

  1. 基于LNMP的Zabbbix之Zabbix Server源码详细安装,但不给图

    Zabbix Server安装 看到那里有错或者有什么问题的话,求指点 邮箱:losbyday@163.com 上一篇PHP源码安装参见基于LNMP的Zabbbix之PHP源码安装:https://i ...

  2. 基于LNMP的Zabbbix之Zabbix Agent源码详细安装,但不给图

    基于LNMP的Zabbbix之Zabbix Server源码详细安装:http://www.cnblogs.com/losbyday/p/5828547.html wget http://jaist. ...

  3. CENTOS6.5源码安装LNMP

    CENTOS6.5源码安装LNMP 一.安装前准备 ########################################################################## ...

  4. 基于Eclipse IDE的Ardupilot飞控源码阅读环境搭建

    基于Eclipse IDE的Ardupilot飞控源码阅读环境搭建 作者:Awesome 日期:2017-10-21 需准备的软件工具 Ardupilot飞控源码 PX4 toolchain JAVA ...

  5. 在ConoHa上Centos7环境下源码安装部署LNMP

    本文记录了从源码,在Centos 7上手动部署LNMP环境的过程,为了方便以后对nginx和mariadb进行升级,这里采用yum的方式进行安装. 1.建立运行网站和数据库的用户和组 groupadd ...

  6. 基于JDK1.8版本的hashmap源码笔记(二)

    这一篇是接着上一篇写的, 上一篇的地址是:基于JDK1.8版本的hashmap源码分析(一)     /**     * 返回boolean类型的值,当集合中包含key的键值,就返回true,否则就返 ...

  7. 基于nopCommerce的开发框架(附源码)

    .NET的开发人员应该都知道这个大名鼎鼎的高质量b2c开源项目-nopCommerce,基于EntityFramework和MVC开发,拥有透明且结构良好的解决方案,同时结合了开源和商业软件的最佳特性 ...

  8. LNMP架构下的nginx、mysql、php的源码安装

    一.LNMP的介绍 LNMP就是Linux+Nginx+Mysql+Php这种网站服务架构.Linux是一类Unix计算机操作系统的统称,是目前最流行的免费操作系统,常见版本有:centos.ubun ...

  9. 源码安装LNMP与搭建Zabbix

    系统环境:CentOS release 6.5 (Final) 搭建Zabbix 3.0对PHP环境要求>= 5.4 一.下载NMP的软件包: N:wget http://nginx.org/d ...

随机推荐

  1. Oracle 锁

    select  for update对某行加锁之后: select语句可以执行: select  for update 这行不可以: 会一直等待锁释放 select for update wait 3 ...

  2. HTML+CSS Day05 基本CSS选择器、复合CSS选择器与CSS继承性

    1.基本CSS选择器 (1)标记选择器 <style>                       h1{ color:red; font-size:25px;}           &l ...

  3. jQuery实现父窗口的问题

    因为先前遇到的问题,所以我考虑采用 IFRAME 来隔离不同的脚本,从而实现我需要的效果. 在框架中,我用 JavaScript 获取 JSON 数据,组织成 HTML 代码,最后将其填充至上层文档的 ...

  4. Mishka and Interesting sum

    Mishka and Interesting sum time limit per test 3.5 seconds memory limit per test 256 megabytes input ...

  5. NSFileManager创建文件夹

    NSFileManager*fileManager = [[NSFileManager alloc] init]; NSString *pathDocuments = [NSSearchPathFor ...

  6. SqlServer 查询死锁,杀死死锁进程

    -- 查询死锁 select request_session_id spid, OBJECT_NAME(resource_associated_entity_id) tableName from sy ...

  7. 小师妹问 easyUI mergeCells 行合并后表头和内容对不齐

    公司来了一个做easyUI的妹子,恰好那妹子是和我一个学校的,有一天下班妹子在超时买东西正好巧遇,然后妹子就问了问题,随便说手机卡需要我帮忙刷机,然后就问手机买了多久, 多少钱,刚买的时候好用不,然后 ...

  8. <link rel="stylesheet" href="3.css"/> 链接方式

    <link rel="stylesheet" href="3.css"/> <!doctype html> <html> & ...

  9. CentOS安装VirtualBox增强工具

    安装过程中出现错误: Bulding the VirtualBox Guest Additions Kernel modules failedYour system does not seem to  ...

  10. Chapter 1 First Sight——16

    I drove around the school, following the line of traffic. 我开车绕学校随着交通线. 我开车穿过校园,紧跟着大部队. I was glad to ...