SLB这个是阿里云的负载均衡的东西,天猫,已经用来多年?;褂芯褪?2306现在有一大部分查询余票的就是放到阿里云。好像写着也用到了SLB。总之就是屌。这里还有说一个4层和7层的东西。
什么东西我也不太懂百度出来的
4传输层 http httpd
7应用层 tcp udp
SLB官网这样写的,4层采用开源软件LVS+keeplived实现负载均衡。7层采用Tengine实现负载均衡,Tengine是由淘宝网发起的web服务器项目,它在Nginx的基础上,针对大访问量网站的需求,添加了很多高级功能和特性。
这个年代上云是比较好的选择。
跑到slb负载均衡那里。
服务,未添加的服务器
添加监听。
就选择http。80端口。
“轮询模式”会将外部和内部的访问请求依序分发给后端ECS进行处理。
“最小连接数模式”会将外部和内部的访问请求分发给当前连接数最小的一台后端ECS进行处理。
http_2xx http_3xx 就是404 403 这种页面懂吧。看此文章最底部
图片有中文看中文吧。那个/hehe是静态文件
响应超时时间:5秒健康检查间隔:2秒不健康阈值:3健康阈值:3在此配置下有利于用户服务及应用状态的尽快收敛:ECS健康检查失败响应时间(网络有问题):(2+5)×3=21秒如果用户有更高要求,可以适当地降低响应超时时间值,但必须先保证自己服务在正常状态下的处理时间小于这个值。ECS健康检查成功响应时间:2×3=6秒
写上SLB公网ip,可以进去看看。
傻瓜化的操作好爽。
还有一个ecs弹性收缩的功能,以后有机会在写。
我明白了,这个就是cookie来认识,这个自己从哪里来
卧槽,加上这个cookie就变成了一直访问这台机子,和nginx的ip_hash;一个样了。
官网说是Tengine,也是从nginx的基础上再改造。算了,会的人已经会了,不会的人恶补吧。
好了就这样了。
200 - OK,服务器成功返回网页 - Standard response for successful HTTP requests.
301 - Moved Permanently(永久跳转),请求的网页已永久跳转到新位置。 - This and all future requests should be directed to the given.
403 - Forbidden(禁止访问),服务器拒绝请求 - forbidden request (matches a deny filter) => HTTP 403 - The request was a legal request, but the server is refusing to respond to it.
404 - Not Found,服务器找不到请求的页面。 - The requested resource could not be found but may be available again in the future.
500 - Internal Server Error(内部服务器错误) - internal error in haproxy => HTTP 500 - A generic error message, given when no more specific message is suitable.
502 - Bad Gateway(坏的网关),一般是网关服务器请求后端服务时,后端服务没有按照http协议正确返回结果。 - the server returned an invalid or incomplete response => HTTP 502 - The server was acting as a gateway or proxy and received an invalid response from the upstream server.
503 - Service Unavailable(服务当前不可用),可能因为超载或停机维护。 - no server was available to handle the request => HTTP 503 - The server is currently unavailable (because it is overloaded or down for maintenance).
504 - Gateway Timeout(网关超时),一般是网关服务器请求后端服务时,后端服务没有在特定的时间内完成服务。 - the server failed to reply in time => HTTP 504 - The server was acting as a gateway or proxy and did not receive a timely response from the upstream server.