设为首页 收藏本站
查看: 2177|回复: 0

[经验分享] Centos6.5搭建smokeping服务

[复制链接]
累计签到:1 天
连续签到:1 天
发表于 2016-9-29 09:48:02 | 显示全部楼层 |阅读模式
1.安装所需软件包。

1
yum install -y perl perl-Net-Telnetperl-Net-DNS perl-LDAP perl-libwww-perl perl-IO-Socket-SSL perl-Socket6perl-Time-HiRes perl-ExtUtils-MakeMaker rrdtool rrdtool-perl curl httpdhttpd-devel gcc make wget libxml2-devel libpng-devel glib pango pango-develfreetype freetype-devel fontconfig cairo cairo-devel libart_lgpllibart_lgpl-devel popt popt-devel libidn libidn-devel



2.创建一个放置软件包的常用目录。
1
mkdir /smokeping/tools –p



3.下载fping软件包,并且解压,编译安装。
1
2
3
4
5
6
wget http://fping.org/dist/fping-3.10.tar.gz
tar -zxvf fping-3.10.tar.gz
cd fping-3.10/
./configure
make && make install
cd ..



4.下载echoping并且解压,编译安装。
1
2
3
4
5
wget http://fossies.org/linux/misc/old/echoping-6.0.2.tar.gz
tar -zxvf echoping-6.0.2.tar.gz
cd echoping-6.0.2/
./configure
make && make install



5.下载smokeping并且解压,编译安装。
1
2
3
4
5
6
wget http://oss.oetiker.ch/smokeping/pub/smokeping-2.6.9.tar.gz
tar -zxvf smokeping-2.6.9.tar.gz
cd smokeping-2.6.9/
./setup/build-perl-modules.sh/usr/local/smokeping/thirdparty
./configure --prefix=/usr/local/smokeping
gmake install



6.创建三个文件目录和一个日志文件,并且设置属主和属组均为apache。
1
2
3
4
5
6
7
8
cd /usr/local/smokeping/
mkdir {cache,data,var}
touch /var/log/smokeping.log
chown apache.apache /var/log/smokeping.log
chmod 600/usr/local/smokeping/etc/smokeping_secrets.dist
chown -R apache.apache data/
chown -R apache.apache var/
chown -R apache.apache cache/



7.修改相应的配置文件。
1
2
3
4
cd /usr/local/smokeping/htdocs/
mv smokeping.fcgi.dist smokeping.fcgi
cd /usr/local/smokeping/etc/
mv config.dist config



8.配置apache配置文件和smokeping的配置文件。
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
在/etc/httpd/conf/httpd.con末尾添加以下加行:
Alias /cache "/usr/local/smokeping/cache/"  
Alias /cropper "/usr/local/smokeping/htdocs/cropper/"  
Alias /smokeping "/usr/local/smokeping/htdocs/smokeping.fcgi"  
<Directory "/usr/local/smokeping">  
AllowOverride None  
Options All  
AddHandler cgi-script .fcgi .cgi  
Order allow,deny  
Allow from all  
DirectoryIndex smokeping.fcgi  
</Directory>  
smokeping配置文件如下所示:

cat /usr/local/smokeping/etc/config
*** General ***

owner    = Peter Random
contact  = some@address.nowhere
mailhost = my.mail.host
sendmail = /usr/sbin/sendmail
# NOTE: do not put the Image Cache below cgi-bin
# since all files under cgi-bin will be executed ... this is not
# good for images.
imgcache = /usr/local/smokeping/cache
imgurl   = cache
datadir  = /usr/local/smokeping/data
piddir  = /usr/local/smokeping/var
cgiurl   = http://10.104.96.155/smokeping.cgi
smokemail = /usr/local/smokeping/etc/smokemail.dist
tmail = /usr/local/smokeping/etc/tmail.dist
# specify this to get syslog logging
syslogfacility = local0
# each probe is now run in its own process
# disable this to revert to the old behaviour
# concurrentprobes = no

*** Alerts ***
to = alertee@address.somewhere
from = smokealert@company.xy

+someloss
type = loss
# in percent
pattern = >0%,*12*,>0%,*12*,>0%
comment = loss 3 times  in a row

*** Database ***

step     = 300
pings    = 20

# consfn mrhb steps total

AVERAGE  0.5   1  1008
AVERAGE  0.5  12  4320
    MIN  0.5  12  4320
    MAX  0.5  12  4320
