-
Notifications
You must be signed in to change notification settings - Fork 9
/
nagios
1707 lines (1417 loc) · 52.5 KB
/
nagios
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
Şu anki nagios kurulumumuz aşağıdaki temel ürünlerden oluşmaktadır:
* [http://www.nagios.org/ Nagios]
* [http://www.pnp4nagios.org/ PNP4Nagios]
* [http://www.nagvis.org/ NagVis]
* [http://www.nagios.org/download/addons/ NSCA]
* [http://naplax.sourceforge.net/REL.html REL]
* [http://www.nagioswiki.org/wiki/Addon:Birdseye Birdseye]
Kullandığımız bir çok diğer nagios plugini için karmaşık kurulum adımları gerekmemekte.
== Nagios3 ==
<pre>
sudo aptitude install nagios3
</pre>
[http://www.nagios.org/ Nagios]'un External Command Pipe'ını debian'da kullanabilmek için '''/usr/share/doc/nagios3-common/README.Debian''' dosyasında anlattıklarını yapıyoruz, bunları yapmazsanız arayüzden gönderdiğiniz istekler(uyarıları kapatmak, yorum eklemek gibi) çalışmıyor.
<pre>
sudo /etc/init.d/nagios3 stop
sudo dpkg-statoverride --update --add nagios www-data 2710 /var/lib/nagios3/rw
sudo dpkg-statoverride --update --add nagios nagios 751 /var/lib/nagios3
sudo /etc/init.d/nagios3 start
</pre>
=== Apache yapılandırmaları ===
==== /etc/apache2/sites-enabled/000-default ====
<pre>
<VirtualHost web-listen:80>
ServerAdmin webmaster@localhost
ServerName nagios.bdgn.net
DocumentRoot /usr/share/nagios3/htdocs
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order deny,allow
deny from all
allow from 123.123.123.123/255.255.255.255
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
RewriteEngine On
RewriteRule ^/w/([^-]+)-?(.*) /nagios3/cgi-bin/statuswml.cgi?host=$1&service=$2 [R]
</VirtualHost>
<VirtualHost web-listen:443>
ServerAdmin webmaster@localhost
ServerName nagios.bdgn.net
DocumentRoot /usr/share/nagios3/htdocs
SSLEngine On
SSLCertificateFile ssl.pem/nagios.bdgn.net.pem
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
RedirectMatch ^/$ /apache2-default/
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order deny,allow
deny from all
allow from 123.123.123.123/255.255.255.255
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature Off
RewriteEngine On
RewriteRule ^/w/([^-]+)-?(.*) /nagios3/cgi-bin/statuswml.cgi?host=$1&service=$2 [R]
Alias /mrtg /var/www/mrtg
</VirtualHost>
</pre>
==== /etc/nagios3/apache2.conf ====
<pre>
# apache configuration for nagios 3.x
# note to users of nagios 1.x and 2.x:
# throughout this file are commented out sections which preserve
# backwards compatibility with bookmarks/config for older nagios versios.
# simply look for lines following "nagios 1.x:" and "nagios 2.x" comments.
ScriptAlias /cgi-bin/nagios3 /usr/lib/cgi-bin/nagios3
ScriptAlias /nagios3/cgi-bin /usr/lib/cgi-bin/nagios3
# nagios 1.x:
#ScriptAlias /cgi-bin/nagios /usr/lib/cgi-bin/nagios3
#ScriptAlias /nagios/cgi-bin /usr/lib/cgi-bin/nagios3
# nagios 2.x:
#ScriptAlias /cgi-bin/nagios2 /usr/lib/cgi-bin/nagios3
#ScriptAlias /nagios2/cgi-bin /usr/lib/cgi-bin/nagios3
# Where the stylesheets (config files) reside
Alias /nagios3/stylesheets /etc/nagios3/stylesheets
# nagios 1.x:
#Alias /nagios/stylesheets /etc/nagios3/stylesheets
# nagios 2.x:
#Alias /nagios2/stylesheets /etc/nagios3/stylesheets
# Where the HTML pages live
Alias /nagios3 /usr/share/nagios3/htdocs
# nagios 2.x:
#Alias /nagios2 /usr/share/nagios3/htdocs
# nagios 1.x:
#Alias /nagios /usr/share/nagios3/htdocs
<DirectoryMatch (/usr/share/nagios3/htdocs|/usr/lib/cgi-bin/nagios3)>
Options FollowSymLinks
DirectoryIndex index.html
AllowOverride AuthConfig
Order Allow,Deny
Allow From All
AuthName "Bdgn nagios Ldap"
Include /etc/apache2/ldap-configs/bind-user.conf
Require ldap-group cn=nagios_all,ou=nagios,ou=webaccess,o=bdgn
</DirectoryMatch>
# Enable this ScriptAlias if you want to enable the grouplist patch.
# See http://apan.sourceforge.net/download.html for more info
# It allows you to see a clickable list of all hostgroups in the
# left pane of the Nagios web interface
# XXX This is not tested for nagios 2.x use at your own peril
#ScriptAlias /nagios3/side.html /usr/lib/cgi-bin/nagios3/grouplist.cgi
# nagios 1.x:
#ScriptAlias /nagios/side.html /usr/lib/cgi-bin/nagios3/grouplist.cgi
</pre>
==== /etc/apache2/ldap-configs/bind-user.conf ====
<pre>
AuthType Basic
AuthBasicProvider ldap
AuthLDAPBindDN uid=binduser,ou=bindusers,o=bdgn
AuthLDAPBindPassword xxxx
AuthLDAPURL "ldaps://master-directory.bdgn.net secondary-directory.bdgn.net/ou=users,o=bdgn?uid?one"
AuthLDAPGroupAttributeIsDN on
</pre>
==== ldap ====
Ldap ağacımıza DN: ou=nagios,ou=webaccess altına aşağıdaki kayıtları ekliyoruz, apache login için yetkilendirmeyi bu kayıtlardan alıyor.
<pre>
dn: ou=nagios,ou=webaccess,o=bdgn
objectClass: organizationalUnit
objectClass: top
ou: nagios
dn: cn=nagios_all,ou=nagios,ou=webaccess,o=bdgn
objectClass: groupOfNames
objectClass: labeledURIObject
objectClass: top
cn: nagios_all
labeledURI: ldaps:///ou=users,o=bdgn??one?(&(loginShell=/bin/bash)(object
Class=posixAccount)(|(employeeType=USY)(employeeType=MIY)))
</pre>
=== Nagios Yapılandırmaları ===
==== Öntanımlı nagios yapılandırma dosyaları ====
Nagios ile öntanımlı olarak gelen aşağıdaki dosyaları siliyoruz, bunlar yerine aşağıdaki gibi kendi yapılandırma dosyalarımı yerleştireceğiz.
* /etc/nagios3/conf.d/contacts_nagios2.cfg
* /etc/nagios3/conf.d/extinfo_nagios2.cfg
* /etc/nagios3/conf.d/generic-host_nagios2.cfg
* /etc/nagios3/conf.d/generic-service_nagios2.cfg
* /etc/nagios3/conf.d/host-gateway_nagios3.cfg
* /etc/nagios3/conf.d/hostgroups_nagios2.cfg
* /etc/nagios3/conf.d/localhost_nagios2.cfg
* /etc/nagios3/conf.d/timeperiods_nagios2.cfg
==== /etc/nagios3/cgi.cfg ====
Bu dosyada authorized ile başlayan satırlardaki değerleri aşağıdaki gibi "*" olacak şekilde değiştiriyoruz.
<pre>
authorized_for_system_information=*
authorized_for_configuration_information=*
authorized_for_system_commands=*
authorized_for_all_services=*
authorized_for_all_hosts=*
authorized_for_all_service_commands=*
authorized_for_all_host_commands=*
</pre>
==== /etc/nagios3/nagios.cfg ====
Aşağıdaki satırları ekliyoruz:
<pre>
cfg_file=/etc/nagios3/checkcommands.cfg
cfg_file=/etc/nagios3/misccommands.cfg
</pre>
Şu satırları da aşağidaki gibi düzenliyoruz
<pre>
check_external_commands=1
use_syslog=0
use_retained_scheduling_info=0
enable_flap_detection=0
debug_file=/var/log/nagios3/nagios.debug
</pre>
==== /etc/nagios3/checkcommands.cfg ====
<pre>
define command{
command_name check_sms_credit
command_line /usr/local/bin/check_sms_credit
}
define command {
command_name check_jabber
command_line /usr/local/bin/nagiosrun.py JabberTest testConnect testConnectSSL testSendMsgLocal
}
define command{
command_name negate
command_line /usr/lib/nagios/plugins/negate $ARG1$
}
define command{
command_name check_http_arg
command_line /usr/lib/nagios/plugins/check_http $ARG1$
}
define command{
command_name check_subscription
command_line /usr/lib/nagios/plugins/check_subscription $ARG1$
}
</pre>
==== /etc/nagios3/misccommands.cfg ====
<pre>
define command{
command_name service-notify-by-sms
command_line /usr/bin/printf "%b" "Svc: $SERVICEDESC$\nHost: $HOSTNAME$\nState: $SERVICESTATE$\nTime: $DATE$-$TIME$\n$SERVICEOUTPUT$" | /usr/local/bin/nagios_sms_notify --to $CONTACTPAGER$
}
define command{
command_name service-notify-by-wappush
command_line /usr/bin/printf "%b" "$SERVICEDESC$ $SERVICEOUTPUT$ $SHORTDATETIME$" | /usr/local/bin/nagios_wappush_notify --to $CONTACTPAGER$ --service $SERVICEDESC$ --host $HOSTNAME$
}
define command{
command_name service-notify-by-jabber-old
command_line /usr/local/bin/sendjabber "[email protected]" "Svc: $SERVICEDESC$ Host: $HOSTNAME$ State: $SERVICESTATE$ Time: $DATE$-$TIME$ $SERVICEOUTPUT$"
}
define command{
command_name service-notify-by-jabber
command_line /usr/bin/printf "%b" "$NOTIFICATIONTYPE$: \"$SERVICEDESC$\" is in \"$SERVICESTATE$\" state\n * $SERVICEOUTPUT$ ($SHORTDATETIME$)\n$SERVICEACKCOMMENT$\n$SERVICEACKAUTHOR$" | /usr/local/bin/sendjabber_new [email protected]
}
define command{
command_name passive-check-missing
command_line /usr/local/bin/passivecheckmissing
}
</pre>
==== Genel tanımlar ====
===== /etc/nagios3/conf.d/contacts.cfg =====
Aşağıdaki gibi bir çok kayıt olacak
<pre>
define contact {
contact_name bekir
alias Bekir Dogan
service_notification_period 24x7
host_notification_period 24x7
service_notification_options w,u,c,r
host_notification_options d,u,r
service_notification_commands notify-by-email,service-notify-by-sms,service-notify-by-jabber
host_notification_commands host-notify-by-email
email [email protected]
pager +905337119886
}
</pre>
===== /etc/nagios3/conf.d/contactgroups.cfg =====
Aşağıdaki gibi bir çok kayıt olacak
<pre>
define contactgroup{
contactgroup_name sanal_makina_sorumlulari
alias Sanal makina sorumlulari
members bekir
}
define contactgroup{
contactgroup_name makina_sorumlulari
alias Makina sorumlulari
members gzeynep
}
define contactgroup{
contactgroup_name musteri_sorumlulari
alias Musteri sorumlulari
members bekir,gzeynep
}
</pre>
===== /etc/nagios3/conf.d/faketamplates.cfg =====
<pre>
define host{
name sablon_fake_sunucu
alias sablon_fake_sunucu
address 127.0.0.1
check_period 24x7
contact_groups sanal_makina_sorumlulari
max_check_attempts 1
checks_enabled 0
notifications_enabled 0
event_handler_enabled 0
flap_detection_enabled 0
active_checks_enabled 0
passive_checks_enabled 0
process_perf_data 0
retain_status_information 0
retain_nonstatus_information 0
notification_interval 30
notification_period 24x7
notification_options n
register 0
}
</pre>
===== /etc/nagios3/conf.d/servertemplates.cfg =====
<pre>
define host {
name generic_host
action_url /pnp4nagios/graph?host=$HOSTNAME$&srv=_HOST_' class='tips' rel='/pnp4nagios/popup?host=$HOSTNAME$&srv=_HOST_
register 0
}
define host {
use generic_host
checks_enabled 1
passive_checks_enabled 1
name sablon_fiziksel_sunucu
notification_interval 30
notification_period 24x7
retain_nonstatus_information 1
notifications_enabled 1
retain_status_information 1
alias sablon_fiziksel_sunucu
event_handler_enabled 1
process_perf_data 1
max_check_attempts 5
flap_detection_enabled 0
notification_options d,u,r
register 0
check_command check-host-alive_4
icon_image cook/server.gif
statusmap_image cook/server.png
}
define host {
use sablon_fiziksel_sunucu
active_checks_enabled 0
check_command passive-check-missing
name sablon_fiziksel_sunucu_passive
alias sablon_fiziksel_sunucu_passive
address 127.0.0.1
}
define host {
use generic_host
checks_enabled 1
passive_checks_enabled 1
name sablon_vserver
notification_interval 30
notification_period 24x7
retain_nonstatus_information 1
notifications_enabled 1
retain_status_information 1
alias sablon_vserver
event_handler_enabled 1
process_perf_data 1
max_check_attempts 5
flap_detection_enabled 0
notification_options d,u,r
register 0
check_command check-host-alive_4
check_freshness 1
freshness_threshold 7200
}
define host {
use sablon_vserver
check_command passive-check-missing
active_checks_enabled 0
name sablon_vserver_passive
alias sablon_vserver_passive
address 127.0.0.1
}
</pre>
===== /etc/nagios3/conf.d/servicetemplates.cfg =====
<pre>
define service {
register 0
name generic-service
notification_interval 0
obsess_over_service 0
retain_nonstatus_information 1
notifications_enabled 1
retain_status_information 1
parallelize_check 1
event_handler_enabled 1
is_volatile 0
passive_checks_enabled 0
process_perf_data 1
check_freshness 0
flap_detection_enabled 0
active_checks_enabled 1
action_url /pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$' class='tips' rel='/pnp4nagios/popup?host=$HOSTNAME$&srv=$SERVICEDESC$
}
define service {
register 0
name passive-check-template
use generic-service
check_freshness 1
check_period none
passive_checks_enabled 1
#max_check_attempts 1
max_check_attempts 3
check_command passive-check-missing
#freshness_threshold 600
freshness_threshold 7200
check_period 24x7
notification_period 24x7
retry_check_interval 5
notification_options w,u,c,r
normal_check_interval 10
active_checks_enabled 0
check_freshness 1
}
define service {
check_period 24x7
use generic-service
check_command passive-check-missing
name passive-3minute
notification_period 24x7
retry_check_interval 1
register 0
contact_groups musteri_sorumlulari
freshness_threshold 7200
notification_options w,u,c,r
passive_checks_enabled 1
normal_check_interval 3
max_check_attempts 3
active_checks_enabled 0
check_freshness 1
}
define service {
check_period 24x7
use generic-service
check_command passive-check-missing
name passive-10minute
notification_period 24x7
retry_check_interval 5
register 0
contact_groups musteri_sorumlulari
freshness_threshold 7200
notification_options w,u,c,r
passive_checks_enabled 1
normal_check_interval 10
max_check_attempts 3
active_checks_enabled 0
check_freshness 1
}
define service {
check_period 24x7
use generic-service
check_command passive-check-missing
name passive-10minute-ext
notification_period 24x7
retry_check_interval 3
register 0
contact_groups musteri_sorumlulari
freshness_threshold 7200
notification_options w,u,c,r
passive_checks_enabled 1
normal_check_interval 10
max_check_attempts 3
active_checks_enabled 0
check_freshness 1
}
define service {
register 0
name generic-smtp-service
obsess_over_service 0
retain_nonstatus_information 1
notifications_enabled 1
retain_status_information 1
parallelize_check 1
event_handler_enabled 1
is_volatile 0
passive_checks_enabled 0
process_perf_data 1
check_freshness 0
flap_detection_enabled 0
active_checks_enabled 1
}
</pre>
===== /etc/nagios3/conf.d/timeperiods.cfg =====
<pre>
# '24x7' timeperiod definition
define timeperiod{
timeperiod_name 24x7
alias 24 Hours A Day, 7 Days A Week
sunday 00:00-24:00
monday 00:00-24:00
tuesday 00:00-24:00
wednesday 00:00-24:00
thursday 00:00-24:00
friday 00:00-24:00
saturday 00:00-24:00
}
# 'workhours' timeperiod definition
define timeperiod{
timeperiod_name workhours
alias "Normal" Working Hours
monday 09:00-17:00
tuesday 09:00-17:00
wednesday 09:00-17:00
thursday 09:00-17:00
friday 09:00-17:00
}
# 'nonworkhours' timeperiod definition
define timeperiod{
timeperiod_name nonworkhours
alias Non-Work Hours
sunday 00:00-24:00
monday 00:00-09:00,17:00-24:00
tuesday 00:00-09:00,17:00-24:00
wednesday 00:00-09:00,17:00-24:00
thursday 00:00-09:00,17:00-24:00
friday 00:00-09:00,17:00-24:00
saturday 00:00-24:00
}
# 'nonworkhours' timeperiod definition
define timeperiod{
timeperiod_name whileawake
alias Hours While Recipient Supposed To Be Awake
sunday 06:30-23:00
monday 06:30-23:00
tuesday 06:30-23:00
wednesday 06:30-23:00
thursday 06:30-23:00
friday 06:30-23:00
saturday 06:30-23:00
}
# 'nonnaptime' timeperiod definition
define timeperiod{
timeperiod_name nonnaptime
alias Hours While Recipient Supposed To Be Awake for a short time
sunday 06:30-23:00
monday 06:30-23:00
tuesday 06:30-23:00
wednesday 06:30-23:00
thursday 06:30-23:00
friday 06:30-23:00
saturday 06:30-23:00
}
# 'closedtime' timeperiod definition
define timeperiod{
timeperiod_name closedtime
alias Hours while toplugnderim ports should be closed
sunday 00:00-08:00,21:00-24:00
monday 00:00-08:00,21:00-24:00
tuesday 00:00-08:00,21:00-24:00
wednesday 00:00-08:00,21:00-24:00
thursday 00:00-08:00,21:00-24:00
friday 00:00-08:00,21:00-24:00
saturday 00:00-08:00,21:00-24:00
}
# 'none' timeperiod definition
define timeperiod{
timeperiod_name none
alias No Time Is A Good Time
}
</pre>
==== Makinalara ait tanımlar ====
===== /etc/nagios3/conf.d/datacenters/datacenter-group-<datacenteradı>.cfg =====
Her datacenter (fiziksel makinaların bulundugu yer) için iki adet dosyaan bulunuyor.
Örnek olarak '''/etc/nagios3/conf.d/datacenters/datacenter-group-amazon.cfg''' dosyası aşağıdaki şekilde
<pre>
define hostgroup {
hostgroup_name datacenter_amazon
alias Datacenter: amazon
}
</pre>
Örnek olarak '''/etc/nagios3/conf.d/datacenters/amazon.cfg''' dosyası aşağıdaki şekilde
<pre>
define host {
use sablon_fake_sunucu
host_name amazon
}
</pre>
===== /etc/nagios3/conf.d/machines/machine-group-<fiziksel_makinaadı>.cfg ve /etc/nagios3/conf.d/machines/<fiziksel_makinaadı>.cfg =====
Her fiziksel makina (vserver barındıran makina) kurulumumuz için bir adet bu dosyadan bulunuyor.
Örnek olarak '''/etc/nagios3/conf.d/machines/machine-group-hede.cfg''' dosyası aşağıdaki şekilde
<pre>
define hostgroup {
hostgroup_name machine_hede
alias Physical Machine: hede
}
</pre>
===== /etc/nagios3/conf.d/hosts/<makinaadı>.cfg =====
Host, service ve servicedependency nesneleri bu dosyalarda tanımlanıyor, denetlediğimiz her makina için bir adet dosya bulunuyor.
Örnek olarak '''/etc/nagios3/conf.d/hosts/hodo.cfg''' dosyası aşağıdaki şekilde
<pre>
define host {
use sablon_vserver
notification_interval 30
notification_period 24x7
check_command check-host-alive_4
hostgroups machine_hede
contact_groups musteri_sorumlulari
alias hodo
parents hede
host_name hodo
address 123.123.123.123
max_check_attempts 5
notification_options d,u,r
}
define service {
service_description Parkyeri-hodo-squid
use passive-10minute
host_name
contact_groups parkyeri.eposta,ccdesteksorumlusu,parkyeri.musteridestek
}
</pre>
==== NDOUtils kurulumu ====
<pre>
sudo aptitude install ndoutils
</pre>
'''ndoutils-nagios3-mysql''' paketi aşağıdaki gibi çeşitli sorular soracak, cevaplarını da hemen yanlarına yazdım:
<pre>
Connection method for MySQL database of ndoutils-mysql: unix socket
Name of your database's administrative user: root
Password of your database's administrative user: *** (mysql root şifresi)
MySQL username for ndoutils-mysql: ndoutils
MySQL database name for ndoutils-mysql: ndoutils
</pre>
[http://www.nagios.org/download/addons/ NDOUtils] yardım dosyasını okuyarak nasıl çalıştığına dair fikir edinebilirsiniz:
'''/usr/share/doc/ndoutils-nagios3-mysql/README.Debian'''
ndoutils nagios'un tüm verilerini bir mysql veritabanına aktaran, nagios'u geliştiren grubun resmi olarak desteklerdikleri bir araç. Nagvis ve Birdseye gibi diğer araçlar nagios hakkındaki verileri bu veritabanına sorgu çekerek alıyorlar.
ndoutils için nagios yapılandırmasını değiştirelim ki nagios tüm verilerini mysql veritabanına aktarsın.
===== /etc/nagios3/nagios.cfg =====
<pre>
broker_module=/usr/lib/ndoutils/ndomod-mysql-3x.o config_file=/etc/nagios3/ndomod.cfg
</pre>
===== /etc/default/ndoutils =====
NDO utils paketi öntanımli olarak kapalı geliyor, bu dosyayı aşağıdaki gibi değiştirerek başlangıç betiklerinin ndoutils'i başlatmasını sağlıyoruz:
<pre>
ENABLE_NDOUTILS=1
</pre>
Şimdi ndoutils'i dürtelim:
<pre>
invoke-rc.d ndoutils start
</pre>
Şimdi nagios'u yeniden başlatalım(syslog'u izleyerek kurlumun doğru olup olmadığını görebilirsiniz):
<pre>
invoke-rc.d nagios3 restart
</pre>
Bu aşamada artık mysql'de ndoutils veritabanında "nagios_" ile başlayan tablolar görmeniz gerekiyor. Tablolarıon boş olmaması da gerekiyor. Aksi halde ndoutils kurulumunda hata var demektir.
== pnp4nagios ==
Nagios denetim betiklerinden gelen [http://nagiosplug.sourceforge.net/developer-guidelines.html#AEN201 performance data]ları işleyerek bize [http://oss.oetiker.ch/rrdtool/ rrdtool] kullanarak grafik üreten yazılım. Ancak bir çok nagios denetimimiz [http://nagiosplug.sourceforge.net/developer-guidelines.html#AEN201 performance data] göndermediği için grafikleri maalesef yok, bu tür servis ve hostlar için ikonun üzerine geldiğinizde '''"sorry, the contents could not be loaded"''' uyarısı görürsünüz ve üzerine tıkladığınızda da korkutucu bir "'''PNP Error'''" sayfası ile karşılaşırsınız. Eğer denetlediğiniz servis ya da host performance data göndermiyorsa bunlar normal durumlar.
Nagios denetim betiğinin gönderdiği performance data alanının http://nagiosplug.sourceforge.net/developer-guidelines.html#AEN201 sayfasında belirtilen kurallara tam olarak uyması büyük önem taşıyor. Özellikle ölçüm yapılan değerin birimleri ile ilgili esneklik sunmaması zaman zaman sıkıntıya neden olabiliyor. İlgili sayfaya bakarsanız sadece bir kaç birim kullanabildiğiniz görürsünüz.
'''Not:''' Eğer deb paketini alttaki adresten çekemezseniz buyrun buradan alın [[Media:pnp4nagios_0.6.0-4_i386.deb.gz]]
<pre>
wget http://repo.coolcold.org/pool/main/p/pnp4nagios/pnp4nagios_0.6.0-4_i386.deb
# Bu dosya hedeften silinirse diye bu wiki sayfasına da eklesek fena olmaz.
sudo aptitude install rrdtool librrds-perl php5 php5-gd
sudo dpkg -i ~/pnp4nagios_0.6.0-4_i386.deb
</pre>
[http://www.pnp4nagios.org/ PNP4Nagios] kurulumu ile ilgili daha ayrıntılı bilgi için '''/usr/share/doc/pnp4nagios/README.Debian.gz''' dosyasına bakabilirsiniz.
Apache yapılandırmaları:
=== /etc/apache2/conf.d/pnp4nagios.conf ===
<pre>
Alias /pnp4nagios /usr/share/pnp4nagios/html
<Directory /usr/share/pnp4nagios/html>
Options None
DirectoryIndex index.php
AllowOverride AuthConfig
Order Allow,Deny
Allow From All
AuthName "Bdgn nagios Ldap"
Include /etc/apache2/ldap-configs/bind-user.conf
Require ldap-group cn=nagios_all,ou=nagios,ou=webaccess,o=bdgn
<IfModule mod_rewrite.c>
# Turn on URL rewriting
RewriteEngine On
Options FollowSymLinks
# Installation directory
RewriteBase /pnp4nagios/
# Protect application and system files from being viewed
RewriteRule ^(application|modules|system) - [F,L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT,L]
</IfModule>
</Directory>
</pre>
PNP4Nagios apache modrewrite kullandığı için etkinleştirmemiz gerekiyor:
<pre>
sudo a2enmod rewrite
sudo invoke-rc.d apache2 reload
</pre>
Şimdi http://nagios.bdgn.net/pnp4nagios/ adresine girerek kurulumun duruman bakın. Eğer bir sorun yoksa dosyayı silmemiz gerekiyor. (Ben yalnızca yenıden adlandırdım)
<pre>
sudo mv /usr/share/pnp4nagios/html/install.php /usr/share/pnp4nagios/html/install.php-passed
</pre>
=== /etc/nagios3/nagios.cfg ===
pnp4nagios'un hostlardan gelen [http://nagiosplug.sourceforge.net/developer-guidelines.html#AEN201 performance data]'ları işleyebilmesi için aşağıdaki değişiklikleri yapmamız gerekiyor:
<pre>
enable_environment_macros=1
check_external_commands=1
process_performance_data=1
service_perfdata_command=perfdata-service-pnp
host_perfdata_command=perfdata-host-pnp
</pre>
=== /etc/pnp4nagios/config.php ===
Bu dosyada şu değişiklikleri yapmamız gerekiyor:
<pre>
$conf['nagios_base'] = "/nagios3/cgi-bin";
</pre>
=== /etc/nagios3/conf.d/servertemplates.cfg ===
Bu dosyada generic_host adlı yapılandırma nesnesine ("name generic_host" olan host nesnesine) şu satırı ekliyoruz:
<pre>
action_url /pnp4nagios/graph?host=$HOSTNAME$&srv=_HOST_' class='tips' rel='/pnp4nagios/popup?host=$HOSTNAME$&srv=_HOST_
</pre>
=== /etc/nagios3/conf.d/servicetemplates.cfg ===
Bu dosyada generic-service adlı yapılandırma nesnesine ("name generic-service" olan service nesnesine) şu satırı ekliyoruz:
<pre>
action_url /pnp4nagios/graph?host=$HOSTNAME$&srv=$SERVICEDESC$' class='tips' rel='/pnp4nagios/popup?host=$HOSTNAME$&srv=$SERVICEDESC$
</pre>
Daha sonra nagios'u baştan başlattığımızda servis ve host'ların yanına birer ikon eklendiğini görüyoruz. Üzerine geldiğimizde eğer servis ya da host'a ait [http://nagiosplug.sourceforge.net/developer-guidelines.html#AEN201 geçerli performance data] varsa grafiğin üretildiğini görebilirsiniz.
== nagvis ==
<pre>
sudo aptitude install nagvis
</pre>
=== /etc/nagvis/nagvis.ini.php ===
ndoutils'in öntanımlı kurulum ayarı ile uyumlu olması için, aşağıdaki ayarı yapıyoruz:
<pre>
dbprefix="nagios_"
</pre>
=== /usr/share/nagios3/htdocs/side.htm ===
nagvis linkini nagios'un sol paneline ekleyelim, dosyada uygun bulduğunuz bir yere şu satırları ekleyin:
<pre>
<tr>
<td width=13><img src="images/greendot.gif" width="13" height="14" name="comment-dot"></td>
<td nowrap><a href="/nagios3/nagvis/nagvis/index.php" target="main" onMouseOver="switchdot('comment-dot',1)" onMouseOut="switchdot('comment-dot',0)" class=
</tr>
</pre>
=== /etc/nagvis/templates/hover/tmpl.default.html ===
Bu dosyada da şu değişiklikleri yapmak faydalı olabilir, nagvis'te servisler veya istemciler üzerine geldiğinizde açılan kutuda servisin grafiği varsa görmenizi sağlıyor, nagvisin daha güncel sürümlerinde bu kısımlar bizim kullandığımızdan oldukça daha iyi durumda.
<pre>
--- tmpl.default.html_bak 2009-11-27 17:47:20.000000000 +0200
+++ tmpl.default.html 2009-11-27 19:09:54.000000000 +0200
@@ -5,4 +5,20 @@
<!-- BEGIN service --><tr><td class="label"><label>[lang_service_description]</label></td><td>[service_description]</td></tr><!-- END service -->
<tr><td class="label"><label>[lang_state]</label></td><td>[obj_state]</td></tr>
<tr><td class="label"><label>[lang_output]</label></td><td>[obj_output]</td></tr>
+ <tr><td class="spacer" colspan="2"></td></tr>
+ <tr>
+ <td class="label"><label>PNP Host Graph</label></td>
+ <td>
+ <img src="/pnp4nagios/image?host=[pnp_hostname]&srv=_HOST_&view=1&source=0">
+ </td>
+ </tr>
+ <!-- BEGIN service -->
+ <tr><td class="spacer" colspan="2"></td></tr>
+ <tr>
+ <td class="label"><label>PNP Service Graph</label></td>
+ <td>
+ <img src="/pnp4nagios/image?host=[pnp_hostname]&srv=[pnp_service_description]&view=1&source=0">
+ </td>
+ </tr>
+ <!-- END service -->
</table>
</pre>
== rel ve mx kaydı ==
[http://naplax.sourceforge.net/REL.html REL] nagios için hazır yazılmış ve eposta ile nagios denetim sonuçları kabul etmek için yazılmış betikler topluluğu.
Aşağıda gördüğünüz betikleri bu adresteki kaynaktan aldık ve zaman içinde ihtiyaçlarımıza göre ufak değişiklikler yaptık (örneğin host check yapabilmesini ekledik). Ancak tüm yapı hala paketin ilk haline uygun şekilde duruyor, anlamak için [http://naplax.sourceforge.net/REL.html sayfasındaki] grafiği kullabilirsiniz.
izle.nagios.bdgn.net için gene izle.nagios.bdgn.net adresini gösterecek bir mx kaydı tanımlıyoruz.
<pre>
mx 10 izle.nagios.bdgn.net
</pre>
=== /etc/aliases ===
Bu dosyaya şu satırı eklemek gerek:
<pre>
nagios: "|/usr/bin/perl /usr/local/bin/smtpreceiver.pl"
</pre>
Yukarıdaki dosyanın kullanacağı betik:
=== /usr/local/bin/smtpreceiver.pl ===
<pre>
#!/usr/bin/perl
#use Getopt::Std;
#getopts("c:");
$commandfile = "/var/lib/nagios3/rw/nagios.cmd";
#if(defined($opt_c))
#{
# $commandfile = $opt_c;
#}
@input=<STDIN>;
my ($service,$state,$nagiosdate,$output,$host);
foreach $line(@input)
{
if ($line =~ /^SERVICE.*/)
{
$line =~ s/SERVICE://;
chomp $line;
$service=$line;
next;
}
elsif ($line =~ /^STATE.*/)
{
$line =~ s/STATE://;
chomp $line;
$state=$line;
next;
}
elsif ($line =~ /^DATE.*/)
{
$line =~ s/DATE://;
chomp $line;
$nagiosdate=$line;
next;
}
elsif ($line =~ /^OUTPUT.*/)
{
$line =~ s/OUTPUT://;
chomp $line;
$output=$line;
next;
}
elsif ($line =~ /^HOST.*/)
{
$line =~ s/HOST://;
chomp $line;
$host=$line;
next;
}
}
$time = time();
if ($service) {
$cmd = "[$nagiosdate] PROCESS_SERVICE_CHECK_RESULT;$host;$service;$state;$output\n";
} else {
$cmd = "[$nagiosdate] PROCESS_HOST_CHECK_RESULT;$host;$state;$output\n";
}
open DEBUGOUT, ">> /tmp/smtpdebug" or die "Can't open Command File: $commandfile\n";
print DEBUGOUT $cmd;
close DEBUGOUT;
if( $time < ($nagiosdate + 3600))
{
open CMDOUT, ">> $commandfile" or die "Can't open Command File: $commandfile\n";
print CMDOUT $cmd;
close CMDOUT;
}
else
{
open DEBUGOUT, ">> /tmp/smtpdebug" or die "Can't open Command File: $commandfile\n";
print DEBUGOUT "[$nagiosdate] DISCARDING TO OLD MESSAGE;$host\n";
close DEBUGOUT;
}
exit 0;
</pre>
=== İstemciler üzerinde yapılandırma ===
İnternet üzerinden erişime kapalı olan ve kendisi nsca ile doğrudan nagios'a erişemeyen makinalar için bu yapılandırmaları kullanıyoruz.
==== istemci:crontab ====
İstemciler üzerinden rel ile nagios denetimi eklemek için aşağıdaki kayıtları crontaba eklemek yeterli:
<pre>
*/10 * * * * /usr/local/bin/plugin_wrapper.pl /usr/lib/nagios/plugins/check_dummy 0 >/dev/null 2>&1 # host check
*/10 * * * * /usr/local/bin/plugin_wrapper.pl -s service_description_in_nagios_cfg /usr/lib/nagios/plugins/check_something parameters >/dev/null 2>&1 # service check
</pre>
Gereken dosyalar:
==== istemci:/etc/relconfig ====