r/bin/php-cgi
spawn-fcgi: child spawned successfully: PID: 7980
查看php-cgi是否启动:
[root@bogon test]# ps -aux |grep php-cgi
Warning: bad syntax, perhaps a bogus ''-''? See /usr/share/doc/procps-3.2.3/FAQ
www 7980 0.1 0.2 31552 5164 ? Ss 09:39 0:00 /usr/bin/php-cgi
root 8009 0.0 0.0 4800 564 pts/1 R 09:40 0:00 grep php-cgi
这里看到OK了,建议OK后重新启动nginx service nginx restart
配置Nginx 配置虚拟主机
vi /etc/nginx/nginx.conf
具体配置如下:请把相关行的#去掉
# another virtual host using mix of IP-, name-, and port-based configuration
82 #
83 server {
84 listen 8000; ####虚拟主机监听的端口8000
85 # listen somename:8080;
86 server_name somename alias another.alias;
87
88 location / {
89 root /var/www/html/www; ####虚拟主机目录
90 index index.html index.htm;
91 }
92 }
93
配置完后重新启动 service nginx restart
然后直接打开网页 http://192.168.133.128:8000
网页直接打开的是/var/www/html/www/index.htm 说明虚拟主机配置成功.
也可以通过netstat -antup |grep nginx
tcp 0 0 0.0.0.0:8000 0.0.0.0:* LISTEN 19013/nginx.conf ####这个说明 虚拟主机已经OK
tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN 19013/nginx.conf
问题1:
打开IE,直接输入地址***.php: 屏幕显示 No input file specified
解决方案:
方法1php.ini的配置中
将这条cgi.fix_pathinfo=1前面的;去掉 后再重启php-cgi,php显示正常
记得修改了php.ini要重启fastcgi服务. 我这里单修改这个,还是不成,又用了方法2,才OK.
方法2
nginx中的配置有些麻烦
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name;
每个虚机要根据自己不通的虚机设置不能的目录,要保证这个路径正确.
fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name;不能在fastcgi_pass 127.0.0.1:9000;的前面.
打开:http://192.168.133.128:8080/index.php
显示如下:this is php web test one !!!!!
问题2:
spawn-fcgi -a 127.0.0.1 -p 9000 -u www -f /usr/bin/php-cgi 使用这条命令提示如下:
spawn-fcgi: child exited with: 126 当时使用PHP4.0 ,系统中没有php-cgi这个文件
spawn-fcgi: child exited with: 13 使用PHP5.3.6 ,命令中多了-C 64 出错
spawn-fcgi: child exited with: 2 使用PHP5.3.6 ,命令中多了-C 64 出错 本文出自 “wxfxn2000” 博客,谢绝转载!
|