2024年7月30日(nginx 代理 负载均衡 jdk )

一、nginx代理
1、动态服务器

修改index.html文件,并且发布web项目

当前这台主机1动态服务器,后端服务器对标Java服务器,由于没有部署tomcat,所以使用nginx代理

root@localhost \~\]# echo "this is web server" \> /usr/local/nginx/html/index.html \[root@localhost \~\]# source \~/nginx.sh \[root@localhost \~\]# curl localhost this is web server ![](https://i-blog.csdnimg.cn/direct/6e7ccab476f34bd095c7556d0ed16395.png)

2、静态服务器

root@localhost \~\]# echo "this is static server" \> /usr/local/nginx/html/index.html \[root@localhost \~\]# /usr/local/nginx/sbin/nginx -s reload \[root@localhost \~\]# ps -aux \| grep nginx ![](https://i-blog.csdnimg.cn/direct/9bcf49f6fef6494c991d32cab49c7a39.png) \[root@localhost \~\]# curl localhost this is static server \[root@localhost \~\]# curl 192.168.8.151 this is web server 使用152(static server)主机代理151(web server)主机,当用户访问152时,152不响应,而由151主机响应,使用152主机nginx反向代理151主机 location proxy_pass 协议 域名 端口

修改配置文件 /usr/local/nginx/conf/nginx.conf

root@localhost \~\]# vim /usr/local/nginx/conf/nginx.conf ![](https://i-blog.csdnimg.cn/direct/87010aae1ddc42af81118deb48ad1b51.png) \[root@localhost \~\]# /usr/local/nginx/sbin/nginx -s reload ![](https://i-blog.csdnimg.cn/direct/98d05783ae1d479987c73c41b0422e5e.png) 现在的静态服务器实际尚是代理服务器,nignx代理其他服务的时候,不需要对方同意,更加方便模块化操作,如果代理一个服务器,

3、配置allowdeny服务器

root@allowdeny \~\]# scp [email protected]:\~/nginx-1.26.1.tar.gz ./ \[root@allowdeny \~\]# yum -y install gcc gcc-c++ pcre-devel openssl-devel \[root@allowdeny \~\]# tar -xzvf nginx-1.26.1.tar.gz \[root@allowdeny nginx-1.26.1\]# cd nginx-1.26.1 \[root@allowdeny nginx-1.26.1\]# ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-stream \[root@allowdeny nginx-1.26.1\]# make \&\& make install \[root@allowdeny nginx-1.26.1\]# useradd -s /bin/nologin -M nginx \[root@allowdeny nginx-1.26.1\]# /usr/local/nginx/sbin/nginx

修改index.html文件内容

root@allowdeny nginx-1.26.1\]# /usr/local/nginx/sbin/nginx \[root@allowdeny nginx-1.26.1\]# echo "your are luckly" \> /usr/local/nginx/html/index.html \[root@allowdeny nginx-1.26.1\]# curl localhost your are luckly \[root@allowdeny nginx-1.26.1\]# vim /usr/local/nginx/conf/nginx.conf ![](https://i-blog.csdnimg.cn/direct/ec887c7f432e4eecac6c494ba7bf7b8f.png) \[root@allowdeny nginx-1.26.1\]# /usr/local/nginx/sbin/nginx -s reload \[root@localhost \~\]# curl 192.168.8.153 your are luckly \[root@localhost \~\]# curl 192.168.8.153 \ \\403 Forbidden\\ \ \\403 Forbidden\\ \\nginx/1.26.1\ \ \

二、负载均衡

让每一台主机能够获取相应的压力,轮询,依次将任务部署给不同主机,权重

|------------------|---------------|
| static server | 192.168.8.159 |
| dynamicserver d0 | 192.168.8.155 |
| dynamicserver d1 | 192.168.8.158 |
| dynamicserver d2 | 192.168.8.160 |

