Nginx是一款高性能、轻量级Web服务软件,用于HTTP、HTTPS、SMTP、POP3、IMAP协议。高效实现反向代理和负载均衡,可处理2-3万的并发数,理想状态达到5万。
IO多路复用
采用单线程异步非阻塞处理请求
高性能
高并发
占用系统资源少
阻塞性+多进程/多线程
更稳定,bug少
模块更丰富
跨平台、配置简单
非阻塞、高并发连接
内存消耗小:开启10个nginx才占150M内存
成本低廉,且开源
稳定性高,宕机的概率非常小
内置的健康检查功能:如果有一个服务宕机,会做一个健康检查,再发送的请求就不会发送到宕机的服务器了,重新将请求提交到其他的节点上
轻量级,nginx比apache 占用更少的内存及资源;
静态处理,Nginx 静态处理性能比 Apache 高 ;
Nginx可以实现无缓存的反向代理加速,提高网站运行速度;
Nginx的性能和可伸缩性不依赖于硬件,Apache依赖于硬件;
Nginx支持热部署,启动速度迅速,可以在不间断服务的情况下,对软件版本或者配置进行升级;
nginx是异步进程,多个连接可以对应一个进程 ;apache是同步多进程,一个连接对应一个进程;
Nginx高度模块化,编写模块相对简单,且组件比Apache少
高并发下nginx 能保持低资源低消耗高性能;
Nginx 配置简洁, Apache配置复杂;
systemctl stop firewallwd
systemctl disable firewallwd
setenforce 0
nginx-1.12.0.tar.gz
yum -y install pcre-devel zlib-devel openssl-devel gcc gcc-c++ make
useradd -M -s /sbin/nologin nginx
cd /opt
tar zxvf nginx-1.24.0.tar.gz -C /opt/
cd nginx-1.24.0/
./configure \
--prefix=/usr/local/nginx \
#指定nginx的安装路径
--user=nginx \
#指定用户名
--group=nginx \
#指定组名
--with-http_stub_status_module
#启用 http_stub_status_module 模块以支持状态统计
make -j4 && make install
#编译并安装
#make -j2可以进行双核编译,注意不可以超核
ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/
#让系统识别nginx的操作命令
nginx -t
#检查配置文件是否配置正确
nginx
#启动
停止
nginx -s quit
#qiut退出、stop停止、reopen重启、reload重载
#可以用nginx -help查看具体命令
cat /usr/local/nginx/logs/nginx.pid
#先查看nginx的PID号
kill -3
kill -s QUIT
killall -3 nginx
killall -s QUIT nginx
重载
kill -1
kill -s HUP
killall -1 nginx
killall -s HUP nginx
#日志分割,重新打开日志文件
kill -USR1
#在不关闭进程的情况下,重新生成日志文件
#平滑升级
kill -USR2
#在不关闭进程的情况下升级程序
netstat -lntp |grep nginx
#显示网络连接状态
ps aux |grep nginx
#显示进程
cat /usr/local/nginx/logs/nginx.pid
#通过路径直接查看pid
lsof -i:80
#查看端口使用信息
tar -zxf nginx-1.24.0.tar.gz
cd nginx-1.24.0
#配置nginx安装模块
./configure \
--prefix=/usr/local/nginx \
--user=nginx \
--group=nginx \
--with-http_stub_status_module
--with-http_ssl_module
make
#编译
#会在objs文件下生成一个nginx二进制文件
mv /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx_old
#将旧的文件备份并改名
cp objs/nginx /usr/local/nginx/sbin/nginx
#将新的nginx文件保存至其他目录
make upgrade
#升级
#要保证当前nginx进程是通过 /usr/local/nginx/sbin/nginx 启动的,而不是通过查找环境变量中那个nginx命令启动的
#或者先 killall nginx ,再/usr/local/nginx/sbin/nginx
nginx -v
#查看当前程序版本号
nginx -V
#查看nginx配置信息
方法一:
vim /etc/init.d/nginx
#!/bin/bash
#chkconfig: - 99 20
chkconfig表示运用此脚本进行管理
-表示不开机自己,这个位置表示那些运行级别可以自行启动程序
99表示开机时第99个执行此脚本
20表示关机时第20个关闭程序
#description:Nginx Service Control Script
COM="/usr/local/nginx/sbin/nginx"
PID="/usr/local/nginx/logs/nginx.pid"
case "$1" in
start)
$COM
;;
stop)
kill -s QUIT $(cat $PID)
;;
restart)
$0 stop
$0 start
;;
reload)
kill -s HUP $(cat $PID)
;;
*)
echo "Usage: $0 {start|stop|restart|reload}"
exit 1
esac
exit 0
chmod +x /etc/init.d/nginx
chkconfig --add nginx
#添加为系统服务
systemctl stop nginx
systemctl start nginx
方法二:
vim /lib/systemd/system/nginx.service
[Unit]
Description=nginx
After=network.target
[Service]
Type=forking
PIDFile=/usr/local/nginx/logs/nginx.pid
ExecStart=/usr/local/nginx/sbin/nginx
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true
[Install]
脚本说明:
[Unit]
#服务的说明
Description=
#描述服务
After=
#依赖,当依赖的服务启动之后再启动自定义的服务
[Service]
#服务运行参数的设置
Type=forking
#是后台运行的形式,使用此启动类型应同时指定PIDFile=,以便systemd能够跟踪服务的主进程。
PIDFile=
ExecStart=
#为服务的具体运行命令
ExecReload=
#为重启命令
ExecStop=
#为停止命令
PrivateTmp=True
#表示给服务分配独立的临时空间
#注意:启动、重启、停止命令全部要求使用绝对路径
文件路径:/usr/local/nginx/conf/nginx.conf
全局块:全局配置,对全局生效
events块:配置影响 Nginx 服务器与用户的网络连接
http块:配置代理、缓存、日志定义等绝大多数功能和第三方模块的配置
server块:配置虚拟主机的相关参数,一个 http 块中可以有多个server块
location块:用于配置匹配的uri
upstream块:配置后端服务器具体地址,负载均衡配置不可或缺的部分
vim /usr/local/nginx/conf/nginx.conf
全局配置
#user nobody;
##运行用户,若编译时未指定则默认为 nobody
worker_processes 1;
#工作进程数量,一般设置为和 CPU 核数一样;设置为auto,nginx将会自己获取这个数值
#error_log logs/error.log;
##错误日志文件的位置
#pid logs/nginx.pid;
##PID文件的位置
worker_rlimit_nofile 60000;
#设置所有worker进程最大可以打开的文件数,默认为1024
I/O 事件配置
events {
use epoll;
#使用 epoll I/O模型,2.6及以上版本的系统内核,建议使用epoll模型以提高性能
worker_connections 60000;
#每个进程处理 60000 个连接
multi_accept on;
#是否一次性将监听到的连接全接收进来,默认为off,关闭时一次接收一条连接
accept_mutex on;
#默认为on,开启时表示以串行方式接入新连接,否则将通报给所有worker。这可能会浪费资源并产生不可预计的后果,例如惊群问题
}
#如提高每个进程的连接数还需执行“ulimit -n 65535”命令临时修改本地每个进程可以同时打开的最大文件数。
#在Linux平台上,在进行高并发TCP连接处理时,最高的并发数量都要受到系统对用户单一进程同时可打开文件数量的限制(这是因为系统为每个TCP连接都要创建一个socket句柄,每个socket句柄同时也是一个文件句柄)。
#可使用ulimit -a命令查看系统允许当前用户进程打开的文件数限制。
#epoll是Linux内核为处理大批句柄而作改进的poll,是Linux下多路复用IO接口select/poll的增强版本,它能显著的减少程序在大量并发连接中只有少量活跃的情况下的系统CPU利用率。
#worker_processes的值和work_connections的值决定了最大并发数量,最大并发数计算方式为:worker_processes*worker_connections。但在反向代理场景中计算方法不同,因为nginx既要维持和客户端的连接,又要维持和后端服务器的连接,因此处理一次连接要占用2个连接,所以最大并发数计算方式为:worker_processes*worker_connections/2。
HTTP 配置
http {
##文件扩展名与文件类型映射表
include mime.types;
##默认文件类型
default_type application/octet-stream;
##日志格式设定
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
##访问日志位置
#access_log logs/access.log main;
##开启文件传输模式
sendfile on;
##只在sendfile on时有效。调用tcp_cork方法,让数据包不会马上传送出去,等到数据包最大时,一次性的传输出去,这样有助于解决网络堵塞。默认为off。
#tcp_nopush on;
##连接保持超时时间,单位是秒
#keepalive_timeout 0;
keepalive_timeout 65;
##gzip模块设置,设置是否开启gzip压缩输出
#gzip on;
##Web 服务的监听配置
server {
##监听地址及端口
listen 80;
##站点域名,可以有多个,用空格隔开
server_name www.test.com;
##网页的默认字符集
charset utf-8;
##根目录配置
location / {
##网站根目录的位置/usr/local/nginx/html
root html;
##默认首页文件名
index index.html index.php;
}
##内部错误的反馈页面
error_page 500 502 503 504 /50x.html;
##错误页面配置
location = /50x.html {
root html;
}
}
}
-----------------------------------------------------------
日志格式设定:
$remote_addr与$http_x_forwarded_for用以记录客户端的ip地址;
$remote_user:用来记录客户端用户名称;
$time_local: 用来记录访问时间与时区;
$request: 用来记录请求的url与http协议;
$status: 用来记录请求状态;成功是200,
$body_bytes_sent :记录发送给客户端文件主体内容大小;
$http_referer:用来记录从哪个页面链接访问过来的;
$http_user_agent:记录客户浏览器的相关信息;
通常web服务器放在反向代理的后面,这样就不能获取到客户的IP地址了,通过$remote_add拿到的IP地址是反向代理服务器的iP地址。反向代理服务器在转发请求的http头信息中,可以增加x_forwarded_for信息,用以记录原有客户端的IP地址和原来客户端的请求的服务器地址。
location常见配置指令,root、alias、proxy_pass
root(根路径配置):root /var/www/html
请求www.test.com/test/1.html,会返回文件/var/www/html/test/1.html
alias(别名配置):alias /var/www/html
请求www.test.com/test/1.html,会返回文件/var/www/html/1.html
proxy_pass(反向代理配置)
1.先使用命令/usr/local/nginx/sbin/nginx -V 查看已安装的 Nginx 是否包含 HTTP_STUB_STATUS 模块
cat /opt/nginx-1.12.0/auto/options | grep YES
#可查看 nginx 已安装的所有模块
2.修改 nginx.conf 配置文件,指定访问位置并添加 stub_status 配置
cd /usr/local/nginx/conf
cp nginx.conf nginx.conf.bak
vim /usr/local/nginx/conf/nginx.conf
......
http {
......
server {
listen 80;
server_name www.test.com;
charset utf-8;
location / {
root html;
index index.html index.php;
}
##添加 stub_status 配置##
location /status {
#访问位置为/status
stub_status on;
#打开状态统计功能
access_log off;
#关闭此位置的日志记录
}
}
}
3.重启服务,访问测试
systemctl restart nginx
浏览器访问 http://192.168.190.129/status
----------------------------------------------------------
Active connections:表示当前的活动连接数,即当前与 Nginx 服务器建立的连接数。
server accepts handled requests :表示已经处理的连接信息
三个数字依次表示服务器已接收的连接数;服务器成功处理的连接数;服务器累计处理的总请求数(在保持连接模式下,请求数量可能会大于连接数量)
Reading:表示当前正在从客户端读取数据的连接数。
Writing:表示当前正在向客户端写入数据的连接数。
Waiting:表示当前空闲并等待请求的连接数。
可 curl -Ls http://192.168.190.129/status 结合 awk与if 语句进行性能监控。
1.生成用户密码认证文件
yum install -y httpd-tools
htpasswd -c /usr/local/nginx/passwd.db zhangsan
chown nginx /usr/local/nginx/passwd.db
chmod 400 /usr/local/nginx/passwd.db
2.修改主配置文件相对应目录,添加认证配置项
vim /usr/local/nginx/conf/nginx.conf
......
server {
location / {
......
##添加认证配置##
auth_basic "secret";
#设置密码提示框文字信息
auth_basic_user_file /usr/local/nginx/passwd.db;
}
}
3.重启服务,访问测试
nginx -t
#查看配置文件是否正确
systemctl restart nginx
浏览器访问 http://192.168.190.129
访问控制规则如下:
deny IP/IP段:拒绝某个IP或IP段的客户端访问。
allow IP/IP段:允许某个IP或IP段的客户端访问。
规则从上往下执行,如匹配则停止,不再往下匹配。
vim /usr/local/nginx/conf/nginx.conf
......
server {
location / {
......
##添加控制规则##
allow 192.168.80.200;
#允许访问的客户端 IP
deny all;
#拒绝其它IP客户端访问
}
}
systemctl restart nginx
1.为虚拟主机提供域名解析
echo "192.168.190.129 www.test.com www.benet.com" >> /etc/hosts
2.为虚拟主机准备网页文档
mkdir -p /var/www/html/benet
mkdir -p /var/www/html/test
echo "www.test.com
" > /var/www/html/test/index.html
echo "www.benet.com
" > /var/www/html/benet/index.html
3.修改Nginx的配置文件
vim /usr/local/nginx/conf/nginx.conf
......
http {
......
server {
listen 80;
server_name www.test.com;
#设置域名www.test.com
charset utf-8;
access_log logs/www.test.access.log;
#设置日志名
location / {
root /var/www/html/test;
#设置www.test.com 的工作目录
index index.html index.php;
}
error_page 500 502 503 504 /50x.html;
location = 50x.html{
root html;
}
}
server {
listen 80;
server_name www.benet.com;
#设置域名www.benet.com
charset utf-8;
access_log logs/www.benet.access.log;
location / {
root /var/www/html/benet;
index index.html index.php;
}
error_page 500 502 503 504 /50x.html;
location = 50x.html{
root html;
}
}
}
4.重启服务,访问测试
systemctl restart nginx
浏览器访问
http://www.test.com
http://www.benet.com
vim /usr/local/nginx/conf/nginx.conf
......
http {
......
server {
listen 192.168.190.129:8080;
#设置监听 8080 端口
server_name www.test.com;
charset utf-8;
access_log logs/www.test.access.log;
location / {
root /var/www/html/test;
index index.html index.php;
}
error_page 500 502 503 504 /50x.html;
location = 50x.html{
root html;
}
}
server {
listen 192.168.190.129:8888;
#设置监听 8888 端口
server_name www.benet.com;
charset utf-8;
access_log logs/www.benet.access.log;
location / {
root /var/www/html/benet;
index index.html index.php;
}
error_page 500 502 503 504 /50x.html;
location = 50x.html{
root html;
}
}
}
systemctl restart nginx
浏览器访问
http://192.168.190.129:8080
http://192.168.190.129:8888