1.关闭防火墙
[[email protected] ~]# chkconfig iptables off
2.关闭selinux
vi /etc/sysconfig/selinux
//将SELINUX=enforcing修改为disabled然后重启生效
3、配置CentOS 6.0 第三方yum源(CentOS默认的标准源里没有nginx软件包)
//下载wget工具
[[email protected] ~]# yum install wget
//下载atomic yum源
[[email protected] ~]# wgethttp://www.atomicorp.com/installers/atomic
[[email protected] ~]# sh ./atomic
//安装提示输入时输yes
#更新yum软件包
[[email protected] ~]# yum check-update
4.安装开发包和库文件
[[email protected] ~]# yum -y install ntp makeopenssl openssl-devel pcre pcre-devel libpng libpng-devel libjpeg-6blibjpeg-devel-6b freetype freetype-devel gd gd-devel zlib zlib-devel gccgcc-c++ libXpm libXpm-devel ncurses ncurses-devel libmcrypt libmcrypt-devellibxml2 libxml2-devel imake autoconf automake screen sysstatcompat-libstdc++-33 curl curl-devel
5.卸载已安装的apache、mysql、php
[[email protected] ~]# yum list installed |grepmysql,httpd,php
[[email protected] ~]# yum remove mysql*
[[email protected] ~]# yum remove httpd
[[email protected] ~]# yum remove php
6.安装nginx
[[email protected] ~]# yum install nginx
[[email protected] ~]# service nginx start
//设2、3、5级别开机启动
[[email protected] ~]# chkconfig --levels 235nginx on
7.安装mysql
[[email protected] ~]# yum install mysqlmysql-server mysql-devel
[[email protected] ~]# service mysqld start
[[email protected] ~]# chkconfig --levels 235mysqld on
//为root用户设置密码
[[email protected] ~]# mysqladmin -u rootpassword "123456"
//重启mysql
[[email protected] ~]# service mysqld restart
8.安装php
[[email protected] ~]# yum install phplighttpd-fastcgi php-cli php-mysql php-gd php-imap php-ldap php-odbc php-pearphp-xml php-xmlrpc php-mbstring php-mcrypt php-mssql php-snmp php-soap php-tidyphp-common php-devel php-fpm
//安装php和所需组件使PHP支持MySQL、FastCGI模式
[[email protected] ~]# service php-fpm start
[[email protected] ~]# chkconfig --levels 235 php-fpmon
9.配置nginx支持php
[[email protected] ~]# mv /etc/nginx/nginx.conf/etc/nginx/nginx.confbak
//将配置文件改为备份文件
[[email protected] ~]# cp/etc/nginx/nginx.conf.default /etc/nginx/nginx.conf
//由于原配置文件要自己去写因此可以使用默认的配置文件作为配置文件
//修改nginx配置文件,添加fastcgi支持
[[email protected] ~]# 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
[[email protected] ~]# vi /etc/php.ini
11.重启nginx php-fpm
[[email protected] ~]# service nginx restart
[[email protected] ~]# service php-fpm restarts
12.建立info.php文件
[[email protected] ~]# vi/usr/share/nginx/html/info.php