Stella981 Stella981
3年前
Pod安装神策SDK报错Remote branch v2.1.3 not found in upstream origin
问题今日在执行项目调试,ios使用pod安装第三方依赖的时候,执行podinstall报错:!在这里插入图片描述(https://imgblog.csdnimg.cn/20200824163912490.png?xossprocessimage/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_1
Stella981 Stella981
3年前
Nginx 提示host not found in upstream 错误解决方法
NginxDNSresolver配置实例,本文讲解在proxy\_pass和upstreamserver通信的时候需要手动指定resolver,本文就给出了配置实例.nginx通过proxy\_pass和upstreamserver通信的时候需要手动指定resolver。某些时候DNS解析失败就会出现这个错
Stella981 Stella981
3年前
Nginx的upstream目前支持5种分配方式
1、轮询(默认)每个请求按时间顺序逐一分配到不同的后端服务器,如果后端服务器down掉,能自动剔除。2、weight指定轮询几率,weight和访问比率成正比,用于后端服务器性能不均的情况。例如:upstream bakend {    server 192.168.0.14 weight10;    ser
Stella981 Stella981
3年前
Nginx的负载均衡
上篇blog讲述了加权轮询算法的原理、以及负载均衡模块中使用的数据结构,接着我们来看看加权轮询算法的具体实现。 指令的解析函数 如果upstream配置块中没有指定使用哪种负载均衡算法,那么默认使用加权轮询。也就是说使用加权轮询算法,并不需要特定的指令,因此也不需要实现指令的解析函数。而实际上,和其它负载均衡算法不同(比如ip\_ha
Stella981 Stella981
3年前
Nginx域名解析流程,源码分析
!(https://oscimg.oschina.net/oscnet/4a351a07169648d098175fedb4775d338e0.gif"键盘动图引导关注")nginx在做正向代理、反向代理的时候,或upstream使用域名的时候,要做频繁的域名解析,为了更快的响应,nginx有一套自己的域名解析过程!(https:/
Stella981 Stella981
3年前
DevOps简单介绍
jenkins作为测试环境代码发布工具,sonar作为静态代码检查工具,idea作为开发工具,jira作为缺陷管理平台,upstream作为codereview工具(正在研究)。DevOps最近比较火热,但是核心貌似都是jenkinsDevOps是一个完整的面向IT运维的工作流,以IT自动化以及持续集成(CI)、持续部署(CD)为基础,来优化程式
Stella981 Stella981
3年前
Nginx升级Keepalive_Requests默认值变更
T婶早上同步了一个消息, Nginx代理和Upstream服务器之间在某种情况下一直发connection:close。Nginx从1.13.6升级到了1.15.8出现的问题,T婶牺牲了午休的时间堵上的这个坑,其根本原因,是升级到1.15.8之后,Nginx的长链接Keepalive\_Requests的默认值变成了:100。 过个这个极值就
Stella981 Stella981
3年前
Nginx负载均衡监控节点状态
  利用第三方插件监控(淘宝开发的Tengine)模块:nginx\_upstream\_check\_module实现web界面下载补丁包wgethttps://codeload.github.com/yaoweibin/nginx\_upstream\_check\_module/zip/master解压缩unzipmaste
Stella981 Stella981
3年前
Nginx反向代理upstream模块介绍
!(https://oscimg.oschina.net/oscnet/1e67c46e359a4d6c8f36b590a372961f.gif)!(https://oscimg.oschina.net/oscnet/819eda5e7de54c23b54b04cfc00d3206.jpg)1.Nginx反
Stella981 Stella981
3年前
Nginx学习笔记——upstream
Nginx除了作为反向代理,还有一个很重要的特性,负载均衡。upstream就是用来实现负载均衡的一个节点。upstreamdispatcher{    serverip:port;    serverip2:port2;}再通过配置location中的proxy\_pass为http://dispatcher$r