linux安装nginx

自用的,不喜勿喷。自己安装成功了。内容有摘自网络。

1、安装必备工具:

$ yum -y install gcc gcc-c++ autoconf automake

$ yum -y install zlib zlib-devel openssl openssl-devel pcre-devel
说明:
pcre: 用来作地址重写的功能。

zlib:nginx 的gzip模块,传输数据打包,省流量(但消耗资源)。

openssl:提供ssl加密协议。
二、nginx编译安装:

1、下载nginx:http://nginx.org/en/download.html
安装目录一般都放在:/usr/local/nginx下

2、解压编译:
$ tar -zxvf nginx-1.9.2.tar.gz/

$ mv nginx-1.9.2 nginx

$ cd /usr/local/nginx

$./configure –prefix=/usr/local/nginx //预编译

3、安装:
$ make && make install
第一次安装出现问题: conf/koi-win’ and/usr/local/nginx/conf/koi-win’ are the same file
然后就重新安装一遍 在预编译的时候用命令
./configure –prefix=/usr/local/nginx
改为
./configure –prefix=/usr/local/nginx –conf-path=/usr/local/nginx/nginx.conf
成功安装了。

4、启动:
确保系统的 80 端口没被其他程序占用,
$ nginx -c /etc/nginx/nginx.conf

检查是否启动成功:
netstat -ano|grep 80 有结果输入说明启动成功

打开浏览器访问此机器的 ip,如果浏览器出现 welcome to nginx! 则表示 nginx 已经安装并运行成功。

‘).addclass(‘pre-numbering’).hide();
$(this).addclass(‘has-numbering’).parent().append($numbering);
for (i = 1; i

Posted in 未分类

发表评论