Installation von des Netzwerküberwachungssystems Nagios 1.1 auf einem Debian-Rechner
|
|
|
- Jewel Johnston
- 10 years ago
- Views:
Transcription
1 Installation von des Netzwerküberwachungssystems Nagios 1.1 auf einem Debian-Rechner Voraussetzungen: gcc usw. Installiertes SNMP Installiertes Perl apt-get install libgd2 apt-get install libgd2-dev apt-get install libpng2 apt-get install libpng2-dev apt-get install libjpeg62 apt-get install libjpeg62-dev apt-get install zlib1g apt-get install zlib1g-dev Laufender Webserver (Apache) Folgende Pakte von holen: nagios-1.1.tar.gz nagios-plugins tar.gz nrpe-2.0.tar.gz nsclient_201.zip (Grundsystem) (Module zum Überwachen von einzelnen Diensten) (Client und Server zum Abfragen von Servern im Netz) (Client und Server zum Abfragen von Windows-Servern) Zielverzeichnis erstellen: mkdir /usr/local/nagios Gruppe nagios und User nagios erstellen: addgroup nagios addr --home /usr/local/nagios --ingroup nagios nagios Passwort für nagios-user aus /etc/shadow entfernen und /bin/false als Shell eintragen; ggf. / etc/shells entsprechend erweitern chown nagios:nagios /usr/local/nagios Nagios kompilieren und installieren: cd /usr/src tar xvfz nagios-1.1.tar.gz cd nagios-1.1./configure --with-gd-lib=/usr/lib --with-gd-inc=/usr/include make all make make install (make install-init) make install-commandmode make install-config
2 Installieren der Plugins: cd /usr/src tar xvfz nagios-plugins tar.gz cd nagios-plugins /configure make make install Web-Interface konfigurieren: httpd.conf um folgende Einträge ergänzen: ScriptAlias /nagios/cgi-bin/ /usr/local/nagios/sbin/ <Directory "/usr/local/nagios/sbin/"> AllowOverride AuthConfig Options ExecCGI Order allow,deny Allow from all </Directory> Alias /nagios/ /usr/local/nagios/share/ <Directory "/usr/local/nagios/share"> Options None AllowOverride AuthConfig Order allow,deny Allow from all </Directory> Apache neu starten: /etc/init.d/apache restart Datei.htaccess in den Verzeichnissen /usr/local/nagios/share und /usr/local/nagios/sbin mit folgendem Inhalt anlegen: AuthName "Nagios Access" AuthType Basic AuthUserFile /usr/local/nagios/etc/htpasswd.rs require valid-r User anlegen: htpasswd -c /usr/local/nagios/etc/htpasswd.rs nagiosadmin htpasswd /usr/local/nagios/etc/htpasswd.rs <r> Beispiel etc-verzeichnis sichern: Konfiguration von Nagios: cp -a /usr/local/nagios/etc /usr/local/nagios/etc-sic In /usr/local/nagios/etc die Dateien umbenennen (jeweils -sample entfernen): cgi.cfg-sample checkcommands.cfg-sample
3 contactgroups.cfg-sample contacts.cfg-sample dependencies.cfg-sample escalations.cfg-sample hostgroups.cfg-sample hosts.cfg-sample misccommands.cfg-sample nagios.cfg-sample resource.cfg-sample services.cfg-sample timeperiods.cfg-sample cgi.cfg: CGI.CFG - Sample CGI Configuration File for Nagios Last Modified: main_config_file=/usr/local/nagios/etc/nagios.cfg physical_html_path=/usr/local/nagios/share url_html_path=/nagios show_context_help=1 nagios_=/usr/local/nagios/libexec/check_nagios / usr/local/nagios/va r/status.log 5 'nagios' _authentication=1 default_r_name=guest authorized_for_system_information=nagiosadmin,chris authorized_for_configuration_information=nagiosadmin,chris authorized_for_system_commands=nagiosadmin,chris authorized_for_all_services=nagiosadmin,chris authorized_for_all_hosts=nagiosadmin,chris authorized_for_all_service_commands=nagiosadmin,chris authorized_for_all_host_commands=nagiosadmin,chris hostextinfo[es-eds]=/serverinfo/eseds.html;novell40.gif;novell40.jpg;novell40. gd2;intranetware 4.11;100,50;3.5,0.0,-1.5; hostextinfo[rosie]=/serverinfo/rosie.html;win40.gif;win40.jpg;win40.gd2;nt Serv er 4.0;;; serviceextinfo[es-eds;ping] = ;;PING rate serviceextinfo[rosie;security Alerts]=;security.gif;Security alerts statusmap_background_image=smbackground.gd2 default_statusmap_layout=5 default_statuswrl_layout=4 statuswrl_include=myworld.wrl ping_syntax=/bin/ping -n -U -c 5 $HOSTADDRESS$ refresh_rate=90 host_unreachable_sound=hostdown.wav host_down_sound=hostdown.wav service_critical_sound=critical.wav service_warning_sound=warning.wav service_unknown_sound=warning.wav normal_sound=noproblem.wav xeddb_host=somehost xeddb_port=someport xeddb_database=somedatabase xeddb_rname=somer xeddb_password=somepassword
4 xsddb_host=somehost xsddb_port=someport xsddb_database=somedatabase xsddb_rname=somer xsddb_password=somepassword checkcommands.cfg: Sample object config file for Nagios Read the documentation for more information on this configuration file. I've provided some comments here, but things may not be so clear without further explanation, so make sure to read the HTML documentation! Last Modified: COMMAND DEFINITIONS SYNTAX: template <templatename> name <objectname> command_name <commandname> command_line <commandline> WHERE: <templatename> = object name of another command definition that should be d as a template for this definition (optional) <objectname> = object name of command definition, referenced by other command definitions that it as a template (optional) <commandname> = name of the command, as recognized/d by Nagios <commandline> = command line SAMPLE SERVICE CHECK COMMANDS These are some example service check commands. They may or may not work on your system, as they must be modified for your plugins. See the HTML documentation on the plugins for examples of how to configure command definiti ons. 'check_tcp' command definition
5 command_name command_line check_tcp $USER1$/check_tcp -H $HOSTADDRESS$ -p $ARG1$ 'check_udp' command definition command_name check_udp command_line $USER1$/check_udp -H $HOSTADDRESS$ -p $ARG1$ 'check_ftp' command definition command_name check_ftp command_line $USER1$/check_ftp -H $HOSTADDRESS$ 'check_pop' command definition command_name check_pop command_line $USER1$/check_pop -H $HOSTADDRESS$ 'check_smtp' command definition command_name check_smtp command_line $USER1$/check_smtp -H $HOSTADDRESS$ 'check_nntp' command definition command_name check_nntp command_line $USER1$/check_nntp -H $HOSTADDRESS$ 'check_http' command definition command_name check_http command_line $USER1$/check_http -H $HOSTADDRESS$ 'check_telnet' command definition command_name check_telnet command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p 23 'check_ping' command definition command_name check_ping command_line $USER1$/check_ping -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ -p 5 'check_dns' command definition command_name check_dns command_line $USER1$/check_dns -H -s $HOSTADDRESS$
6 'check_hpjd' command definition command_name check_hpjd command_line $USER1$/check_hpjd -H $HOSTADDRESS$ -C public 'check_local_disk' command definition command_name check_local_disk command_line $USER1$/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$ 'check_local_rs' command definition command_name check_local_rs command_line $USER1$/check_rs -w $ARG1$ -c $ARG2$ 'check_local_procs' command definition command_name check_local_procs command_line $USER1$/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$ 'check_local_load' command definition command_name check_local_load command_line $USER1$/check_load -w $ARG1$ -c $ARG2$ contactgroups.cfg: Sample object config file for Nagios Read the documentation for more information on this configuration file. I've provided some comments here, but things may not be so clear without further explanation, so make sure to read the HTML documentation! Last Modified: CONTACT GROUP DEFINITIONS SYNTAX: 'novell-' contact group definition define contactgroup{ contactgroup_name Die Administratoren members chris
7 contacts.cfg: Sample object config file for Nagios Read the documentation for more information on this configuration file. I've provided some comments here, but things may not be so clear without further explanation, so make sure to read the HTML documentation! Last Modified: CONTACT DEFINITIONS SYNTAX: 'nagios' contact definition define contact{ contact_name nagios Nagios Admin service_ host_ service_ w,u,c,r host_ d,u,r service_notification_commands notify-by- ,notify-by-epager host_notification_commands host-notify-by- ,host-notify-byepag er pager 'chris' contact definition define contact{ contact_name service_ host_ service_ host_ service_notification_commands host_notification_commands chris Christian w,u,c,r d,u,r notify-by- host-notify-by- dependencies.cfg: nicht erforderlich escalations.cfg: nicht erforderlich
8 hostgroups.cfg: Sample object config file for Nagios Read the documentation for more information on this configuration file. I've provided some comments here, but things may not be so clear without further explanation, so make sure to read the HTML documentation! Last Modified: HOST GROUP DEFINITIONS SYNTAX: 'linux-servers' host group definition define hostgroup{ hostgroup_name linux-servers Linux Servers members linux01 'windows-servers' host group definition define hostgroup{ hostgroup_name windows-servers Windows Servers members hosts.cfg: HOST DEFINITIONS SYNTAX: Generic host definition template define host{ name generic-host notifications_enabled 1 event_handler_enabled 1 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 register 0
9 'linux01' host definition define host{ generic-host linux01 Nagios Server itself address check-host-alive max_check_attempts 10 d,u,r '' host definition define host{ generic-host Ein Windows Server address check-host-alive max_check_attempts 10 d,u,r misccommands.cfg: Sample object config file for Nagios Read the documentation for more information on this configuration file. I've provided some comments here, but things may not be so clear without further explanation, so make sure to read the HTML documentation! Last Modified: COMMAND DEFINITIONS SYNTAX: template <templatename> name <objectname> command_name <commandname> command_line <commandline> WHERE: <templatename> = object name of another command definition that should be d as a template for this definition (optional) <objectname> = object name of command definition, referenced by other command definitions that it as a template (optional) <commandname> = name of the command, as recognized/d by Nagios <commandline> = command line
10 SAMPLE NOTIFICATION COMMANDS These are some example notification commands. They may or may not work on your system without modification. 'notify-by- ' command definition command_name notify-by- command_line /usr/bin/printf "%b" "***** Nagios *****\n\nnotificatio n Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress : $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $DATETIME$\n\nAdditional In fo:\n\n$output$" /usr/bin/mail -s "** $NOTIFICATIONTYPE$ alert - $HOSTALIAS$/$ SERVICEDESC$ is $SERVICESTATE$ **" $CONTACT $ 'notify-by-epager' command definition command_name notify-by-epager command_line /usr/bin/printf "%b" "Service: $SERVICEDESC$\nHost: $HOS TNAME$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\nInfo: $OUTPUT$\nDate: $DA TETIME$" /usr/bin/mail -s "$NOTIFICATIONTYPE$: $HOSTALIAS$/$SERVICEDESC$ is $S ERVICESTATE$" $CONTACTPAGER$ 'host-notify-by- ' command definition command_name host-notify-by- command_line /usr/bin/printf "%b" "***** Nagios *****\n\nnotificatio n Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOST ADDRESS$\nInfo: $OUTPUT$\n\nDate/Time: $DATETIME$\n" /usr/bin/mail -s "Host $H OSTSTATE$ alert for $HOSTNAME$!" $CONTACT $ 'host-notify-by-epager' command definition command_name host-notify-by-epager command_line /usr/bin/printf "%b" "Host '$HOSTALIAS$' is $HOSTSTATE$\ ninfo: $OUTPUT$\nTime: $DATETIME$" /usr/bin/mail -s "$NOTIFICATIONTYPE$ alert - Host $HOSTNAME$ is $HOSTSTATE$" $CONTACTPAGER$
11 nagios.cfg: NAGIOS.CFG - Sample Main Config File for Nagios Read the documentation for more information on this configuration file. I've provided some comments here, but things may not be so clear without further explanation. Last Modified: LOG FILE This is the main log file where service and host events are logged for historical purposes. This should be the first option specified in the config file!!! log_file=/usr/local/nagios/var/nagios.log cfg_file=/usr/local/nagios/etc/contactgroups.cfg cfg_file=/usr/local/nagios/etc/contacts.cfg cfg_file=/usr/local/nagios/etc/dependencies.cfg cfg_file=/usr/local/nagios/etc/escalations.cfg cfg_file=/usr/local/nagios/etc/hostgroups.cfg cfg_file=/usr/local/nagios/etc/hosts.cfg cfg_file=/usr/local/nagios/etc/services.cfg cfg_file=/usr/local/nagios/etc/timeperiods.cfg cfg_file=/usr/local/nagios/etc/checkcommands.cfg cfg_file=/usr/local/nagios/etc/misccommands.cfg cfg_dir=/usr/local/nagios/etc/services resource_file=/usr/local/nagios/etc/resource.cfg status_file=/usr/local/nagios/var/status.log nagios_r=nagios nagios_group=nagios check_external_commands=0 command_file=/usr/local/nagios/var/rw/nagios.cmd comment_file=/usr/local/nagios/var/comment.log downtime_file=/usr/local/nagios/var/downtime.log lock_file=/usr/local/nagios/var/nagios.lock temp_file=/usr/local/nagios/var/nagios.tmp log_rotation_method=d log_archive_path=/usr/local/nagios/var/archives _syslog=1 log_notifications=1 log_service_retries=1 log_host_retries=1 log_event_handlers=1
12 log_initial_states=0 log_external_commands=1 log_passive_service_checks=1 global_host_event_handler=somecommand global_service_event_handler=somecommand inter_check_delay_method=s service_interleave_factor=s max_concurrent_checks=0 service_reaper_frequency=10 sleep_time=1 service_check_timeout=60 host_check_timeout=30 event_handler_timeout=30 notification_timeout=30 ocsp_timeout=5 perfdata_timeout=5 retain_state_information=1 state_retention_file=/usr/local/nagios/var/status.sav retention_update_interval=60 _retained_program_state=0 interval_length=60 _agressive_host_checking=0 execute_service_checks=1 accept_passive_service_checks=1 enable_notifications=1 enable_event_handlers=1 process_performance_data=0 host_perfdata_command=process-host-perfdata service_perfdata_command=process-service-perfdata obsess_over_services=0 ocsp_command=somecommand check_for_orphaned_services=0 check_service_freshness=1 freshness_check_interval=60 aggregate_status_updates=1 status_update_interval=15 enable_flap_detection=0
13 low_service_flap_threshold=5.0 high_service_flap_threshold=20.0 low_host_flap_threshold=5.0 high_host_flap_threshold=20.0 date_format=iso8601 illegal_object_name_chars=`~!$%^&* '"<>?,()= illegal_macro_output_chars=`~$& '"<> admin_ =nagios admin_pager=pagenagios EOF (End of file) resource.cfg: nicht erforderlich services.cfg: Sample object config file for Nagios Read the documentation for more information on this configuration file. I've provided some comments here, but things may not be so clear without further explanation, so make sure to read the HTML documentation! Last Modified: SERVICE DEFINITIONS SYNTAX: Generic service definition template name active_checks_enabled 1 passive_checks_enabled 1 parallelize_check 1 obsess_over_service 1 check_freshness 0 notifications_enabled 1 event_handler_enabled 1 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 register 0
14 /usr/local/nagios/etc/services/linux01.cfg: linux01 - Der Nagiosserver selbst linux01 PING w,u,c,r check_ping!100.0,20%!500.0,60% linux01 HTTP c,r check_http linux01 Current Users retry_check_interval 2 notification_interval 240 w,u,c,r check_local_rs!75!150 linux01 Total Processes
15 linux01 Current Users retry_check_interval 2 notification_interval 240 w,u,c,r check_local_rs!75!150 linux01 Total Processes retry_check_interval 2 linux- notification_interval 240 w,u,c,r check_local_procs!150!200!rszdt linux01 /dev/hda1 Free Space linux- w,u,c,r check_local_disk!20%!10%!/dev/hda1 timeperiods.cfg: TIMEPERIOD DEFINITIONS SYNTAX: '' timeperiod definition define timeperiod{ timeperiod_name
16 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 "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 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 'none' timeperiod definition define timeperiod{ timeperiod_name none No Time Is A Good Time Konfiguration überprüfen mit /usr/local/nagios/bin/nagios -v -c /usr/local/nagios/etc/nagios.cfg anschließend nagios mit /etc/init.d/nagios start starten. Linux-Rechner über das Netz überwachen: Es wird das Plugin nrpe verwendet. Dieses ist aber nur erforderlich um z.b. die lokale Plattenausnutzung, lokale Prozesse etc. zu überwachen. Für Netz-Dienste (z.b. http, ftp etc.) ist KEIN Plugin erforderlich. auf dem Nagios-Server (nur einmal erforderlich): cd /usr/src tar xvfz nrpe-2.0.tar.gz cd nrpe-2.0./configure disable-ssl
17 make all cd src cp check_nrpe /usr/local/nagios/libexec Die Datei /usr/local/nagios/etc/checkcommands.cfg um folgenden Eintrag ergänzen: REMOTE HOST CHECK COMMANDS command_name command_line -c $ARG1$ check_nrpe /usr/local/nagios/libexec/check_nrpe -H $HOSTADDRESS$ auf (jedem) zu überwachenden Linux-Client: Auf dem Client müssen sowohl die nagios-plugins unter /usr/local/nagios/libexec als auch der nrpe-daemon installiert sein: cd /usr/src tar xvfz nagios-plugins tar.gu cd nagios-plugins /configure make make install cd /usr/src tar xvfz nrpe-2.0.tar.gz cd nrpe-2.0./configure disable-ssl make all cp src/nrpe /usr/local/nagios/ cp nrpe.cfg /usr/local/nagios User und Gruppe nagios hinzufügen: addgroup nagios ; addr --ingroup nagios --disabled-password nagios /usr/local/nagios/nrpe.cfg editieren: server_port=5666 allowed_hosts=<ip des abfragenden Servers> nrpe_r=nagios nrpe_group=nagios dont_blame_nrpe=0 debug=0 command_timeout=60 Beispiele: command[check_rs]=/usr/local/nagios/libexec/check_rs -w 5 -c 10 command[check_load]=/usr/local/nagios/libexec/check_load -w 15,10,5 -c 30,25,20 command[check_disk1]=/usr/local/nagios/libexec/check_disk -w 20 -c 10 -p /dev/sda2 command[check_zombie_procs]=/usr/local/nagios/libexec/check_procs -w 5 -c 10 -s Z command[check_total_procs]=/usr/local/nagios/libexec/check_procs -w 150 -c 200
18 nrpe Daemon starten: /usr/local/nagios /usr/local/nagios/nrpe -c /usr/local/nagios/nrpe.cfg -d Für den zu überwachenden Linux-Rechner müssen jetzt noch auf dem Nagios-Server folgende Dateien ergänzt bzw. erstellt werden: /usr/local/nagios/etc/hosts.cfg um folgenden Eintrag ergänzen: 'linux02' host definition define host{ generic-host linux02 Ein Linux-Rechner im Netz address check-host-alive max_check_attempts 10 d,u,r /usr/local/nagios/etc/hostgroups.cfg um folgenden Eintrag ergänzen: 'linux-servers' host group definition define hostgroup{ hostgroup_name linux-servers Linux Servers members linux01,linux02 /usr/local/nagios/etc/services/linux02.cfg erstellen: linux02 - Ein Linux-Rechner im Netz linux02 CHECK_USERS w,u,c,r check_nrpe!check_rs linux02 CHECK_LOAD
19 c,r check_nrpe!check_load linux02 CHECK_DISK_1 retry_check_interval 2 notification_interval 240 w,u,c,r check_nrpe!check_disk1 linux02 CHECK_ZOMBIE_PROCS retry_check_interval 2 notification_interval 240 w,u,c,r check_nrpe!check_zombie_procs linux02 CHECK_TOTAL_PROCS w,u,c,r check_nrpe!check_total_procs
20 Windows-Rechner über das Netz überwachen Es wird das Plugin NSClient-2.01 verwendet. Dieses ist aber nur erforderlich um z.b. die lokale Plattenausnutzung, lokale Prozesse etc. zu überwachen. Für Netz-Dienste (z.b. http, ftp etc.) ist KEIN Plugin erforderlich. Überwacht werden können z.b.: - Verbrauchter Plattenplatz - CPU-Load - Uptime - Clientversion - "Procstate": Gestartete Programme - "Servicestate": Gestartete Dienste - Verbrauchter Arbeitsspeicher auf dem Nagios-Server (nur einmal erforderlich): cd /usr/src mkdir nsclient_201 mv NSClient_2.01.zip nsclient_201 cd nsclient_201 unzip NSClient_2.01.zip cp LinuxBin/check_nt /usr/local/nagios/libexec Die Datei /usr/local/nagios/etc/checkcommands.cfg um folgende Einträge ergänzen: command_name check_nt_disk command_line /usr/local/nagios/libexec/check_nt -H $HOSTADDRESS$ -v USEDDISKSPACE -l $ARG1$ -w $ARG2$ -c $ARG3$ command_name check_nt_cpuload command_line /usr/local/nagios/libexec/check_nt -H $HOSTADDRESS$ -v CPULOAD -l $ARG1$ command_name check_nt_uptime command_line /usr/local/nagios/libexec/check_nt -H $HOSTADDRESS$ -v UPTIME command_name check_nt_clientversion command_line /usr/local/nagios/libexec/check_nt -H $HOSTADDRESS$ -v CLIENTVERSION command_name check_nt_process command_line /usr/local/nagios/libexec/check_nt -H $HOSTADDRESS$ -v PROCSTATE -d SHOWALL -l $ARG1$ command_name check_nt_service command_line /usr/local/nagios/libexec/check_nt -H $HOSTADDRESS$ -v SERVICESTATE -d SHOWALL -l $ARG1$
21 command_name check_nt_mem command_line /usr/local/nagios/libexec/check_nt -H $HOSTADDRESS$ -v MEMUSE -w $ARG1$ -c $ARG2$ /usr/local/nagios/etc/hosts.cfg um folgenden Eintrag ergänzen: '' host definition define host{ generic-host Ein Windows-Rechner im Netz address check-host-alive max_check_attempts 10 d,u,r /usr/local/nagios/etc/hostgroups.cfg um folgenden Eintrag ergänzen: 'windows-servers' host group definition define hostgroup{ hostgroup_name windows-servers Windows Servers members /usr/local/nagios/etc/services/linux02.cfg erstellen: - Ein Windows-Rechner im Netz PING w,u,c,r check_ping!100.0,20%!500.0,60% DISK C
22 c,r check_nt_disk!c!70!80 DISK D c,r check_nt_disk!d!70!80 CPULOAD c,r check_nt_cpuload!60,70,80 UPTIME c,r check_nt_uptime CLIENTVERSION
23 c,r check_nt_clientversion CHECK_PROCESSES c,r check_nt_process!explorer.exe CHECK_SERVICES c,r check_nt_service!mssqlserver,eventlog CHECK_MEMUSE c,r check_nt_mem!60,70 Mit /usr/local/nagios/bin/nagios -v -c /usr/local/nagios/etc/nagios.cfg überprüfen, ob Fehler auftreten; diese ggf. korrigieren und Nagios anschließend mit /etc/init.d/nagios restart neu starten.
NETWORK MONITOR. Some high-end network monitoring. Watching your systems with Nagios COVER STORY. What Is Nagios? Installing the Server and Plugins
COVER STORY Nagios Workshop Watching your systems with Nagios NETWORK MONITOR Nagios monitors your network and provides early warning for problems with hosts and services. BY JULIAN HEIN Some high-end
How To Install Nagios Network Monitoring Program On A Pc Or Macbook Or Ipad (For Mac) With A Web Browser (For A Mac)
Table Of Contents Introduction...2 Section One Installation of the Operating System...3 Section Two Installation of Host Server Programs...5 Section Three Installation of the Linux Client Software (NRPE)...14
How To Monitor A Network With Nagios And Other Tools
Network Monitoring with Nagios and other tools Wednesday, 19 July 2006 Martin B. Smith [email protected] What is a network monitoring system? A combination of hardware and software used to administer
While are you still in Nagios working directory, create a new file for DNS servers monitoring
NAGIOS MONITORING ----------------- On AUTH1 server 1. Go to Nagios working directory $ cd /usr/local/etc/nagios 2. Copy Nagios sample files To do this, make sure you are in Nagios working directory from
DEPLOYMENT GUIDE Version 1.0. Deploying the BIG-IP LTM with the Nagios Open Source Network Monitoring System
DEPLOYMENT GUIDE Version 1.0 Deploying the BIG-IP LTM with the Nagios Open Source Network Monitoring System Deploying F5 with Nagios Open Source Network Monitoring System Welcome to the F5 and Nagios deployment
Setting Up A Nagios Monitoring System Warren Block, May 2005
Setting Up A Nagios Monitoring System Warren Block, May 2005 What Is Nagios? NAGIOS (na gee ose) is a system that will monitor the status of other network computers or components. It can watch your network
Network Monitoring Systems / Nagios. 2/19/08 Michael Miller e mail: [email protected]
Network Monitoring Systems / Nagios 2/19/08 Michael Miller e mail: [email protected] Network Monitoring System What is a Network Monitoring System ( NMS ) What types of devices can you monitor?
Managing Monitoring in Distributed Environments
Managing Monitoring in Distributed Environments The University of Edinburgh is a charitable body, registered in Scotland, with registration number SC005336. Introduction Motivation Background Implementation
Présentation de Nagios
Rémi Laurent [email protected] http://www.fsugar.be/ 11 avril 2009 Nagios? système de monitoring : services réseaux paramètres vitaux notification gestion des incidents prises d actions... Vocabulaire
NRPE Documentation CONTENTS. 1. Introduction... a) Purpose... b) Design Overview... 2. Example Uses... a) Direct Checks... b) Indirect Checks...
Copyright (c) 1999-2007 Ethan Galstad Last Updated: May 1, 2007 CONTENTS Section 1. Introduction... a) Purpose... b) Design Overview... 2. Example Uses... a) Direct Checks... b) Indirect Checks... 3. Installation...
Document d'installation FAN 2.1
Document d'installation FAN 2.1 Filename : FAN_Documentation_EN_v2.1-1 Version : 2.1 Date : 12/04/2011 Authors : Olivier LI-KIANG-CHEONG, Manuel OZAN, Charles JUDITH Licence : Creative Commons Attribution
Availability Management Nagios overview. TEIN2 training Bangkok September 2005
1 Availability Management Nagios overview Agenda 2 Introduction Objectives Functionalities Requirement. Architecture & Operation Operation Description WEB portal Plugins and extensions Plugins description
How To Run Nrpe On Nagios On Windows 7.5 (Windows) On A Linux Computer On A Windows 7 (Windows 7) On An Ubuntu Computer On An Ipad Or Ipad (Windows 8) On Your Pc
Server Monitoring Contents Ganglia... 1 Nagios...3 Open Computer and Software Inventory Next Generation...8 Ganglia Ganglia is a web based program developed by Berkeley University designed to monitor machine
An Introduction to Monitoring with Nagios
An to Monitoring with Nagios Laurent Andrey Rémi Badonnel LORIA - INRIA Grand Est ISSNSM 2008, Zurich Laurent Andrey, Rémi Badonnel An to Monitoring with Nagios 1/32 Local checks Remote checks Conclusions
VANITHASHRREE RAJA 21 ST OCTOBER 1988 SERVER, CPU & HARDISK NETWORK MONITORING SYSTEM 2011/2012 EN. ALIAS MOHD
VANITHASHRREE RAJA 21 ST OCTOBER 1988 SERVER, CPU & HARDISK NETWORK MONITORING SYSTEM 2011/2012 EN. ALIAS MOHD I hereby declare that I have read this report and in my opinion, this report is sufficient
Nagios. cooler than it looks. Wednesday, 31 October 2007
Nagios cooler than it looks 1 Outline sysadmin 101 Nagios Overview Installing nagios NRPE / NSCA Other Stuff Questions 2 Sysadmin 101 Every sysadmin needs a decent toolkit... 3 Sysadmin 101 Every sysadmin
Nagios. Nagios. Jacquelin Charbonnel - Albert Shih. CNRS - Ecole Mathrice 2009. Marseille, 16-20 Novembre 2009 1 / 72
Nagios Jacquelin Charbonnel - Albert Shih CNRS - Ecole Mathrice 2009 Marseille, 16-20 Novembre 2009 1 / 72 Introduction Caractérisation Caractérisation système de supervision de services de services réseaux
Network Monitoring with Nagios. Matt Gracie, Information Security Administrator Canisius College, Buffalo, NY
Network Monitoring with Nagios Matt Gracie, Information Security Administrator Canisius College, Buffalo, NY Canisius College is one of 28 Jesuit colleges in the nation and the premier private college
Network Monitoring As a Layer of Security
August 4, 2009 CS 691 Advanced System Security Design Security Project Documentation Network Monitoring As a Layer of Security Jeff Miller University of Colorado Colorado Springs Network Monitoring As
Nagios Core Version 3.x Documentation
Nagios Core Version 3.x Documentation http://www.nagios.org Copyright 2009-2010 Nagios Core Development Team and Community Contributors. Copyright 1999-2009 Ethan Galstad. Portions copyright by Nagios
Nagios Core Version 3.x Documentation
Nagios Core Version 3.x Documentation http://www.nagios.org Copyright 2009 Nagios Core Development Team and Community Contributors. Copyright 1999-2009 Ethan Galstad. Portions copyright by Nagios Community
Open Source Management Options
Open Source Management Options September 30th, 2008 Jane Curry Skills 1st Ltd www.skills-1st.co.uk Jane Curry Skills 1st Ltd 2 Cedar Chase Taplow Maidenhead SL6 0EU 01628 782565 jane.curry@skills 1st.co.uk
Installation Sophos Virenscanner auf Friedolins Linux Servern
Installation Sophos Virenscanner auf Friedolins Linux Servern Überprüfen der Voraussetzungen Alle Aktionen erfolgen als User root! Für die Installation sind folgende Pakete notwendig: nfs utils und Samba
Nagios XI - NRPE Troubleshooting and Common Solutions
Purpose The Industry Standard in IT Infrastructure Monitoring This document describes how to troubleshoot NRPE (Nagios Remote Plugin Executor) agent issues in Nagios XI. NRPE is most commonly used to monitor
IAC-BOX Network Integration. IAC-BOX Network Integration IACBOX.COM. Version 2.0.1 English 24.07.2014
IAC-BOX Network Integration Version 2.0.1 English 24.07.2014 In this HOWTO the basic network infrastructure of the IAC-BOX is described. IAC-BOX Network Integration TITLE Contents Contents... 1 1. Hints...
heck What the #%!@ is wrong with my server?!? Josh Malone Systems Administrator National Radio Astronomy Observatory Charlottesville, VA
heck What the #%!@ is wrong ^ with my server?!? Josh Malone Systems Administrator National Radio Astronomy Observatory Charlottesville, VA 1 Agenda Intro to Monitoring Nagios Install/Config Usage Custom
Monitoring Your Enterprise PACS With Nagios, Cacti And Smokeping
Monitoring Your Enterprise PACS With Nagios, Cacti And Smokeping Ron Sweeney, Engineer 2 ClubPACS Western Michigan Drafted: 09/02/04 Revised: 11/03/04 back cover Index 1 Introduction... 2 1.1 What we are
Monitoring Systems and Services. Alwin Brokmann DESY-IT March 24 28,2003 CHEP 2003 San Diego
Monitoring Systems and Services Alwin Brokmann DESY-IT March 24 28,2003 CHEP 2003 San Diego Requirements Host Monitoring Service Monitoring Navigation User specific Parameter s WEB Interface Alarming Escalation
Monitoring the World with NetBSD
Monitoring the World with NetBSD Alan Horn Inktomi Corp [email protected] Jennifer Davis California Institute of Technology [email protected] Abstract Through presenting a set of guidelines
quick documentation Die Parameter der Installation sind in diesem Artikel zu finden:
quick documentation TO: FROM: SUBJECT: [email protected] ASTARO FIREWALL SCAN MIT NESSUS AUS BACKTRACK 5 R1 DATE: 24.11.2011 Inhalt Dieses Dokument beschreibt einen Nessus Scan einer Astaro
Redundant and Failover Network Monitoring This section describes a few scenarios for implementing redundant monitoring hosts an various types of network layouts. With redundant hosts, you can maintain
SMS Alerting System. Version 0.1 (23-10-2010) Mohammed Aijaz Ahmed. Network Administrator. IST Dept.
SMS Alerting System Version 0.1 (23-10-2010) Mohammed Aijaz Ahmed Network Administrator IST Dept. Amana Steel Buildings and Contracting Co. (www.amanabuildings.com) [email protected] [email protected]
Linux & Docker auf Azure
Linux & Docker auf Azure Linux in der Azure Cloud Web Mail Twitter Rainer Stropek software architects gmbh http://www.timecockpit.com [email protected] @rstropek Saves the day. Your Host Rainer Stropek
MINIMUM INSTALLATION REQUIREMENTS Processor: RAM: Hard disk: Operating system: Others: Pentium 200 MHz. 64 MB. 80 MB free space. One of the following: Red Hat (version 7.0, 7.1, 7.2, 7.3, 8.0, 9 or Enterprise
Research Report Security Management with Open Source Tools
Research Report Security Management with Open Source Tools Prof. Dr. Stefan Wohlfeil 2006-12-20 This document describes the work done during the Research Semester in Summer 2006 of Prof. Dr. Stefan Wohlfeil.
wget
NSCA (with Nagios) Prerequisites -Nagios should be previously installed and configured -External commands should be enabled and configured for Nagios previously Getting the source The first step would
Monitoring a Linux Mail Server
Monitoring a Linux Mail Server Mike Weber [email protected]] Various Methods to Monitor Mail Server Public Ports SMTP on Port 25 POPS on Port 995 IMAPS on Port 993 SNMP Amavis on Port 10024 Reinjection
Monitoring VoIP Systems. Sebastian Damm [email protected]
Monitoring VoIP Systems Sebastian Damm [email protected] Who we are, what we do Düsseldorf based VoIP provider (since 2004) active in Germany and UK Private and Business customers VoIP and Mobile products
Building an Architecture Model 1. 1. Entwerfen Sie mit AxiomSys ein Kontextdiagramm, das folgendermaßen aussieht:
Building an Architecture Model 1 1. Entwerfen Sie mit AxiomSys ein Kontextdiagramm, das folgendermaßen aussieht: Wie Ihnen aus der vergangenen Lehrveranstaltung bekannt ist, bedeuten Sterne neben den Bezeichnungen,
Dial-Up VPN auf eine Juniper
Dial-Up VPN auf eine Juniper Gateway Konfiguration Phase 1 Konfiguration Create a user that is used to define the phase1 id parameters. Navigate to the following screen using the tree pane on the left
QAS DEBUG - User und Computer
QAS DEBUG - User und Computer Inhalt Computer Status vastool status Benutzer Login vastool list user vastool nss getpwnam vastool user checkaccess kinit su
September 21 st, 2006. Ethan Galstad. [email protected]
Version 3.0 and Beyond September 21 st, 2006 [email protected] Where Things Currently Stand Nagios 3.x Daemon: Coding 90% completed Lots of internal improvements Documentation needs to be written CVS code
NETWORK MONITORING : Using Nagios as an Example Tool
Afeez Yusuff NETWORK MONITORING : Using Nagios as an Example Tool Bachelor s thesis CENTRAL OSTROBOTHNIA UNIVERSITY OF APPLIED SCIENCES Degree Programme in Information Technology May 2012 ABSTRACT CENTRAL
SPICE auf der Überholspur. Vergleich von ISO (TR) 15504 und Automotive SPICE
SPICE auf der Überholspur Vergleich von ISO (TR) 15504 und Automotive SPICE Historie Software Process Improvement and Capability determination 1994 1995 ISO 15504 Draft SPICE wird als Projekt der ISO zur
Nagios introduction. Dhruba Raj Bhandari (CCNA) Additions by Phil Regnauld. [email protected]
Nagios introduction Dhruba Raj Bhandari (CCNA) Additions by Phil Regnauld [email protected] Why Nagios? Open source Relatively scaleable, Manageable, Secure and more Best documentation available
How To Monitor A Network With Nagios And Rt Software On Linux On A Microsoft Ipad (A2) On A Pc Or Macbook Or Ipad Or Ipa (A3) On An Ipa Or Ipo (
An Efficient Network Monitoring and Management System Rafiullah Khan, Sarmad Ullah Khan, Rifaqat Zaheer, and Muhammad Inayatullah Babar Abstract. Large organizations always require fast and efficient network
Nagios Web Service Checker
Nagios Web Service Checker Table of content 1. Introduction...2 1.1. What is Nagios?...2 1.2. What is Nagios Web Service Checker?...2 1.3. Why should I use it?...2 1.4. What do I need?...2 2. Installing
AnyWeb AG 2008 www.anyweb.ch
HP SiteScope (End-to-End Monitoring, System Availability) Christof Madöry AnyWeb AG ITSM Practice Circle September 2008 Agenda Management Technology Agentless monitoring SiteScope in HP BTO SiteScope look
Metering PDU Manual DN-95601 DN-95602
Metering PDU Manual DN-95601 DN-95602 Safety Advice The device must be installed only by qualified personnel according to the following installation and operating instructions. The manufacturer does not
Upgrading Your Skills to MCSA Windows Server 2012 MOC 20417
Upgrading Your Skills to MCSA Windows Server 2012 MOC 20417 In dieser Schulung lernen Sie neue Features und Funktionalitäten in Windows Server 2012 in Bezug auf das Management, die Netzwerkinfrastruktur,
Apache & Virtual Hosts & mod_rewrite
Apache & Virtual Hosts & mod_rewrite Jonathan Brewer Network Startup Resource Center [email protected] These materials are licensed under the Creative Commons Attribution-NonCommercial 4.0 International license
J2EE-Application Server
J2EE-Application Server (inkl windows-8) Installation-Guide F:\_Daten\Hochschule Zurich\Web-Technologie\ApplicationServerSetUp.docx Last Update: 19.3.2014, Walter Rothlin Seite 1 Table of Contents Java
Monitoring Software Services registered with science.canarie.ca
Monitoring Software Services registered with.canarie.ca Introduction The software registry at.canarie.ca monitors each of the contributed services via the API defined in Research Service Support for the
Diese Liste wird präsentiert von. Netheweb.de
Diese Liste wird präsentiert von Netheweb.de Die Liste enthält 1000 Do-Follow Blogs, die zum Linkbuilding genutzt werden können, es kann sein, dass verkürzte URL s nicht korrekt weiter geleitet werden.
Brauche neues Power Supply
email vom DB-Server: Brauche neues Power Supply HW-Überwachung mit Enterprise Manager und Oracle Auto Service Request Elke Freymann Datacenter Architect Systems Sales Consulting Oracle Deutschland Copyright
Open Text Social Media. Actual Status, Strategy and Roadmap
Open Text Social Media Actual Status, Strategy and Roadmap Lars Onasch (Product Marketing) Bernfried Howe (Product Management) Martin Schwanke (Global Service) February 23, 2010 Slide 1 Copyright Open
Jetzt können Sie den Befehl 'nsradmin' auch für diverse Check-Operationen verwenden!
NetWorker - Allgemein Tip 642, Seite 1/6 Jetzt können Sie den Befehl 'nsradmin' auch für diverse Check-Operationen verwenden! Seit einiger Zeit (NetWorker 8.2.0?) können Sie mit dem Befehl nsradmin -C
Symantec Backup Exec (TM) 13 Installation Log
v Symantec Backup Exec (TM) 13 Installation Log 05-26-2010,15:07:12 : Explorer exists. Launching UI. 05-26-2010,15:07:14 : Executing managed _Setup: 05-26-2010,15:07:14 : C:\Dokumente und orms_multilingual_dvd\be\winnt\install\be32\install\_setup.exe
INTELLIGENT REQUEST TRACKING AND NETWORK MONITORING SYSTEM
Sarhad J. Agric. Vol.29, No.1, 2013 INTELLIGENT REQUEST TRACKING AND NETWORK MONITORING SYSTEM MUHAMMAD INAYATULLAH BABAR 1, SYED WAQAR SHAH 1, SAHAR NOOR 2, RAFIULLAH KHAN 1, RIFAQAT ZAHEER 1, MUHAMMAD
Nagios. Contents. From SME Server. Maintainer
Nagios From SME Server Languages: English Not reviewed: This howto or contrib has not been reviewed and might contain code that could harm your installation. For more information on the review process
Dokumentation über die Übernahme von. "GS-R-3" (The Management System for Facilities and Activities) "Sicherheitskriterien für Kernkraftwerke"
Dokumentation über die Übernahme von "GS-R-3" () in die "Sicherheitskriterien für Kernkraftwerke" REVISION D APRIL 2009 1. INTRODUCTION BACKGROUND 1.1 This Safety Requirements publication defines the requirements
Safe Harbor Statement
Logging & Debugging von M(obile)AF Applikationen Jürgen Menge Sales Consultant Oracle Deutschland B.V. & Co. KG Safe Harbor Statement The following is intended to outline our general product direction.
Citrix NetScaler Best Practices. Claudio Mascaro Senior Systems Engineer BCD-Sintrag AG
Citrix NetScaler Best Practices Claudio Mascaro Senior Systems Engineer BCD-Sintrag AG Agenda Deployment Initial Konfiguration Load Balancing NS Wizards, Unified GW, AAA Feature SSL 2 FTP SQL NetScaler
Asterisk und Mediagateways
Asterisk und Mediagateways Amoocon 2009 Sven Neukirchner [email protected] Was ist ein Mediagateway? Ein Mediagateway wandelt digitale Sprach-, Audio- oder Bildinformationen, von einem
PASS Deutschland e.v. Regionalgruppe Köln/Bonn/Düsseldorf
PASS Deutschland e.v. Regionalgruppe Köln/Bonn/Düsseldorf dbwarden Agenda Vorstellung Überblick Installation Settings Jobs Health Report IT Leiter / zertifizierter IT Projektleiter IT Team mit 7 Mitarbeitern
LEARNING AGREEMENT FOR STUDIES
LEARNING AGREEMENT FOR STUDIES The Student Last name (s) First name (s) Date of birth Nationality 1 Sex [M/F] Academic year 20../20.. Study cycle EQF level 6 Subject area, Code Phone E-mail 0421 The Sending
Evaluation of standard monitoring tools(including log analysis) for control systems at Cern
Evaluation of standard monitoring tools(including log analysis) for control systems at Cern August 2013 Author: Vlad Vintila Supervisor(s): Fernando Varela Rodriguez CERN openlab Summer Student Report
Search Engines Chapter 2 Architecture. 14.4.2011 Felix Naumann
Search Engines Chapter 2 Architecture 14.4.2011 Felix Naumann Overview 2 Basic Building Blocks Indexing Text Acquisition Text Transformation Index Creation Querying User Interaction Ranking Evaluation
GroundWork Monitor Open Source 5.1.0 Installation Guide
GroundWork Monitor Open Source 5.1 is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version
Software / FileMaker / Plug-Ins Mailit 6 for FileMaker 10-13
Software / FileMaker / Plug-Ins Mailit 6 for FileMaker 10-13 Seite 1 / 5 Mailit 6 for FileMaker 10-13 The Ultimate Email Plug-In Integrate full email capability into your FileMaker 10-13 solutions with
Red Hat Enterprise Linux OpenStack Platform 7 Logging, Monitoring, and Troubleshooting Guide
Red Hat Enterprise Linux OpenStack Platform 7 Logging, Monitoring, and Troubleshooting Guide An In-Depth Guide to OpenStack Logging, Monitoring, and Troubleshooting OpenStack Team Red Hat Enterprise Linux
How To Monitor Your Computer With Nagiostee.Org (Nagios)
Host and Service Monitoring at SLAC Alf Wachsmann Stanford Linear Accelerator Center [email protected] DESY Zeuthen, May 17, 2005 Monitoring at SLAC Alf Wachsmann 1 Monitoring at SLAC: Does not really
Exchange Synchronization AX 2012
Exchange Synchronization AX 2012 Autor... Pascal Gubler Dokument... Exchange Synchronization 2012 (EN) Erstellungsdatum... 25. September 2012 Version... 2 / 17.06.2013 Content 1 PRODUKTBESCHREIBUNG...
Embedded Software Development and Test in 2011 using a mini- HIL approach
Primoz Alic, isystem, Slovenia Erol Simsek, isystem, Munich Embedded Software Development and Test in 2011 using a mini- HIL approach Kurzfassung Dieser Artikel beschreibt den grundsätzlichen Aufbau des
MONITORING EMC GREENPLUM DCA WITH NAGIOS
White Paper MONITORING EMC GREENPLUM DCA WITH NAGIOS EMC Greenplum Data Computing Appliance, EMC DCA Nagios Plug-In, Monitor DCA hardware components Monitor DCA database and Hadoop services View full DCA
Microsoft Nano Server «Tuva» Rinon Belegu
1 Microsoft Nano Server «Tuva» Rinon Belegu Partner: 2 Agenda Begrüssung Vorstellung Referent Content F&A Weiterführende Kurse 3 Vorstellung Referent Rinon Belegu Microsoft Certified Trainer (AWS Technical
MATCHDAY 1 7-9 September 2014
MATCHDAY 1 7-9 September 2014 7 September Sunday 18:00 Group D 7 September Sunday 20:45 Group D 7 September Sunday 20:45 Group D 7 September Sunday 18:00 Group F 7 September Sunday 20:45 Group F 7 September
Installation. Installation centreon + nagios3 1 25 mai 2009 1.1 LISTE DES PRE-REQUIS. Nagios/centreon. 1.1.1 Paquets divers. 1.1.
Installation 1.1 LISTE DES PRE-REQUIS 1.1.1 Paquets divers tofrodos mailx lsb-release build-essential 1.1.2 Compilateurs : 1.1.3 Serveur Web et php5 apache2 php5 php5-mysql php-pear php5-ldap php5-snmp
repositor.io Simple Repository Management Jürgen Brunk München, 03/2015
repositor.io Simple Repository Management Jürgen Brunk München, 03/2015 Agenda 1. Was ist repositor.io? 2. Praxis 3. Installation 4. Configuration 5. Command Line Options 6. CentOS Repository 7. Debian
estos uacsta Server for SIP Phones 4.0.7.3683
estos uacsta Server for SIP Phones 4.0.7.3683 1 estos uacsta Server for SIP Phones... 4 2 Voraussetzungen... 5 2.1 Installation und Betrieb... 5 2.2 Communication with Telephones... 5 2.3 Communications
A.2 broker/query.html. A.3 broker/brokerquery.pl.cgi. A.4 broker/lib/brokerquery.cf. A.5 broker/idx2html.cgi. A.2 broker/query.
A.2 broker/query.html 7 $SOIF{ Archive =~ s /TR/Data/ $ftpurl/ if $SOIF{ Archive ; $SOIF{ Document =~ s /TR/Data/ $ftpurl/ if $SOIF{ Document ; while (($k, $v) = each %SOIF) { &soif print_item($k, $v);
Cloud Performance Group 1. Cloud@Night Event. 14. Januar 2016 / Matthias Gessenay ([email protected])
1 Cloud@Night Event 14. Januar 2016 / Matthias Gessenay ([email protected]) 2 Agenda SharePoint ABC Project Server ABC What s new in O365 4 SharePoint 2016 ABC A Access App-Support
AfNOG-2013. Monitoring of IP Services. Ayitey Bulley Material generously borrowed from the NSRC NME course
AfNOG-2013 Monitoring of IP Services Ayitey Bulley Material generously borrowed from the NSRC NME course Introduction To monitor or monitoring generally means to be aware of the state of a system. To observe
Monitoring of computer networks and applications using Nagios
Monitoring of computer networks and applications using Nagios MIROSLAV MATÝSEK, MILAN ADÁMEK, MAREK KUBALČÍK, MIROSLAV MIHOK Tomas Bata University in Zlín Department of Computer and Communication System
Multipurpsoe Business Partner Certificates Guideline for the Business Partner
Multipurpsoe Business Partner Certificates Guideline for the Business Partner 15.05.2013 Guideline for the Business Partner, V1.3 Document Status Document details Siemens Topic Project name Document type
Configuring and Administering Hyper-V in Windows Server 2012 MOC 55021
Configuring and Administering Hyper-V in Windows Server 2012 MOC 55021 In dem Kurs MOC 55021 Configuring and Administering Hyper-V in Windows Server 2012 lernen Sie die Konfiguration und Administration
WEB2CS INSTALLATION GUIDE
WEB2CS INSTALLATION GUIDE FOR XANDMAIL XandMail 32, rue de Cambrai 75019 PARIS - FRANCE Tel : +33 (0)1 40 388 700 - http://www.xandmail.com TABLE OF CONTENTS 1. INSTALLING WEB2CS 3 1.1. RETRIEVING THE
Copyright 2013, Oracle and/or its affiliates. All rights reserved. Customer Presentation
1 SAM, NFS und SMB Dirk Nitschke Principal Sales Consultant SAM-QFS 5.3.2 / 5.3.9 Unterstützung neuer Geräte LTO-5, LTO-6, T10000-C, SL150, ACSLS 8 Unterstützung neuer Betriebssystemversionen Solaris 11,
www.infoplc.net Application example AC500 Scalable PLC for Individual Automation Communication between AC500 and KNX network abb
Application example www.infoplc.net AC500 Scalable PLC for Individual Automation Communication between AC500 and KNX network abb Content www.infoplc.net 1 Disclaimer...2 1.1 For customers domiciled outside
GPFS Management und Monitoring mit dem IBM Platform Cluster Manager (PCM) Standard Edition
GPFS Management und Monitoring mit dem IBM Platform Cluster Manager (PCM) Standard Edition 1 Agenda Platform Cluster Manager SE Wo? Wann? Warum? Im Detail Architektur und Support PCM und GPFS Deployment:
APPLICATION SETUP DOCUMENT
APPLICATION SETUP DOCUMENT HeiTek Software Development GmbH Add-Ons Oracle Application Change Layout in Receiving Personalisation Example Ref Prepared by HeiTek Software Development GmbH Author: : Georg
Mit einem Auge auf den mathema/schen Horizont: Was der Lehrer braucht für die Zukun= seiner Schüler
Mit einem Auge auf den mathema/schen Horizont: Was der Lehrer braucht für die Zukun= seiner Schüler Deborah Löwenberg Ball und Hyman Bass University of Michigan U.S.A. 43. Jahrestagung für DidakEk der
SPECTRUM IM. SSA 3.0: Service AND Event/Alert Umbrella DACHSUG 2011
SPECTRUM IM Infrastructure Events and Alerts Overview Event Management and Correlation Event Rules Condition Correlation Event Procedures Event Integration South-Bound-GW Event Notifications SSA 3.0: Service
Management, Logging and Troubleshooting
CHAPTER 15 This chapter describes the following: SNMP Configuration System Logging SNMP Configuration Cisco NAC Guest Server supports management applications monitoring the system over SNMP (Simple Network