AVERAGE  0.5 144   720
    MAX  0.5 144   720
    MIN  0.5 144   720

*** Presentation ***

template = /usr/local/smokeping/etc/basepage.html.dist
charset = utf-8
+ charts

menu = Charts
title = The most interesting destinations

++ stddev
sorter = StdDev(entries=>4)
title = Top Standard Deviation
menu = Std Deviation
format = Standard Deviation %f

++ max
sorter = Max(entries=>5)
title = Top Max Roundtrip Time
menu = by Max
format = Max Roundtrip Time %f seconds

++ loss
sorter = Loss(entries=>5)
title = Top Packet Loss
menu = Loss
format = Packets Lost %f

++ median
sorter = Median(entries=>5)
title = Top Median Roundtrip Time
menu = by Median
format = Median RTT %f seconds

+ overview

width = 600
height = 50
range = 10h

+ detail

width = 600
height = 200
unison_tolerance = 2

"Last 3 Hours"    3h
"Last 30 Hours"   30h
"Last 10 Days"    10d
"Last 400 Days"   400d

#+ hierarchies
#++ owner
#title = Host Owner
#++ location
#title = Location

*** Probes ***

+ FPing

binary = /usr/local/sbin/fping

*** Slaves ***
secrets=/usr/local/smokeping/etc/smokeping_secrets.dist
+boomer
display_name=boomer
color=0000ff

+slave2
display_name=another
color=00ff00

*** Targets ***

probe = FPing

menu = Top
title = Network Latency Grapher
remark = Welcome to the SmokePing website of xxx Company. \
         Here you will learn all about the latency of our network.

+ Test
menu= Targets
#parents = owner:/Test/James location:/

++ James

menu = James
title =James
alerts = someloss
slaves = boomer slave2
host = james.address

++ MultiHost

menu = Multihost
title = James and James as seen from Boomer
host = /Test/James /Test/James~boomer

++ Localhost

menu = Localhost
title = Localhost
alerts = someloss
#slaves = boomer slave2
host = 10.104.96.155

+ Other
menu = 网络及节点监控
title = 监控统计
++ dianxin
menu = 电信网络监控
title = 电信网络监控列表
host = /Other/dianxin/dianxin-bj /Other/dianxin/dianxin-sh /Other/dianxin/dianxin-gz /Other/dianxin/dianxin-sz /Other/dianxin/dianxin-tj /Other/dianxin/dianxin-sy /Other/dianxin/dianxin-xa /Other/dianxin/dianxin-jn /Other/dianxin/dianxin-cd /Other/dianxin/dianxin-hf /Other/dianxin/dianxin-wh /Other/dianxin/dianxin-zz /Other/dianxin/dianxin-cs /Other/dianxin/dianxin-nj /Other/dianxin/dianxin-hz /Other/dianxin/dianxin-xm /Other/dianxin/dianxin-nn /Other/dianxin/dianxin-ty /Other/dianxin/dianxin-cc /Other/dianxin/dianxin-lz /Other/dianxin/dianxin-nn /Other/dianxin/dianxin-xn /Other/dianxin/dianxin-hk /Other/dianxin/dianxin-fz /Other/dianxin/dianxin-gy /Other/dianxin/dianxin-km /Other/dianxin/dianxin-xj /Other/dianxin/dianxin-xz /Other/dianxin/dianxin-heb /Other/dianxin/dianxin-hhht

+++ dianxin-bj
menu = 北京电信
title = 北京电信
alerts = someloss
host = 106.37.232.114

+++ dianxin-sh
menu = 上海电信
title = 上海电信
alerts = someloss
host = 202.96.209.133

+++ dianxin-gz
menu = 广州电信
title = 广州电信
alerts = someloss
host = 219.137.229.134

+++ dianxin-sz
menu = 深圳电信
title = 深圳电信
alerts = someloss
host = 202.96.154.15

+++ dianxin-tj
menu = 天津电信
title = 天津电信
alerts = someloss
host = 219.150.32.132

+++ dianxin-sy
menu = 沈阳电信
title = 沈阳电信
alerts = someloss
host = 219.148.204.66

+++ dianxin-xa
menu = 西安电信
title = 西安电信
alerts = someloss
host = 117.35.68.4

+++ dianxin-jn
menu = 济南电信
title = 济南电信
alerts = someloss
host = 219.146.0.253

+++ dianxin-cd
menu = 成都电信
title = 成都电信
alerts = someloss
host = 61.139.2.69

