1:查看环境: ~~~ [root@localhost]# cat /etc/redhat-release ~~~ 2.关掉防火墙 ~~~ [root@localhost]# chkconfig iptables off ~~~ 3.配置CentOS 6.0 第三方yum源 ~~~ [root@localhost]#wget http://www.atomicorp.com/installers/atomic [root@localhost]#sh ./atomic [root@localhost]#yum check-update ~~~ 4.安装开发包和库文件  ~~~ [root@localhost]# yum -y install ntp make openssl openssl-devel pcre pcre-devel libpng libpng-devel libjpeg-6b libjpeg-devel-6b freetype freetype-devel gd gd-devel zlib zlib-devel gcc gcc-c++ libXpm libXpm-devel ncurses ncurses-devel libmcrypt libmcrypt-devel libxml2 libxml2-devel imake autoconf automake screen sysstat compat-libstdc++-33 curl curl-devel ~~~ 5.卸载已安装的apache、mysql、php ~~~ [root@localhost]# yum remove httpd [root@localhost]# yum remove mysql [root@localhost]# yum remove php ~~~ 6.安装nginx ~~~ [root@localhost]# yum install nginx [root@localhost]# service nginx start [root@localhost]# chkconfig --levels 235 nginx on //设2、3、5级别开机启动 ~~~ 7.安装mysql ~~~ [root@localhost]# yum install mysql mysql-server mysql-devel [root@localhost]# service mysqld start [root@localhost]# chkconfig --levels 235 mysqld on ~~~ 8.安装php ~~~ [root@localhost]#yum install php lighttpd-fastcgi php-cli php-mysql php-gd php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-mssql php-snmp php-soap [root@localhost]#yum install php-tidy php-common php-devel php-fpm php-mysql [root@localhost]#service php-fpm start [root@localhost]#chkconfig --levels 235 php-fpm on ~~~ 9.配置nginx支持php ~~~ [root@localhost]# mv /etc/nginx/nginx.conf /etc/nginx/nginx.confbak //将配置文件改为备份文件 [root@localhost]# cp /etc/nginx/nginx.conf.default /etc/nginx/nginx.conf //由于原配置文件要自己去写因此可以使用默认的配置文件作为配置文件 //修改nginx配置文件,添加fastcgi支持 [root@localhost]# vi /etc/nginx/nginx.conf index index.php index.html index.htm; //加入index.php location ~ \.php$ { root /usr/share/nginx/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name; include fastcgi_params; } //将以上代码注释去掉,并修改成nginx默认路径 ~~~ 10.配置php ~~~ //编辑文件php.ini,在文件末尾添加cgi.fix_pathinfo = 1 [root@localhost]# vi /etc/php.ini ~~~ 11.重启nginx php-fpm ~~~ [root@localhost]# service nginx restart [root@localhost]# service php-fpm restart ~~~ 12:建立info.php文件 ~~~ [root@localhost]# vi /usr/share/nginx/html/info.php <?php phpinfo(); ?> ~~~