root@static \~\]# echo "I am static server" \> /usr/local/nginx/html/index.html \[root@d0 \~\]# echo "I am dynamicserver d0" \> /usr/local/nginx/html/index.html \[root@d0 \~\]# echo "I am dynamicserver d1" \> /usr/local/nginx/html/index.html \[root@d0 \~\]# echo "I am dynamicserver d2" \> /usr/local/nginx/html/index.html 常用的状态有: weight:服务访问的权重,默认是1。 down:表示当前的servel 时不参与负载均衡。 backup:预留的备份机品。当其他所有的非backup机器出现故障或者忙的时候,才会请求 backup机器,因此这台机器的压力最轻。 max_fails:在fail_timeout时间内,允许请求最大的失败次数,默认为1。当达到最大失败时, 会在fail_timeout时间内不允许再次被选择。,返回proxy_next_upstream模块定义的错误。 fail_timeout:单位为秒,默认是10秒。指定一段时间内,请求经历了max_fails次失败后,该 server不能访问的时间(暂停服务的时间)。max_fails可以和fail_timeout-起使用。 注意:当负载调度算法为ip_hash时,后端服务器在负载均衡调度中的状态不能是backup。

1、轮询

root@static \~\]# vim /usr/local/nginx/conf/nginx.conf ![](https://i-blog.csdnimg.cn/direct/c14e5212d28b43f5b95d803857a615d7.png) ![](https://i-blog.csdnimg.cn/direct/9f74310e3cbd42379ddf609c3e18fa7e.png) \[root@static \~\]# /usr/local/nginx/sbin/nginx -s reload ![](https://i-blog.csdnimg.cn/direct/db0fbf1bc4a347bb8b17d3fa2ca1184c.png) ![](https://i-blog.csdnimg.cn/direct/d15464a93a5a4fbe8db8a1caaa4d2c7b.png) ![](https://i-blog.csdnimg.cn/direct/ce8cfa2ee9df4e11b16eaf3dbb98a4c3.png) \[root@static \~\]# vim /usr/local/nginx/conf/nginx.conf (d2 down) ![](https://i-blog.csdnimg.cn/direct/6b4ae4c906894ff3b55dd27df28f3e1f.png) \[root@static \~\]# /usr/local/nginx/sbin/nginx -s reload

2、权重

root@static \~\]# vim /usr/local/nginx/conf/nginx.conf (权重值大的访问次数多) ![](https://i-blog.csdnimg.cn/direct/c7a6c4e5e5ae4157811de492b07fb5d9.png) \[root@static \~\]# /usr/local/nginx/sbin/nginx -s reload ![](https://i-blog.csdnimg.cn/direct/403086b6ac6d49be87d03122698592d1.png)

3、ip_hash

■ 当对后端的多台动态应用服务器做负载均衡时,ip_hash指令能够将某个客户端IP的请求通

过哈希算法定位到同一台后端服务器上。

■ 这样,当来自某一个IP的用户在后端Web服务器A上登录后,再访问该站点的其他URL,能

保证其访问的还是后端web服务器A。

■ 注意:使用ip_hash指令无法保证后端服务器的负载均衡,可能导致有些后端服务器接收到

的请求多,有些后端服务器接受的请求少,而且设置后端服务器权重等方法将不起作用

root@static \~\]# vim /usr/local/nginx/conf/nginx.conf (第一次访问出来是那个就一直是那个) ![](https://i-blog.csdnimg.cn/direct/0cea8829fc1645beb8cf53612304686e.png) \[root@static \~\]# /usr/local/nginx/sbin/nginx -s reload ![](https://i-blog.csdnimg.cn/direct/c075204abde84ee78e7c7739559c012d.png)

4、least_conn

least_conn:最少连接,把请求转发给连接数较少的后端服务器。轮询算法是把请求平均

地转发给各个后端,使它们的负载大致相同;但是,有些请求占用的时间农长,会导致其

所在的后端负载较高。这种情况下,leastconn这种方式就可以达到更好的负载均衡效果。

root@static \~\]# vim /usr/local/nginx/conf/nginx.conf ![](https://i-blog.csdnimg.cn/direct/241ea91cc68c4228a705fc78dd2736e8.png)

三、平滑升级

1、查看nginx当前版本

root@static \~\]# /usr/local/nginx/sbin/nginx -v nginx version: nginx/1.26.1

2、平滑升级到1.27版本

(1)服务持续期间对nginx升级

下载新的nginx

root@static \~\]# wget https://nginx.org/download/nginx-1.27.0.tar.gz \[root@static \~\]# tar -zxvf nginx-1.27.0.tar.gz \[root@static nginx-1.27.0\]# ./configure --prefix=/usr/local/nginx/ --user=nginx --group=nginx --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-stream \[root@static nginx-1.27.0\]# make \&\& make install ![](https://i-blog.csdnimg.cn/direct/97c0575cd8e149aebc9cc7c060952742.png) \[root@static nginx-1.27.0\]# /usr/local/nginx/sbin/nginx -v nginx version: nginx/1.27.0 \[root@static nginx-1.27.0\]# /usr/local/nginx/sbin/nginx.old -v nginx version: nginx/1.26.1