+++ dianxin-hf
menu = 合肥电信
title = 合肥电信
alerts = someloss
host = 220.178.75.134

+++ dianxin-wh
menu = 武汉电信
title = 武汉电信
alerts = someloss
host = 221.232.129.35

+++ dianxin-zz
menu = 郑州电信
title = 郑州电信
alerts = someloss
host = 123.52.19.15

+++ dianxin-cs
menu = 长沙电信
title = 长沙电信
alerts = someloss
host = 202.103.96.253

+++ dianxin-nj
menu = 南京电信
title = 南京电信
alerts = someloss
host = 218.2.135.1

+++ dianxin-hz
menu = 杭州电信
title = 杭州电信
alerts = someloss
host = 202.96.96.68

+++ dianxin-xm
menu = 厦门电信
title = 厦门电信
alerts = someloss
host = 202.101.103.54

+++ dianxin-nn
menu = 南宁电信
title = 南宁电信
alerts = someloss
host = 202.103.225.254

+++ dianxin-ty
menu = 太原电信
title = 太原电信
alerts = someloss
host = 59.49.77.1

+++ dianxin-cc
menu = 长春电信
title = 长春电信
alerts = someloss
host = 219.149.194.55

+++ dianxin-lz
menu = 兰州电信
title = 兰州电信
alerts = someloss
host = 202.100.64.68

+++ dianxin-nc
menu = 南昌电信
title = 南昌电信
alerts = someloss
host = 202.101.224.68

+++ dianxin-xn
menu = 西宁电信
title = 西宁电信
alerts = someloss
host = 202.100.138.68

+++ dianxin-hk
menu = 海口电信
title = 海口电信
alerts = someloss
host = 202.100.192.1

+++ dianxin-fz
menu = 福州电信
title = 福州电信
alerts = someloss
host = 218.85.157.99

+++ dianxin-gy
menu = 贵阳电信
title = 贵阳电信
alerts = someloss
host = 202.98.198.167

+++ dianxin-km
menu = 昆明电信
title = 昆明电信
alerts = someloss
host = 222.172.200.68

+++ dianxin-xj
menu = 新疆电信
title = 新疆电信
alerts = someloss
host = 61.128.114.133

+++ dianxin-xz
menu = 西藏电信
title = 西藏电信
alerts = someloss
host = 202.98.224.2

+++ dianxin-heb
menu = 哈尔滨电信
title = 哈尔滨电信
alerts = someloss
host = 219.150.32.132

+++ dianxin-hhht
menu = 呼和浩特电信
title = 呼和浩特电信
alerts = someloss
host = 121.56.12.12

++ liantong
menu = 联通网络监控
title = 联通网络监控列表
host = /Other/liantong/liantong-bj /Other/liantong/liantong-sh /Other/liantong/liantong-gz /Other/liantong/liantong-sz /Other/liantong/liantong-tj /Other/liantong/liantong-sy /Other/liantong/liantong-xa /Other/liantong/liantong-jn /Other/liantong/liantong-qd /Other/liantong/liantong-cd /Other/liantong/liantong-ah /Other/liantong/liantong-wh /Other/liantong/liantong-zz /Other/liantong/liantong-cs /Other/liantong/liantong-nj /Other/liantong/liantong-hz /Other/liantong/liantong-xm /Other/liantong/liantong-nn /Other/liantong/liantong-nc /Other/liantong/liantong-ty /Other/liantong/liantong-xn /Other/liantong/liantong-gz /Other/liantong/liantong-fz /Other/liantong/liantong-lz /Other/liantong/liantong-km /Other/liantong/liantong-xj /Other/liantong/liantong-xz /Other/liantong/liantong-heb /Other/liantong/liantong-hhht

+++ liantong-bj
menu = 北京联通
title = 北京联通
alerts = someloss
host = 202.106.196.253

+++ liantong-sh
menu = 上海联通
title = 上海联通
alerts = someloss
host = 210.22.70.253

+++ liantong-gz
menu = 广州联通
title = 广州联通
alerts = someloss
host = 221.4.66.66

+++ liantong-sz
menu = 深圳联通
title = 深圳联通
alerts = someloss
host = 210.21.196.6

+++ liantong-tj
menu = 天津联通
title = 天津联通
alerts = someloss
host = 202.99.96.1

+++ liantong-sy
menu = 沈阳联通
title = 沈阳联通
alerts = someloss
host = 202.96.75.1

