Chinaunix首页 | 论坛 | 博客
  • 博客访问: 102990
  • 博文数量: 42
  • 博客积分: 1445
  • 博客等级: 上尉
  • 技术积分: 380
  • 用 户 组: 普通用户
  • 注册时间: 2009-08-28 13:57
文章分类

全部博文(42)

文章存档

2010年(10)

2009年(32)

我的朋友

分类: LINUX

2009-12-11 15:55:45


tar -zxvf "php-fpm-0.6-$PHP_VER.tar.gz"
    cd "php-fpm-0.6-$PHP_VER"
    mkdir fpm-build && cd fpm-build
    ../configure --srcdir=../ \
     --with-php-src="../../php-$PHP_VER" \
     --with-php-build="../../php-$PHP_VER/php-build" \
     --with-libevent="$LIBEVENT_SEARCH_PATH" && make

## Configure flags

    --with-libevent[=PATH] Path to the libevent, for fpm SAPI [/usr/local]
    --with-fpm-bin[=PATH] Set the path for the php-fpm binary [/usr/local/bin/php-fpm]
    --with-fpm-port[=PORT] Set the tcp port number to listen for cgi requests [9000]
    --with[out]-fpm-conf[=PATH] Set the path for the php-fpm configuration file [/etc/php-fpm.conf]
    --with[out]-fpm-init[=PATH] Set the path for the php-fpm init file [/etc/init.d/php-fpm]
    --with-fpm-log[=PATH] Set the path for the php-fpm log file [/var/log/php-fpm.log]
    --with-fpm-pid[=PATH] Set the path for the php-fpm pid file [/var/run/php-fpm.pid]
    --with-fpm-user[=USER] Set the user for the php-fpm to run as [nobody]
    --with-fpm-group[=GRP] Set the group for php-fpm to run as. For a system user,
         this should be set to match the fpm username [nobody]


以上是官方PHP-fpm的文档描述,我装了一下,如果要实现基本应用 --with-libevent 这个东西暂时不需要的,这涉及到了一个库的调用,而且单单patch php-fpm的补丁是没有这个选项的,

root@slackware-32-p3:/yuan/soft/php-5.2.11# ./configure --help |grep fpm
  --enable-fpm              FastCGI: If this is enabled, the fastcgi support
  --with-fpm-conf=PATH        Set the path for php-fpm configuration file PREFIX/etc/php-fpm.conf
  --with-fpm-log=PATH         Set the path for php-fpm log file PREFIX/logs/php-fpm.log
  --with-fpm-pid=PATH         Set the path for php-fpm pid file PREFIX/logs/php-fpm.pid

只有这几个,path路径要写绝对路径,这里不是相对路径

基本上官方的文档是一个完整版的fpm,但是那些所谓的configure flags 我们都可以在php-fpm里面逐个调,就不用那么麻烦了,..那个src build 的参数看的我头大,还以为很繁琐,太阳的...

我附上我用到的那几个东西,最近因为dns gfw DX 等麻烦,国外的站 有理无理的都封了,真无耻,好不容易下载,所以就放上来了.





网站


阅读(479) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~