zoukankan      html  css  js  c++  java
  • jenkins Skywalking安装部署文档总结

    容器做的事,就是把资源分开管理,互不干扰。
    镜像image-生成容器的模板

    使用Docker快速部署Skywalking
    http://www.dreamwu.com/post-1944.html

    "SKYWALKING__SERVICENAME": "asp-net-core-frontend"


    jenkins安装和环境搭建
    https://www.cnblogs.com/linxinmeng/p/12690340.html
    https://blog.csdn.net/zhang_cl_cn/article/details/90232153

     Ocelot限速

    https://ocelot.readthedocs.io/en/latest/features/ratelimiting.html

    startup Ocelot缓存提高效率
    .AddCacheManager(x =>
    {
    x.WithDictionaryHandle();//默认字典存储
    })


    // "FileCacheOptions": {
    // "TtlSeconds": 15,
    // "Region": "UserCache" //可以调用Api清理
    // }

    Polly 重试 熔断 超时
    //"QoSOptions": {
    // "ExceptionsAllowedBeforeBreaking": 3, //允许多少个异常请求
    // "DurationOfBreak": 10000, // 熔断的时间,单位为ms
    // "TimeoutValue": 2000 //如果下游请求的处理时间超过多少则自如将请求设置为超时 默认90秒
    //}

    .NET Core微服务之基于Ocelot+IdentityServer实现统一验证与授权
    https://www.cnblogs.com/edisonchou/p/integration_authentication-authorization_service_foundation.html

    https://github.feixue.com


    网关的鉴权授权--主要是检查token存在和有效性,其实不管权限
    而且后端需要token信息

    内网穿透
    https://natapp.cn/
    http://localhost:7070/
    http://192.168.10.22:7070/

    centos7右上角网络连接图标消失的解决方法

    第一次:经过百度,直接使用一条命令,然后重启即可:
    mv /var/lib/NetworkManager /var/lib/NetworkManager.bak
    这样就成功解决了,图标回来了!

    第二次:遇到相同的问题,用了第一种方法,但是结果却提示说目录或文件不存在,于是我又百度,找到了别的命令:
    chkconfig network off
    chkconfig network on
    service NetworkManager stop
    service NetworkManager start
    完成后,图标就直接出来了!

    <div>

    <iframe id="tensor" border="0" frameborder="0"></iframe>
    </div>

    <script>
    window.onload = function () { //加载页面的时候就执行
    var tensor_obj = document.getElementById("tensor"); //根据ID获取html元素
    var heigth_screen = window.screen.height; //获取整个屏幕的分辨率
    var width_screen = window.screen.width;
    heigth_screen = heigth_screen * 0.85; //在这里分配整个界面的85%给iframe来显示嵌套的界面
    tensor_obj.style.height = heigth_screen + "px";
    width_screen = width_screen * 0.85;
    tensor_obj.style.width = width_screen + "px";
    }

    </script>

    ipconfig /flushdns

  • 相关阅读:
    分布式任务框架elastic-job 学习笔记
    spring 基础知识复习
    Spring MVC 搭建
    python引入自定义模块
    python操作Excel读写--使用xlrd
    selenium2.0关于python的常用函数
    从零开始学Python07作业源码:虚拟人生(仅供参考)
    通过System.getProperties()获取系统参数
    Android Studio启动后出现cannot bind to 127.0.0.1:5037 10048的解决办法
    开发环境入门 linux基础 (部分)awk 赋值变量 if
  • 原文地址:https://www.cnblogs.com/canfengfeixue/p/15723623.html
Copyright © 2011-2022 走看看