+++ liantong-xa
menu = 西安联通
title = 西安联通
alerts =  someloss
host = 221.11.1.67

+++ liantong-jn
menu = 济南联通
title = 济南联通
alerts =  someloss
host = 202.102.152.3

+++ liantong-qd
menu = 青岛联通
title = 青岛联通
alerts =  someloss
host = 202.102.128.68

+++ liantong-cd
menu = 成都联通
title = 成都联通
alerts =  someloss
host = 119.6.6.6

+++ liantong-ah
menu = 安徽联通
title = 安徽联通
alerts =  someloss
host = 218.104.78.2

+++ liantong-wh
menu = 武汉联通
title = 武汉联通
alerts =  someloss
host = 218.104.111.122

+++ liantong-zz
menu = 郑州联通
title = 郑州联通
alerts =  someloss
host = 218.29.122.70

+++ liantong-cs
menu = 长沙联通
title = 长沙联通
alerts =  someloss
host = 58.20.127.238

+++ liantong-nj
menu = 南京联通
title = 南京联通
alerts =  someloss
host = 221.6.4.66

+++ liantong-hz
menu = 杭州联通
title = 杭州联通
alerts =  someloss
host = 221.12.31.58

+++ liantong-xm
menu = 厦门联通
title = 厦门联通
alerts =  someloss
host = 218.104.128.106

+++ liantong-nn
menu = 南宁联通  
title = 南宁联通
alerts =  someloss
host = 221.7.136.68

+++ liantong-nc
menu = 南昌联通
title = 南昌联通
alerts =  someloss
host = 220.248.192.10

+++ liantong-ty
menu = 太原联通
title = 太原联通
alerts =  someloss
host = 202.99.192.66

+++ liantong-xn
menu = 西宁联通
title = 西宁联通
alerts =  someloss
host = 221.207.12.130

+++ liantong-gy
menu = 贵阳联通
title = 贵阳联通
alerts =  someloss
host = 221.13.30.242

+++ liantong-fz
menu = 福州联通
title = 福州联通
alerts =  someloss
host = 58.22.96.6

+++ liantong-lz
menu = 兰州联通
title = 兰州联通
alerts =  someloss
host = 221.7.34.1

+++ liantong-km
menu = 昆明联通
title = 昆明联通
alerts =  someloss
host = 221.3.131.11

+++ liantong-xj
menu = 新疆联通
title = 新疆联通
alerts =  someloss
host = 60.13.184.49

+++ liantong-xz
menu = 西藏联通
title = 西藏联通
alerts =  someloss
host = 221.13.65.38

+++ liantong-heb
menu = 哈尔滨联通
title = 哈尔滨联通
alerts =  someloss
host = 202.97.224.1


+++ liantong-hhht
menu = 呼和浩特联通
title = 呼和浩特联通
alerts =  someloss
host = 202.99.224.67

++ yidong
menu = 移动网络监控
title = 移动网络监控列表
host = /Other/yidong/yidong-bj /Other/yidong/yidong-sh /Other/yidong/yidong-gz /Other/yidong/yidong-sz /Other/yidong/yidong-tj /Other/yidong/yidong-sy /Other/yidong/yidong-xa /Other/yidong/yidong-jn /Other/yidong/yidong-qd /Other/yidong/yidong-cd /Other/yidong/yidong-hf /Other/yidong/yidong-wh /Other/yidong/yidong-zz /Other/yidong/yidong-cs /Other/yidong/yidong-nj /Other/yidong/yidong-nc /Other/yidong/yidong-gy /Other/yidong/yidong-fz /Other/yidong/yidong-lz  /Other/yidong/yidong-km /Other/yidong/yidong-hz /Other/yidong/yidong-nn /Other/yidong/yidong-wlmq /Other/yidong/yidong-ls

+++ yidong-bj
menu = 北京移动
title = 北京移动
alerts = someloss
host = 211.136.17.107

+++ yidong-sh
menu = 上海移动
title = 上海移动
alerts = someloss
host = 211.136.150.25

+++ yidong-gz
menu = 广州移动
title = 广州移动
alerts = someloss
host = 221.179.38.7

+++ yidong-sz
menu = 深圳移动
title = 深圳移动
alerts = someloss
host = 120.196.165.7

+++ yidong-tj
menu = 天津移动
title = 天津移动
alerts = someloss
host = 211.137.160.5

+++ yidong-sy
menu = 沈阳移动
title = 沈阳移动
alerts = someloss
host = 211.137.32.178

