nginx学习笔记01

1.nginx下载:http://nginx.org/en/download.html

Mainline version:是主干版本(含有最新功能)Stable version:稳定版本(推荐使用)

nginx的主要优点:高并发,高性能,可扩展性,热部署,bsd许可

开源版:nginx.org ,商业版:nginx.com 基于nginx改造版本:tengine, openresty(开源版&商业版)

2.使用wget 下载:

wget http://nginx.org/download/nginx-1.14.2.tar.gz

3.解压文件:

tar -zxvf nginx-1.14.2.tar.gz

4.nginx的四个主要组成部分:

nginx二进制可执行文件,nginx.conf配置文件,access.log记录http访问日志,error.log记录错误访问日志

5.编译nginx

cd nginx-1.14.2/

查看源码包下目录结构如下:

nginx学习笔记01_第1张图片

auto :里面有4个子目录,其中cc负责源码编译的, lib目录是编译需要的类库, os   是判断运行是所在的系统环境,其他的是辅助nginx.conf编译的。

CHANGES:当前版本的改变。

CHANGES.ru:当前版本的改变俄语版本。

conf:配置文件示例。

configure:脚本

contrib:nginx vim语法

[root@nginx nginx-1.14.2]# cp -r contrib/vim/* /root/.vim/

之后的效果如下:nginx配置会有明显的颜色提示。
nginx学习笔记01_第2张图片

 

html: nginx首页和50x错误

man:帮助目录

src:源码目录。

./configure --prefix=/soft/nginx

出现错误:checking for C compiler ... not found

解决: yum -y install gcc gcc-c++ autoconf automake make

出现错误:./configure: error: the HTTP rewrite module requires the PCRE library.

解决:yum -y install pcre-devel

出现错误:./configure: error: the HTTP gzip module requires the zlib library.

解决:yum install -y zlib-devel

出现如下:

nginx学习笔记01_第3张图片

就可以进行下一步的编译了。生成的objs目录是编译产生的二进制执行文件具体到里面可以看到,ngx_modules.c加载了那些模块。

ngx_modules.c:

nginx学习笔记01_第4张图片

 

make :

nginx学习笔记01_第5张图片

make install:

nginx学习笔记01_第6张图片

至此:nginx 默认安装完成。

你可能感兴趣的:(nginx,liunx,java,centos)