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