+++ yidong-xa
menu = 西安移动
title = 西安移动
alerts = someloss
host = 218.200.48.238

+++ yidong-jn
menu = 济南移动
title = 济南移动
alerts = someloss
host = 211.137.191.26

+++ yidong-qd
menu = 青岛移动
title = 青岛移动
alerts = someloss
host = 211.137.186.224

+++ yidong-cd
menu = 成都移动
title = 成都移动
alerts = someloss
host = 211.137.96.205

+++ yidong-hf
menu = 合肥移动
title = 合肥移动
alerts = someloss
host = 211.138.180.2

+++ yidong-wh
menu = 武汉移动
title = 武汉移动
alerts = someloss
host = 211.137.59.2

+++ yidong-zz
menu = 郑州移动
title = 郑州移动
alerts = someloss
host = 211.138.30.66

+++ yidong-cs
menu = 长沙移动
title = 长沙移动
alerts = someloss
host = 111.8.55.1

+++ yidong-nj
menu = 南京移动
title = 南京移动
alerts = someloss
host = 221.130.48.1

+++ yidong-hz
menu = 杭州移动
title = 杭州移动
alerts = someloss
host = 120.199.7.10

+++ yidong-nn
menu = 南宁移动
title = 南宁移动
alerts = someloss
host = 211.138.245.180

+++ yidong-nc
menu = 南昌移动
title = 南昌移动
alerts = someloss
host = 211.141.90.68

+++ yidong-gy
menu = 贵阳移动
title = 贵阳移动
alerts = someloss
host = 211.139.5.1

+++ yidong-fz
menu = 福州移动
title = 福州移动
alerts = someloss
host = 211.138.151.1

+++ yidong-lz
menu = 兰州移动
title = 兰州移动
alerts = someloss
host = 218.203.160.1


+++yidong-km
menu = 昆明移动
title = 昆明移动
alerts = someloss
host = 211.139.29.1

+++ yidong-wlmq
menu = 乌鲁木齐移动
title = 乌鲁木齐移动
alerts = someloss
host = 218.202.152.131

+++ yidong-ls
menu = 拉萨移动
title = 拉萨移动
alerts = someloss
host = 211.139.73.35



9.分别启动smokeping和httpd。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/usr/local/smokeping/bin/smokeping
ps -ef | grep smoke
hadoop    21848  19908 0 11:20 pts/1    00:00:00 grepsmoke
root    177131      1  0 Sep27 ?        00:00:38/usr/local/smokeping/bin/smokeping [FPing]
/etc/init.d/httpd start
-ef | grep httpd
hadoop    22245  19908 0 11:21 pts/1    00:00:00 grephttpd
root     177152      1 0 Sep27 ?        00:00:00/usr/sbin/httpd
apache   177154 177152  0 Sep27 ?        00:00:00 /usr/sbin/httpd
apache   177155 177152  0 Sep27 ?        00:00:00 /usr/sbin/httpd
apache   177156 177152  0 Sep27 ?        00:00:00 /usr/sbin/httpd
apache   177157 177152  0 Sep27 ?        00:00:00 /usr/sbin/httpd
apache   177158 177152  0 Sep27 ?        00:00:00 /usr/sbin/httpd
apache   177159 177152  0 Sep27 ?        00:00:00 /usr/sbin/httpd
apache   177160 177152  0 Sep27 ?        00:00:00 /usr/sbin/httpd
apache   177161 177152  0 Sep27 ?        00:00:00 /usr/sbin/httpd
apache   177373 177152  0 Sep27 ?        00:00:00 /usr/sbin/httpd
apache   177378 177152  0 Sep27 ?        00:00:00 /usr/sbin/httpd
apache  179726 177152  0 Sep27 ?        00:00:00 /usr/sbin/httpd



10.让smokeping界面支持中文
1
2
3
4
5
6
7
安装字体
yum -y install wqy-zenhei-fonts.noarch
编辑smokeping的配置文件vim /usr/local/smokeping/etc/config
第50行添加
charset = utf-8 #添加此行
编辑Graphs.pm这个文件  vim /usr/local/smokeping/lib/Smokeping/Graphs.pm#第147行下边插入下边一行
'--fontTITLE:20:"WenQuanYi Zen Hei Mono"',



11.访问地址,看下是否可以出现smokeping页面。

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-278998-1-1.html 上篇帖子: Smokeping安装 下篇帖子: smokeping 2.6.11 报错分享
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表