把apache换成NGinx

CentOS6+NGinx1.0.8+PHP5.3.8+MySQL5.5

(MySql和CentOS系统就不用动了)


1.首先把apache服务删掉

2.然后安下载源码,装NGinx

我的编译参数

3.重新编译安装PHP 原来变异参数中的--with-apxs2不能用了,他和--enable-fpm冲突

./configure --prefix=/usr/lib/php --with-mysql-sock --with-mysql --with-mysqli=/usr/bin/mysql_config --disable-rpath --enable-xml --with-mcrypt --enable-magic-quotes --enable-mbstring --with-iconv --with-gd --with-jpeg-dir --with-png-dir --with-zlib-dir --enable-mbregex --enable-sysvsem --enable-sysvshm --enable-sysvmsg --without-pear --enable-fpm --with-pdo-mysql --with-fpm-user=webserver --with-fpm-group=webserver


重启PHP-fpm:kill -SIGINT `cat /usr/lib/php/var/run/php-fpm.pid`

将PHP-fpm放入自启动:

CP -F /usr/src/php-5.3.8/sapi/fpm/init.d.php-fpm /etc/init.d/php=fpm#从php源代码目录中拷贝启动脚本(/usr/src/php-5.3.8是源代码目录)

CHMOD 755 /etc/init.d/php-fpm#执行权限

/etc/init.d/php-fpm start#启动

/sbin/chkconfig --add php-fpm#加入自启动表

/sbin/chkconfig php-fpm on#打开自启动

启动,停止,重启对应 /etc/init.d/php-fpm 加start,stop,reload


查看端口情况命令netstat -antpl


你可能感兴趣的:(把apache换成NGinx)