CentOS 5.x,6.0编译安装Nginx1.2.3+MySQL5.5.15+PHP5.3.6(4)

tar -zvxf php-5.3.10.tar.gz
cd php-5.3.10
./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc  --enable-json --enable-xml --enable-mbstring --with-openssl  --enable-ftp  --enable-sockets --with-MySQL=/usr/local/mysql --with-pdo-mysql=/usr/local/mysql --enable-fpm
make #编译
make install #安装
cp php.ini-production /usr/local/php/etc/php.ini #复制php配置文件到安装目录
rm -rf /etc/php.ini #删除系统自带配置文件
ln -s /usr/local/php/etc/php.ini /etc/php.ini #添加软链接
cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf #拷贝模板文件为php-fpm配置文件
vi /usr/local/php/etc/php-fpm.conf #编辑

pid = run/php-fpm.pid #取消前面的分号,然后在下面的user及group处修改以下信息:
user = www #设置php-fpm运行账号为www
group = www #设置php-fpm运行组为www

保存退出,接着运行下面的命令。

设置 php-fpm开机启动
cp sapi/fpm/init.d.php-fpm /etc/rc.d/init.d/php-fpm #拷贝php-fpm到启动目录
chmod +x /etc/rc.d/init.d/php-fpm #添加执行权限
chkconfig php-fpm on #设置开机启动
vi /usr/local/php/etc/php.ini #编辑配置文件
找到:;open_basedir =
修改为:open_basedir = .:/tmp/ #防止php木马跨站,重要!!
找到:disable_functions =
修改为:disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server,escapeshellcmd,dll,popen,disk_free_space,checkdnsrr,checkdnsrr,getservbyname,getservbyport,disk_total_space,posix_ctermid,posix_get_last_error,posix_getcwd, posix_getegid,posix_geteuid,posix_getgid, posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid, posix_getppid,posix_getpwnam,posix_getpwuid, posix_getrlimit, posix_getsid,posix_getuid,posix_isatty, posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid, posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname
#列出PHP可以禁用的函数,如果某些程序需要用到这个函数,可以删除,取消禁用。
找到:;date.timezone =
修改为:date.timezone = PRC #设置时区
找到:expose_php = On
修改为:expose_php = OFF #禁止显示php版本的信息
找到:display_errors = On
修改为:display_errors = OFF #关闭错误提示

九、配置nginx支持php

vi /usr/local/nginx/conf/nginx.conf
修改/usr/local/nginx/conf/nginx.conf 配置文件,需做如下修改
user www www; #首行user去掉注释,修改Nginx运行组为www www;必须与/usr/local/php/etc/php-fpm.conf中的user,group配置相同,否则php运行出错
index index.php index.html index.htm; #添加index.php
将所有root后面的目录设置成

root /html;

但是。那个500的不要设置。
找到下面的这段代码进行修改
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
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;
}
#取消FastCGI server部分location的注释,并要注意fastcgi_param行的参数,改为$document_root$fastcgi_script_name,或者使用绝对路径

保存退出,接着运行以下命令
/usr/local/nginx/sbin/nginx -s restart #重启nginx

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

这个时候。php-fpm好像启动不了。。。。因为还有些配置没有配置。。有机会把错误截图弄上来。

好像是有几个参数,没有设置提示错误,可以根据这个。修改上面的php-fpm.conf文件

启动错误解决:
ALERT: [pool www] pm.min_spare_servers(0) must be a positivevalue
编辑php-fpm.conf找到pm.min_spare_servers去除;号,注意非注释内容pm.min_spare_servers
ALERT: [pool www] pm.max_spare_servers(0) must be a positivevalue
编辑php-fpm.conf找到pm.max_spare_servers去除;号,同样非注释内容pm.max_spare_servers
WARNING: [pool www] pm.start_servers is not set. It's been set to20.
编辑php-fpm.conf找到pm.start_servers 去除;号,同样非注释内容pm.start_servers
ERROR: bind() for address '127.0.0.1:9000' failed: Address alreadyin use (98)

查看进程,有N多进程


ps -ef | grep php#查php进程

killall php-fpm #杀死所有php-fpm进程

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


这次正常了。

十、测试

cd /html/ #进入nginx默认网站根目录
rm -rf /html/* #删除默认测试页
vi index.php #新建index.php文件
<?php
phpinfo();
?>
:wq! #保存

在客户端浏览器输入服务器IP地址,可以看到相关的配置信息!

十一、备注

/etc/rc.d/init.d/nginx restart #重启restart  stop start
/etc/rc.d/init.d/php-fpm restart #重启restart  stop start

/etc/rc.d/init.d/php-fpm restart #重启restart  stop start

nginx默认站点目录是:/html/

MySQL数据库目录是:/var/mysql/data


如果大家,安装入到什么什么可以互相交流本人也是尝试了很久才折腾出这套可能用的。。。。。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/82aeece1232bf989f8e49cec6096ecb9.html