Nginx源码安装(一个可以做反向代理的web服务器)

什么是Nginx?
1.Nginx是一款轻量级可以作反向代理的web服务器.
2.Nginx占有内存少,Nginx采取了分阶段资源分配技术,使得它的CPU与内存占用率非常低。
3.抗并发能力强.处理请求是异步非阻塞的,而apache 则是阻塞型的,在高并发下nginx 能保持低资源低消耗高性能
4.高度模块化的设计,编写模块相对简单,社区活跃,各种高性能模块出品迅速
Nginx的进程问题:
Nginx至少存在两种进程,一种进程叫做Master,另一种进程叫做Worker.(一直主进程多个线程)
源码安装:
1.下载源码包:
www.org.com 到官方下载最新的版本
2.#wget 下载连接地址
3.解压: #tar xf 源码包
4.cd 到解压目录
5.检查Nginx的依赖库
yum -y install gcc pcre pcre-devel zlib zlib-devel openssl openssl-devel

  1. 编译执行:
    ./configure \
    --prefix=/usr \ --sbin-path=/usr/sbin/nginx \ --conf-path=/etc/nginx/nginx.conf \ --error-log-
    path=/var/log/nginx/error.log \ --http-log-path=/var/log/nginx/access.log \ --pid-
    path=/var/run/nginx/nginx.pid \ --lock-path=/var/lock/nginx.lock \ --user=nginx \ --group=nginx \ --with-
    http_ssl_module \ --with-http_flv_module \ --with-http_stub_status_module \ --with-http_gzip_static_module \
    --http-client-body-temp-path=/var/tmp/nginx/client/ \ --http-proxy-temp-path=/var/tmp/nginx/proxy/ \ --
    http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \ --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \ --http-scgi-
    temp-path=/var/tmp/nginx/scgi \ --with-pcre

    #make (或者make -j 4 加快编译速度,有多少个cpu核心,就可以写多少)
    #make install (程序默认被安装在/usr/local/nginx下)
    语法检查是否错误:
    #nginx -t
    启动Nginx:
    #systemctl start nginx
    停止Nginx:
    #sytemctl stop nginx
    加载配置文件:
    #systemctl reload nginx

转载于:https://blog.51cto.com/13581826/2093366

你可能感兴趣的:(Nginx源码安装(一个可以做反向代理的web服务器))