使用kill -USR2 启动新版本的NGINX服务

root@static nginx-1.27.0\]# ps -aux\|grep nginx ![](https://i-blog.csdnimg.cn/direct/11480f3bd0784342a05e59b5d0dc8830.png) \[root@static nginx-1.27.0\]# kill -USR2 1262 \[root@static nginx-1.27.0\]# kill -WINCH 1294 \[root@static nginx-1.27.0\]# kill -QUIT 1262 \[root@static nginx-1.27.0\]# curl -I localhost HTTP/1.1 200 OK Server: nginx/1.27.0 Date: Tue, 30 Jul 2024 08:44:10 GMT Content-Type: text/html Content-Length: 22 Connection: keep-alive Last-Modified: Tue, 30 Jul 2024 07:44:21 GMT ETag: "66a899d5-16" Accept-Ranges: bytes tomcat9 可以在jdk8的环境运行 # tomcat10 必须在jdk17以上的版本运行 #在实际的工作中,不需要这么高的版本,在实训,要求使用最新斑斑 #新版本只换骨不换皮,我们使用新版本,为了让大家知道各个程序之间版本依赖管理

# 配置tomcat 10 运行环境

root@d0 \~\]# wget https://download.oracle.com/java/22/latest/jdk-22_linux-x64_bin.tar.gz \[root@d0 \~\]# tar -xzvf jdk-22_linux-x64_bin.tar.gz \[root@d0 bin\]# cd jdk-22.0.2/ \[root@d0 bin\]# cd bin/ \[root@d0 bin\]# ./java \[root@d0 \~\]# mv jdk-22.0.2/ /usr/local/jdk22/ \[root@d0 \~\]# cd /usr/local/jdk22/ \[root@d0 jdk22\]# ls \[root@d0 jdk22\]# pwd /usr/local/jdk22 \[root@d0 jdk22\]# sed -n '$p' /etc/profile unset -f pathmunge \[root@d0 jdk22\]# sed -i '$aexport JAVA_HOME=/usr/local/jdk22/' /etc/profile \[root@d0 jdk22\]# sed -n '$p' /etc/profile export JAVA_HOME=/usr/local/jdk22/ \[root@d0 jdk22\]# source /etc/profile \[root@d0 jdk22\]# sed -i '$aPATH=$JAVA_HOME/bin:$PATH' /etc/profile \[root@d0 jdk22\]# sed -n '$p' /etc/profile PATH=$JAVA_HOME/bin:$PATH \[root@d0 jdk22\]# source /etc/profile \[root@d0 jdk22\]# java -version \[root@d0 \~\]# wget https://dlcdn.apache.org/tomcat/tomcat-10/v10.1.26/bin/apache-tomcat-10.1.26.tar.gz

相关推荐
fantasy_arch15 分钟前
深度学习--softmax回归
人工智能·深度学习·回归
共享家952722 分钟前
深入剖析Linux常用命令,助力高效操作
linux·运维·服务器
Blossom.11827 分钟前
量子计算与经典计算的融合与未来
人工智能·深度学习·机器学习·计算机视觉·量子计算
Zfox_1 小时前
【C++项目】从零实现RPC框架「四」:业务层实现与项目使用
linux·开发语言·c++·rpc·项目
硅谷秋水1 小时前
MoLe-VLA:通过混合层实现的动态跳层视觉-语言-动作模型实现高效机器人操作
人工智能·深度学习·机器学习·计算机视觉·语言模型·机器人
阳树阳树1 小时前
signal-新的状态管理模式
前端·javascript
fakaifa1 小时前
beikeshop多商户跨境电商独立站最新版v1.6.0版本源码
前端·小程序·uni-app·php·beikeshop多商户·beikeshop跨境电商
吃旺旺雪饼的小男孩1 小时前
Ubuntu 22.04 安装和运行 EDK2 超详细教程
linux·运维·ubuntu
IT小馋猫1 小时前
Linux 企业项目服务器组建(附脚本)
linux·服务器·网络
2301_764441331 小时前
基于神经网络的肾脏疾病预测模型
人工智能·深度学习·神经网络