-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2333 lines (1306 loc) · 68.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zh-CN" data-default-color-scheme=auto>
<head>
<meta charset="UTF-8">
<link rel="apple-touch-icon" sizes="76x76" href="/img/fluid.png">
<link rel="icon" href="/img/fluid.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="theme-color" content="#2f4154">
<meta name="author" content="imwang77">
<meta name="keywords" content="">
<meta property="og:type" content="website">
<meta property="og:title" content="imwang77 BLOG">
<meta property="og:url" content="https://imwang77.github.io/index.html">
<meta property="og:site_name" content="imwang77 BLOG">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="imwang77">
<meta name="twitter:card" content="summary_large_image">
<meta name="referrer" content="no-referrer-when-downgrade">
<title>imwang77 BLOG</title>
<link rel="stylesheet" href="https://lib.baomitu.com/twitter-bootstrap/4.6.1/css/bootstrap.min.css" />
<!-- 主题依赖的图标库,不要自行修改 -->
<!-- Do not modify the link that theme dependent icons -->
<link rel="stylesheet" href="//at.alicdn.com/t/font_1749284_hj8rtnfg7um.css">
<link rel="stylesheet" href="//at.alicdn.com/t/font_1736178_lbnruvf0jn.css">
<link rel="stylesheet" href="/css/main.css" />
<link id="highlight-css" rel="stylesheet" href="/css/highlight.css" />
<link id="highlight-css-dark" rel="stylesheet" href="/css/highlight-dark.css" />
<script id="fluid-configs">
var Fluid = window.Fluid || {};
Fluid.ctx = Object.assign({}, Fluid.ctx)
var CONFIG = {"hostname":"imwang77.github.io","root":"/","version":"1.9.7","typing":{"enable":true,"typeSpeed":70,"cursorChar":"_","loop":false,"scope":[]},"anchorjs":{"enable":true,"element":"h1,h2,h3,h4,h5,h6","placement":"left","visible":"hover","icon":""},"progressbar":{"enable":true,"height_px":3,"color":"#29d","options":{"showSpinner":false,"trickleSpeed":100}},"code_language":{"enable":true,"default":"TEXT"},"copy_btn":true,"image_caption":{"enable":true},"image_zoom":{"enable":true,"img_url_replace":["",""]},"toc":{"enable":true,"placement":"right","headingSelector":"h1,h2,h3,h4,h5,h6","collapseDepth":0},"lazyload":{"enable":true,"loading_img":"/img/loading.gif","onlypost":false,"offset_factor":2},"web_analytics":{"enable":true,"follow_dnt":true,"baidu":null,"google":{"measurement_id":null},"tencent":{"sid":null,"cid":null},"woyaola":null,"cnzz":null,"leancloud":{"app_id":null,"app_key":null,"server_url":null,"path":"window.location.pathname","ignore_local":false}},"search_path":"/local-search.xml","include_content_in_search":true};
if (CONFIG.web_analytics.follow_dnt) {
var dntVal = navigator.doNotTrack || window.doNotTrack || navigator.msDoNotTrack;
Fluid.ctx.dnt = dntVal && (dntVal.startsWith('1') || dntVal.startsWith('yes') || dntVal.startsWith('on'));
}
</script>
<script src="/js/utils.js" ></script>
<script src="/js/color-schema.js" ></script>
<!-- Google tag (gtag.js) -->
<script async>
if (!Fluid.ctx.dnt) {
Fluid.utils.createScript("https://www.googletagmanager.com/gtag/js?id=", function() {
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', '');
});
}
</script>
<meta name="generator" content="Hexo 7.0.0"></head>
<body>
<header>
<div class="header-inner" style="height: 100vh;">
<nav id="navbar" class="navbar fixed-top navbar-expand-lg navbar-dark scrolling-navbar">
<div class="container">
<a class="navbar-brand" href="/">
<strong>imwang77 BLOG</strong>
</a>
<button id="navbar-toggler-btn" class="navbar-toggler" type="button" data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<div class="animated-icon"><span></span><span></span><span></span></div>
</button>
<!-- Collapsible content -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto text-center">
<li class="nav-item">
<a class="nav-link" href="/" target="_self">
<i class="iconfont icon-home-fill"></i>
<span>首页</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/archives/" target="_self">
<i class="iconfont icon-archive-fill"></i>
<span>归档</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/categories/" target="_self">
<i class="iconfont icon-category-fill"></i>
<span>分类</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/tags/" target="_self">
<i class="iconfont icon-tags-fill"></i>
<span>标签</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/about/" target="_self">
<i class="iconfont icon-user-fill"></i>
<span>关于</span>
</a>
</li>
<li class="nav-item" id="search-btn">
<a class="nav-link" target="_self" href="javascript:;" data-toggle="modal" data-target="#modalSearch" aria-label="Search">
<i class="iconfont icon-search"></i>
</a>
</li>
<li class="nav-item" id="color-toggle-btn">
<a class="nav-link" target="_self" href="javascript:;" aria-label="Color Toggle">
<i class="iconfont icon-dark" id="color-toggle-icon"></i>
</a>
</li>
</ul>
</div>
</div>
</nav>
<div id="banner" class="banner" parallax=true
style="background: url('/images/1.jpg') no-repeat center center; background-size: cover;">
<div class="full-bg-img">
<div class="mask flex-center" style="background-color: rgba(0, 0, 0, 0.3)">
<div class="banner-text text-center fade-in-up">
<div class="h2">
<span id="subtitle" data-typed-text="世上并无这么多的意义,只需前行"></span>
</div>
</div>
<div class="scroll-down-bar">
<i class="iconfont icon-arrowdown"></i>
</div>
</div>
</div>
</div>
</div>
</header>
<main>
<div class="container nopadding-x-md">
<div id="board"
style="margin-top: 0">
<div class="container">
<div class="row">
<div class="col-12 col-md-10 m-auto">
<div class="row mx-auto index-card">
<div class="col-12 col-md-4 m-auto index-img">
<a href="/2023/03/24/KylinV10_%E7%BD%91%E7%BB%9C%E9%85%8D%E7%BD%AE/" target="_self">
<img src="/images/docImages/Python_PaddleOCR%E8%AF%86%E5%88%AB%E7%BD%91%E7%AB%99%E7%99%BB%E5%BD%95%E9%AA%8C%E8%AF%81%E7%A0%81/Python_PaddleOCR%E8%AF%86%E5%88%AB%E7%BD%91%E7%AB%99%E7%99%BB%E5%BD%95%E9%AA%8C%E8%AF%81%E7%A0%81_head.png" srcset="/img/loading.gif" lazyload alt="银河麒麟V10_网络配置">
</a>
</div>
<article class="col-12 col-md-8 mx-auto index-info">
<h2 class="index-header">
<a href="/2023/03/24/KylinV10_%E7%BD%91%E7%BB%9C%E9%85%8D%E7%BD%AE/" target="_self">
银河麒麟V10_网络配置
</a>
</h2>
<a class="index-excerpt " href="/2023/03/24/KylinV10_%E7%BD%91%E7%BB%9C%E9%85%8D%E7%BD%AE/" target="_self">
<div>
简述安装的银行麒麟v10操作系统,在重启后发现无网络连接,查看网卡ifcfg-ens32配置文件发现已配置开机自启动,但还是无IP配置 1234567891011121314151617181920TYPE=EthernetPROXY_METHOD=noneBROWSER_ONLY=noBOOTPROTO=noneDEFROUTE=yesIPV4_FAILURE_FATAL=noIPV6INIT=
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2023-03-24 00:00" pubdate>
2023-03-24
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/kylin/" class="category-chain-item">kylin</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/kylin/">#kylin</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-4 m-auto index-img">
<a href="/2023/03/21/Python_PaddleOCR%E8%AF%86%E5%88%AB%E7%BD%91%E7%AB%99%E7%99%BB%E5%BD%95%E9%AA%8C%E8%AF%81%E7%A0%81/" target="_self">
<img src="/images/docImages/Python_PaddleOCR%E8%AF%86%E5%88%AB%E7%BD%91%E7%AB%99%E7%99%BB%E5%BD%95%E9%AA%8C%E8%AF%81%E7%A0%81/Python_PaddleOCR%E8%AF%86%E5%88%AB%E7%BD%91%E7%AB%99%E7%99%BB%E5%BD%95%E9%AA%8C%E8%AF%81%E7%A0%81_head.png" srcset="/img/loading.gif" lazyload alt="Python_PaddleOCR识别网站登录验证码">
</a>
</div>
<article class="col-12 col-md-8 mx-auto index-info">
<h2 class="index-header">
<a href="/2023/03/21/Python_PaddleOCR%E8%AF%86%E5%88%AB%E7%BD%91%E7%AB%99%E7%99%BB%E5%BD%95%E9%AA%8C%E8%AF%81%E7%A0%81/" target="_self">
Python_PaddleOCR识别网站登录验证码
</a>
</h2>
<a class="index-excerpt " href="/2023/03/21/Python_PaddleOCR%E8%AF%86%E5%88%AB%E7%BD%91%E7%AB%99%E7%99%BB%E5%BD%95%E9%AA%8C%E8%AF%81%E7%A0%81/" target="_self">
<div>
简述有个需求用python去登录某网站,登录时需要识别图片验证码。之前尝试过用不同的像素去除图片中的干扰像素,建立每个字母的库 去比对,发现效果很差。经同事提醒 用PaddleOCR完成的验证码识别,成功率60%左右,使用起来很简单,特此记录一下。 网站验证码示例如下: PaddleOCRPaddleOCR的github仓库地址PaddleOCR的官方快速开始文档官方的快速开始文档已经将使用方法介
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2023-03-21 00:00" pubdate>
2023-03-21
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/Python/" class="category-chain-item">Python</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/OCR/">#OCR</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-4 m-auto index-img">
<a href="/2023/03/17/Confluence_%E5%B8%B8%E7%94%A8%E6%8F%92%E4%BB%B6/" target="_self">
<img src="/images/docImages/Confluence_%E5%B8%B8%E7%94%A8%E6%8F%92%E4%BB%B6/confluence_%E4%B8%BB%E5%9B%BE.png" srcset="/img/loading.gif" lazyload alt="Confluence_常用插件">
</a>
</div>
<article class="col-12 col-md-8 mx-auto index-info">
<h2 class="index-header">
<a href="/2023/03/17/Confluence_%E5%B8%B8%E7%94%A8%E6%8F%92%E4%BB%B6/" target="_self">
Confluence_常用插件
</a>
</h2>
<a class="index-excerpt " href="/2023/03/17/Confluence_%E5%B8%B8%E7%94%A8%E6%8F%92%E4%BB%B6/" target="_self">
<div>
简述工作需求对知识库类软件进行的比对,发现市场上知识库分为以下几类 百度文库类型,用户将写好的word文档或者txt上传到网站,进行统一查看。 集成数据库类型,如pingcode tapd等 本身产品是做团队协作和流程管理,知识库作为其中一部分的功能。最终还是选择了confluence作为公司知识库,但为了满足需求,又通过插件+自定义样式方式解决。confluence目前主推公有云版,之前的se
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2023-03-17 00:00" pubdate>
2023-03-17
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/Confluence/" class="category-chain-item">Confluence</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/Confluence/">#Confluence</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-4 m-auto index-img">
<a href="/2023/03/15/PLG_%E6%97%A5%E5%BF%97%E7%B3%BB%E7%BB%9F/" target="_self">
<img src="/images/docImages/PLG_%E6%97%A5%E5%BF%97%E7%B3%BB%E7%BB%9F/PLG_%E6%97%A5%E5%BF%97%E7%B3%BB%E7%BB%9F%E6%9E%B6%E6%9E%84%E5%9B%BE.png" srcset="/img/loading.gif" lazyload alt="PLG_日志系统">
</a>
</div>
<article class="col-12 col-md-8 mx-auto index-info">
<h2 class="index-header">
<a href="/2023/03/15/PLG_%E6%97%A5%E5%BF%97%E7%B3%BB%E7%BB%9F/" target="_self">
PLG_日志系统
</a>
</h2>
<a class="index-excerpt " href="/2023/03/15/PLG_%E6%97%A5%E5%BF%97%E7%B3%BB%E7%BB%9F/" target="_self">
<div>
简述需要一套轻量级日志系统,来做业务的日志管理工作。因ELK过于重量,且很多功能并不需要,所以在此选用PLG来实现。 PLG:Promtail + Loki + GrafanaPromtail:部署在应用服务器收集应用日志Loki: 存储日志,提供查询功能,2.x版本提供日志告警功能Grafana: 显示应用日志 而且PLG可以和Prometheus复用组件,如grafana alert
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2023-03-15 00:00" pubdate>
2023-03-15
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/PLG/" class="category-chain-item">PLG</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/PLG/">#PLG</a>
<a href="/tags/%E6%97%A5%E5%BF%97/">#日志</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<article class="col-12 col-md-12 mx-auto index-info">
<h2 class="index-header">
<a href="/2021/12/09/GitLab_%E5%8D%87%E7%BA%A7%E5%AF%BC%E8%87%B4%E9%83%A8%E5%88%86%E9%A1%B9%E7%9B%AE%E6%97%A0%E6%B3%95%E8%BD%AC%E6%8D%A2%E4%B8%BA%E5%93%88%E5%B8%8C%E5%AD%98%E5%82%A8/" target="_self">
GitLab_升级导致部分项目无法转换为哈希存储
</a>
</h2>
<a class="index-excerpt index-excerpt__noimg" href="/2021/12/09/GitLab_%E5%8D%87%E7%BA%A7%E5%AF%BC%E8%87%B4%E9%83%A8%E5%88%86%E9%A1%B9%E7%9B%AE%E6%97%A0%E6%B3%95%E8%BD%AC%E6%8D%A2%E4%B8%BA%E5%93%88%E5%B8%8C%E5%AD%98%E5%82%A8/" target="_self">
<div>
经过123456789101112131415测试人员发现项目无法写入使用账号尝试后 排除账号权限问题,发现多个项目都有该问题联想到最近对Git Lab进行过升级操作,升级过程中有对传统存储项目转为哈希存储操作通过命令检查确实有30个项目还是处于传统存储模式,尝试再次转换 发现还是有20个项目无法转换通过命令尝试将20个项目模式更改为可写,发现项目可以写入 更改操作,尝试转换模式 发现还是无法转换
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2021-12-09 00:00" pubdate>
2021-12-09
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/GitLab/" class="category-chain-item">GitLab</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/GitLab/">#GitLab</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<article class="col-12 col-md-12 mx-auto index-info">
<h2 class="index-header">
<a href="/2021/12/02/GitLab_%E5%8D%87%E7%BA%A7%E7%89%88%E6%9C%AC/" target="_self">
GitLab升级版本
</a>
</h2>
<a class="index-excerpt index-excerpt__noimg" href="/2021/12/02/GitLab_%E5%8D%87%E7%BA%A7%E7%89%88%E6%9C%AC/" target="_self">
<div>
简述为了GitLab的漏洞:Gitlab远程代码执行漏洞(CVE-2021-22205) https://cloud.tencent.com/announce/detail/1630 需要对公司Gitlab进行版本升级:准备升级到最新的安全版本14.2.7 漏洞风险攻击者利用该漏洞可导致远程代码执行 影响版本GitLab(CE/EE)<= 11.9,< 13.
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2021-12-02 00:00" pubdate>
2021-12-02
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/GitLab/" class="category-chain-item">GitLab</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/GitLab/">#GitLab</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<article class="col-12 col-md-12 mx-auto index-info">
<h2 class="index-header">
<a href="/2021/11/29/Prometheus_VMware_exporter/" target="_self">
Prometheus_VMware_exporter
</a>
</h2>
<a class="index-excerpt index-excerpt__noimg" href="/2021/11/29/Prometheus_VMware_exporter/" target="_self">
<div>
VMware监控的实现安装VMware_exporter组件GitHub地址:https://github.com/pryorda/vmware_exporter 详细的参数说明请查看Github项目仓库中的说明文件 本次使用容器部署,所以只要准备好配置文件添加到容器内启动即可,配置文件如下: 1234567891011121314151617181920212223242526272829303
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2021-11-29 00:00" pubdate>
2021-11-29
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/Prometheus/" class="category-chain-item">Prometheus</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/Prometheus/">#Prometheus</a>
<a href="/tags/VMware-exporter/">#VMware_exporter</a>
<a href="/tags/VMware/">#VMware</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<article class="col-12 col-md-12 mx-auto index-info">
<h2 class="index-header">
<a href="/2021/11/17/Nginx_location&proxy_pass%E8%BD%AC%E5%8F%91%E8%A7%84%E5%88%99/" target="_self">
Nginx_location&proxy_pass转发规则
</a>
</h2>
<a class="index-excerpt index-excerpt__noimg" href="/2021/11/17/Nginx_location&proxy_pass%E8%BD%AC%E5%8F%91%E8%A7%84%E5%88%99/" target="_self">
<div>
简述最近经常配置nginx,对于location和proxy_pass加不加杠经常忘记,从别的博文上看到整理的规则,特此记录下,但那个博文忘记链接了,不能贴上原文链接,非常抱歉。 location proxy_pass location 优先级
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2021-11-17 00:00" pubdate>
2021-11-17
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/Nginx/" class="category-chain-item">Nginx</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/location/">#location</a>
<a href="/tags/proxy-pass/">#proxy_pass</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<article class="col-12 col-md-12 mx-auto index-info">
<h2 class="index-header">
<a href="/2021/11/08/OpenResty_%E8%87%AA%E5%8A%A8%E7%BD%91%E5%85%B3%E5%8A%A0%E7%AD%BE/" target="_self">
OpenResty_自动网关加签
</a>
</h2>
<a class="index-excerpt index-excerpt__noimg" href="/2021/11/08/OpenResty_%E8%87%AA%E5%8A%A8%E7%BD%91%E5%85%B3%E5%8A%A0%E7%AD%BE/" target="_self">
<div>
背景原请求场景是:请求—NG—网关—后端服务现在平台方想让请求统一通过自己的里约网关在转到我们的网关上,请求场景变成了:请求—NG—里约网关—网关—后端服务里约网关需要验证,验证方式就是将随机串+密钥+时间戳通过sha加密出字符串,再将这几个key添加到请求头中,因代码是统一的 多平台的,因此想在ng上实现自动加签。尝试过ng+fastcgi实现 没走通,最后通过OpenResty实现此功能。 安
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2021-11-08 00:00" pubdate>
2021-11-08
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/Nginx/" class="category-chain-item">Nginx</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/Nginx/">#Nginx</a>
<a href="/tags/lua/">#lua</a>
<a href="/tags/OpenResty/">#OpenResty</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<article class="col-12 col-md-12 mx-auto index-info">
<h2 class="index-header">
<a href="/2021/10/12/Chrome_private-network-access-update/" target="_self">
Chrome_private-network-access-update
</a>
</h2>
<a class="index-excerpt index-excerpt__noimg" href="/2021/10/12/Chrome_private-network-access-update/" target="_self">
<div>
问题研发人员在客户现场进行环境调试的时候,前端资源调用电脑的U盾时,浏览器console输出跨域错误,报错如下: 1Access to XMLHttpRequest at 'http://127.0.0.1:xxxx' from origin 'http://公网IP' hsa been blocked by CORS policy:The request
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2021-10-12 00:00" pubdate>
2021-10-12
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/Chrome/" class="category-chain-item">Chrome</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/HTTP/">#HTTP</a>
<a href="/tags/Chrome/">#Chrome</a>
<a href="/tags/%E8%B7%A8%E5%9F%9F/">#跨域</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<article class="col-12 col-md-12 mx-auto index-info">
<h2 class="index-header">
<a href="/2021/09/18/Prometheus_%E9%92%89%E9%92%89%E7%BE%A4@%E6%9F%90%E4%BA%BA_20210918/" target="_self">
Prometheus_钉钉群@某人_20210918
</a>
</h2>
<a class="index-excerpt index-excerpt__noimg" href="/2021/09/18/Prometheus_%E9%92%89%E9%92%89%E7%BE%A4@%E6%9F%90%E4%BA%BA_20210918/" target="_self">
<div>
简述之前写过一篇钉钉群@某人操作,但是实现过程过于复杂,还需要引入额外的插件(prometheus-webhook-dingtalk),现在PrometheusAlert插件已经支持@功能。而且之前是通过不同的监控任务实现的业务分组 感觉有些僵硬,现在通过为每个应用打标签的功能来实现不同的告警对象,两者结合使用。 配置项的标签123456789- targets: - "10.0.1.
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2021-09-18 00:00" pubdate>
2021-09-18
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>
<span class="category-chains">
<span class="category-chain">
<a href="/categories/Prometheus/" class="category-chain-item">Prometheus</a>
</span>
</span>
</div>
<div class="post-meta">
<i class="iconfont icon-tags"></i>
<a href="/tags/Prometheus/">#Prometheus</a>
<a href="/tags/dingtalk/">#dingtalk</a>
</div>
</div>
</article>
</div>
<div class="row mx-auto index-card">
<div class="col-12 col-md-4 m-auto index-img">
<a href="/2021/08/20/Prometheus_%E7%9B%91%E6%8E%A7Redis/" target="_self">
<img src="/images/docImages/Promtheus_%E7%9B%91%E6%8E%A7redis/grafana%E6%95%88%E6%9E%9C%E5%9B%BE.png" srcset="/img/loading.gif" lazyload alt="Prometheus_监控Redis">
</a>
</div>
<article class="col-12 col-md-8 mx-auto index-info">
<h2 class="index-header">
<a href="/2021/08/20/Prometheus_%E7%9B%91%E6%8E%A7Redis/" target="_self">
Prometheus_监控Redis
</a>
</h2>
<a class="index-excerpt " href="/2021/08/20/Prometheus_%E7%9B%91%E6%8E%A7Redis/" target="_self">
<div>
redis_exporter redis_exporter监控redis的组件,可与redis不在同一台机器,能与redis通信即可 部署方式 通过relabel_configs来替换标签 实现一个redis_exporter实列 收集不同的redis信息 也可通过一个redis一个redis_exporter实列来实现,如果是集群模式的redis 配置一个节点的信息即可,exporter会自动
</div>
</a>
<div class="index-btm post-metas">
<div class="post-meta mr-3">
<i class="iconfont icon-date"></i>
<time datetime="2021-08-20 00:00" pubdate>
2021-08-20
</time>
</div>
<div class="post-meta mr-3 d-flex align-items-center">
<i class="iconfont icon-category"></i>