php fpm xcache,nginx+php-fpm+xcache

本文详细介绍了在CentOS 6.3环境中安装和配置Nginx、PHP及XCache的过程,包括编译安装、错误修复、服务设置和整合配置,旨在帮助读者快速搭建Web开发环境。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

线上环境,centos6.3的系统。

1.安装nginx

./configure --user=www  --group=www   --prefix=/usr/local/nginx  --with-openssl=../openssl-1.0.0j --with-zlib=../zlib-1.2.8 --with-pcre=../pcre-8.30  --with-http_ssl_module  --add-module=../ngx_cache_purge-2.1 --with-http_sub_module --with-http_stub_status_module  --with-http_gzip_static_module

make   && make install

2.安装完成之后,就可以启动nginx了。

/usr/local/nginx/sbin/nginx

3.查看nginx有没有启动

netstat -napt  | grep  nginx

4.然后通过ip访问

5.由于本机上已经有mysql了,这里就忽略掉

6.我们直接安装php了

安装php之前,我们得先安装库文件.这里就用yum安装吧

yum  -y  install   libmcrypt* mhash* libxml2* libpng* freetype* libjpeg* bzip* libcurl*

./configure --prefix=/usr/local/php \

--with-mysql=/usr/local/mysql --with-openssl --enable-fpm \

--enable-sockets --enable-sysvshm  --with-mysqli=/usr/local/mysql/bin/mysql_config \

--enable-mbstring --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib-dir \

--with-libxml-dir=/usr --enable-xml  --with-mhash --with-mcrypt  --with-config-file-path=/etc \

--with-config-file-scan-dir=/etc/php.d --with-bz2 --with-curl

7.中途编译的时候出现了configure: error: mcrypt.h not found. Please reinstall libmcrypt.的错误信息

如果yum无法解决的话,就用编译安装吧

./configure  && make  && make  install

然后重新配置,编译,安装 就好了

8.为php提供配置文件

cp php.ini-production /etc/php.ini

9.为php-fpm提供Sysv init脚本,并将其添加至服务列表

cp sapi/fpm/init.d.php-fpm  /etc/rc.d/init.d/php-fpm

chmod +x /etc/rc.d/init.d/php-fpm

chkconfig --add php-fpm

chkconfig php-fpm on

10.为php-fpm提供配置文件

cp /usr/local/php/etc/php-fpm.conf.default/usr/local/php/etc/php-fpm.conf

11.编辑php-fpm的配置文件,配置fpm的相关选项为你所需要的值,并启用pid文件:

pm.max_children =150

pm.start_servers =8

pm.min_spare_servers =5

pm.max_spare_servers =10

pid = /usr/local/php/var/run/php-fpm.pid

12.启动php-fpm进程,并使用如下命令来验正(如果此命令输出有中几个php-fpm进程就说明启动成功了):

service php-fpm restart

ps aux | grep php-fpm

0818b9ca8b590ca3270a3433284dd417.png

13.编辑/usr/local/nginx/conf/nginx.conf,整合nginx和php,并启用如下选项:

location ~ \.php$ {

root           html;

fastcgi_pass   127.0.0.1:9000;

fastcgi_index  index.php;

fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

include        fastcgi_params;

}

location / {

root   html;

index  index.html index.htm  index.php;

}

14.改完这几处地方就差不多了,重启下nginx

15.测试下php是不是能正常显示了

16.接下来开始编译xcache

./configure --enable-xcache --enable-xcache-coverager  --with-php-config=/usr/local/php/bin/php-config

make  && make install

17.编辑php.ini,整合php和xcache

mkdir /etc/php.d

cp xcache.ini /etc/php.d

18.编辑/etc/php.d/xcache.ini,找到extension开头的行,修改为如下行:

extension = /usr/local/php/lib/php/extensions/no-debug-non-zts-20100525/xcache.so

19.重新启动php-fpm进程

service php-fpm restart

chkconfig php-fpm on

20.重新打开测试页面,就可以看到了

0818b9ca8b590ca3270a3433284dd417.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值