• 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

  • 相关阅读:
    Centos7安装部署openstack--Keystone认证服务
    Centos7安装部署openstack----基础服务安装
    Centos7 k8s dns
    集中式存储3apr
    Centos7 k8s部署dahsboard
    Centos7 k8s tomcat-app项目持久化
    Centos7 k8s 容器的网络访问service
    Centos 7 k8s Deployment新副本控制器
    模型层中模型的基本了解
    程序员必知必会Git的小知识
  • 原文地址:https://www.cnblogs.com/canfengfeixue/p/15723623.html
Copyright © 2020-2023  润新知