Nginx反向代理和负载均衡

    科技2022-07-10  111

    什么是反向代理

    通常的代理服务器,只用于代理内部网络对Internet的连接请求,客户机必须指定代理服务器,并将本来要直接发送到Web服务器上的http请求发送到代理服务器中由代理服务器向Internet上的web服务器发起请求,最终达到客户机上网的目的(也就是正向代理)。

    而反向代理(Reverse Proxy)方式是指以代理服务器来接受internet上的连接请求,然后将请求转发给内部网络上的服务器,并将从服务器上得到的结果返回给internet上请求连接的客户端,此时代理服务器对外就表现为一个反向代理服务器。

    什么是负载均衡

    负载均衡:分摊到多个操作单元上进行执行,和它的英文名称很匹配。就是我们需要一个调度者,保证所有后端服务器都将性能充分发挥,从而保持服务器集群的整体性能最优,这就是负载均衡。

    Nginx的配置

    配置文件位置:conf/nginx.conf 设置 404 页面导向地址

    error_page 404 https://www.nginx.com; #错误页 proxy_intercept_errors on; #如果被代理服务器返回的状态码为400或者大于400,设置的error_page配置起作用。默认为off。

    如果我们的代理只允许接受get,post请求方法的一种

    proxy_method get; #支持客户端的请求方法。post/get;

    设置支持的http协议版本

    proxy_http_version 1.0 ; #Nginx服务器提供代理服务的http协议版本1.0,1.1,默认设置为1.0版本

    Nginx 负载均衡详解

    upstream mysvr { server 192.168.10.121:3333; server 192.168.10.122:3333; } server { .... location ~*^.+$ { proxy_pass http://mysvr; #请求转向mysvr 定义的服务器列表 } }

    热备:如果你有2台服务器,当一台服务器发生事故时,才启用第二台服务器给提供服务。服务器处理请求的顺序:AAAAAA突然A挂啦,BBBBBBBBBBBBBB…

    upstream mysvr { server 127.0.0.1:7878; server 192.168.10.121:3333 backup; #热备 }

    轮询:nginx默认就是轮询其权重都默认为1,服务器处理请求的顺序:ABABABABAB…

    upstream mysvr { server 127.0.0.1:7878; server 192.168.10.121:3333; }

    加权轮询:跟据配置的权重的大小而分发给不同服务器不同数量的请求。如果不设置,则默认为1。下面服务器的请求顺序为:ABBABBABBABBABB…

    upstream mysvr { server 127.0.0.1:7878 weight=1; server 192.168.10.121:3333 weight=2; }

    ip_hash:nginx会让相同的客户端ip请求相同的服务器。

    upstream mysvr { server 127.0.0.1:7878; server 192.168.10.121:3333; ip_hash; }

    关于nginx负载均衡配置的几个状态参数讲解。

    down,表示当前的server暂时不参与负载均衡。

    backup,预留的备份机器。当其他所有的非backup机器出现故障或者忙的时候,才会请求backup机器,因此这台机器的压力最轻。

    max_fails,允许请求失败的次数,默认为1。当超过最大次数时,返回proxy_next_upstream 模块定义的错误。

    fail_timeout,在经历了max_fails次失败后,暂停服务的时间。max_fails可以和fail_timeout一起使用。

    upstream mysvr { server 127.0.0.1:7878 weight=2 max_fails=2 fail_timeout=2; server 192.168.10.121:3333 weight=1 max_fails=2 fail_timeout=1; }

    Nginx停止服务和各种命令

    1.停止Nginx服务的四种方法

    从容停止服务 这种方法较stop相比就比较温和一些了,需要进程完成当前工作后再停止。 nginx -s quit 立即停止服务 这种方法比较强硬,无论进程是否在工作,都直接停止进程。 nginx -s stop systemctl 停止 systemctl属于Linux命令 systemctl stop nginx.service killall 方法杀死进程 直接杀死进程,在上面无效的情况下使用,态度强硬,简单粗暴! killall nginx

    2.启动Nginx

    nginx直接启动

    nginx

    systemctl命令启动(Linux)

    systemctl start nginx.service

    3.查看启动后记录(linux)

    ps aux | grep nginx

    重启Nginx服务(Linux)

    systemctl restart nginx.service

    5.重新载入配置文件

    nginx -s reload

    6.查看端口号

    netstat -tlnp

    补充

    nginx.conf默认配置

    #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } 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; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } #} # HTTPS server # #server { # listen 443 ssl; # server_name localhost; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_session_cache shared:SSL:1m; # ssl_session_timeout 5m; # ssl_ciphers HIGH:!aNULL:!MD5; # ssl_prefer_server_ciphers on; # location / { # root html; # index index.html index.htm; # } #} }

    nginx报错[error]CreateFile()…

    无论是nginx -s stop还是nginx -s reload命令,都会出现这个错误。

    解决方法:使用命令创建/logs/nginx.pid文件,命令如下所示:

    nginx -c conf/nginx.conf

    参考文章: https://www.runoob.com/w3cnote/nginx-proxy-balancing.html https://www.cnblogs.com/tudou1179006580/p/11124154.html https://blog.csdn.net/qq_30109365/article/details/83589113

    Processed: 0.011, SQL: 8