码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2018-03-31 15:51:11      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:Nginx

什么是Nginx?
1.Nginx是一款轻量级可以作反向代理的web服务器.
2.Nginx占有内存少,Nginx采取了分阶段资源分配技术,使得它的CPU与内存占用率非常低。
3.抗并发能力强.处理请求是异步非阻塞的,而apache 则是阻塞型的,在高并发下nginx 能保持低资源低消耗高性能
4.高度模块化的设计,编写模块相对简单,社区活跃,各种高性能模块出品迅速
Nginx的进程问题:
Nginx至少存在两种进程,一种进程叫做Master,另一种进程叫做Worker.(一直主进程多个线程)
源码安装:
./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

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

标签:Nginx

原文地址:http://blog.51cto.com/13581826/2093366

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!