1、安装说明
系统环境:CentOS-6.3
软件:nginx-1.9.0.tar.gz
安装方式:源码编译安装
安装位置:/usr/local/src/nginx_1.9.0
下载地址:http://nginx.org/en/download.html
2、安装前提
在安装nginx前,需要确保系统安装了g++、gcc、openssl-devel、pcre-devel和zlib-devel软件。安装必须软件:
安装命令如下:
[root@localhost /]# yum install gcc-c++
[root@localhost /]# yum -y install zlib zlib-devel openssl openssl–devel pcre pcre-devel
检查系统安装的Nginx:
[root@localhost /]# find -name nginx
./usr/local/src/nginx_1.9.0/sbin/nginx
卸载原有的Nginx:
[root@localhost /]# yum remove nginx
3、安装
将安装包文件上传到 /usr/local/src/中执行以下操作:
[root@localhost /]# cd /usr/local/src
[root@localhost src]# tar -zxvf nginx-1.9.0.tar.gz
[root@localhost src]# rm -rf nginx-1.2.6.tar.gz
[root@localhost src]# cd /usr/local/src/nginx-1.9.0
[root@localhost nginx_1.9.0]# ./configure –prefix=/usr/local/nginx_1.9.0
[root@localhost nginx_1.9.0]# make && make install
4、配置
进入修改防火墙配置:
[root@localhost nginx_1.9.0]# vi /etc/sysconfig/iptables
添加配置项:
-A INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT
重启防火墙:
[root@localhost nginx_1.9.0]# service iptables restart
5、启动nginx
[root@localhost nginx_1.9.0]# cd /usr/local/src/nginx_1.9.0/sbin
[root@localhost sbin]# ./nginx
6、测试是否成功
浏览器中输入测试地址: http://ip:80