您好,登錄后才能下訂單哦!
目錄索引
一、Nagios簡介
1.1 主要功能
二、Nagios工作原理
2.1. 四種監控狀態
三、實驗環境之前期準備
3.1.掛載光盤并對yum進行配置
3.2.安裝網絡配置工具
3.3.進行網絡配置
3.4.進行測試
四、實驗環境之LAMP平臺構建
4.1.構建LAMP平臺
4.2.建立測試文件
4.3.開啟httpd服務并開機自啟
4.4.測試
五、實驗目標
六、Nagios安裝
5.1.下載Nagios及插件
5.2.Nagios準備
5.3. 安裝Nagios
七、Nagios配置
6.1.創建Nagios的web程序配置文件
6.2.創建Nagios-web程序用戶
八、編譯安裝Nagios插件
7.1.nagios的目錄結構
7.2.編譯安裝Nagios-plugins
7.3.將Nagios添加至系統服務并設置開機自啟
7.4.檢查配置文件的語法是否正確
九、測試
Nagios是一款開源的電腦系統和網絡監視工具,能有效監控Windows、Linux和Unix的主機狀態,交換機路由器等網絡設置,打印機等。在系統或服務狀態異常時發出郵件或短信報警第一時間通知網站運維人員,在狀態恢復后發出正常的郵件或短信通知。
Nagios原名為NetSaint,由Ethan Galstad開發并維護至今。NAGIOS是一個縮寫形式: "Nagios Ain't Gonna Insist On Sainthood" Sainthood 翻譯為圣徒,而"Agios"是"saint"的希臘表示方法。Nagios被開發在Linux下使用,但在Unix下也工作得非常好。
網絡服務監控(SMTP、POP3、HTTP、NNTP、ICMP、SNMP、FTP、SSH)
主機資源監控(CPU load、disk usage、system logs),也包括Windows主機(使用NSClient++ plugin)
可以指定自己編寫的Plugin通過網絡收集數據來監控任何情況(溫度、警告……)
可以通過配置Nagios遠程執行插件遠程執行腳本
遠程監控支持SSH或SSL加通道方式進行監控
簡單的plugin設計允許用戶很容易的開發自己需要的檢查服務,支持很多開發語言(shell scripts、C++、Perl、ruby、Python、PHP、C#等)
包含很多圖形化數據Plugins(Nagiosgraph、Nagiosgrapher、PNP4Nagios等)
可并行服務檢查
能夠定義網絡主機的層次,允許逐級檢查,就是從父主機開始向下檢查
當服務或主機出現問題時發出通告,可通過email, pager, sms 或任意用戶自定義的plugin進行通知
能夠自定義事件處理機制重新激活出問題的服務或主機
自動日志循環
支持冗余監控
包括Web界面可以查看當前網絡狀態,通知,問題歷史,日志文件等
Nagios的功能是監控服務和主機,但是他自身并不包括這部分功能,所有的監控、檢測功能都是通過各種插件來完成的。
啟動Nagios后,它會周期性的自動調用插件去檢測服務器狀態,同時Nagios會維持一個隊列,所有插件返回來的狀態信息都進入隊列,Nagios每次都從隊首開始讀取信息,并進行處理后,把狀態結果通過web顯示出來。
Nagios提供了許多插件,利用這些插件可以方便的監控很多服務狀態。安裝完成后,在nagios主目錄下的/libexec里放有nagios自帶的可以使用的所有插件,如,check_disk是檢查磁盤空間的插件,check_load是檢查CPU負載的,等等。每一個插件可以通過運行./check_xxx –h 來查看其使用方法和功能。
Nagios可以識別4種狀態返回信息,即 0(OK)表示狀態正常/綠色、1(WARNING)表示出現警告/×××、2(CRITICAL)表示出現非常嚴重的錯誤/紅色、3(UNKNOWN)表示未知錯誤/深×××。Nagios根據插件返回來的值,來判斷監控對象的狀態,并通過web顯示出來,以供管理員及時發現故障。
再說報警功能,如果監控系統發現問題不能報警那就沒有意義了,所以報警也是nagios很重要的功能之一。但是,同樣的,Nagios 自身也沒有報警部分的代碼,甚至沒有插件,而是交給用戶或者其他相關開源項目組去完成的。
Nagios 安裝,是指基本平臺,也就是Nagios軟件包的安裝。它是監控體系的框架,也是所有監控的基礎。
[root@a ~]# yum -y install httpd gcc glibc glibc-common gdgd-develphpphp-mysql mysqlmysql-servermysql-developenssl-devel
[root@a ~]# vi /var/www/html/index.php
<?php
phpinfo();
?>
$link=mysql_connect('localhost'@'root'S'')
[root@a ~]# service httpd start
[root@a ~]# chkconfig httpd on
[root@a nagios]# groupadd -r nagcmd
[root@a nagios]# useradd-m-Gnagcmdnagios
[root@a nagios]# passwdnagios
更改用戶 nagios 的密碼。
新的密碼:
重新輸入新的密碼:
passwd:所有的身份驗證令牌已經成功更新。
[root@a nagios]# usermod -G nagcmd apache
[root@a ~]# tar -xvzf nagios-3.4.4.tar.gz -C /usr/src
[root@a ~]# cd /usr/src/nagios/
[root@a nagios]# ./configure--sysconfdir=/etc/nagios --enable-event-broker --with-command-group=nagcmd
[root@a nagios]# make all
[root@a nagios]# make install
[root@a nagios]# make install-init
[root@a nagios]# make install-commandmode
[root@a nagios]# make install-config
在httpd的配置文件目錄(conf.d)中創建創建Nagios的web程序配置文件
[root@a nagios]# make install-webconf
/usr/bin/install -c -m 644 sample-config/httpd.conf /etc/httpd/conf.d/nagios.conf
*** Nagios/Apache conf file installed ***
修改apache的配置文件
[root@a nagios]# vi /etc/httpd/conf/httpd.conf
Include conf.d/nagios.conf
創建一個登錄Nagios web程序的用戶,這個用戶帳號在以后web登錄nagios認證時所用:
[root@a nagios]# htpasswd-c/etc/nagios/htpasswd.usersnagiosadmin
以上過程配置結束后要重新啟動httpd
bin | Nagios執行程序所在目錄,nagios文件即為主程序 |
etc | Nagios配置文件位置,初始安裝完后,只有幾個*.cfg-sample文件 |
sbin | Nagios Cgi文件所在目錄,也就是執行外部命令所需未找到索引項。文件所在的目錄 |
Share | Nagios網頁文件所在的目錄 |
libexec | 插件所在的目錄 |
Var | Nagios日志文件等文件所在的目錄 |
var/archives | Empty directory for the archived logs |
var/rw | Empty directory for the external command file |
nagios的所有監控工作都是通過插件完成的,因此,在啟動nagios之前還需要為其安裝官方提供的插件
[root@a ~]# tar -xvzf nagios-plugins-1.4.16.tar.gz -C /usr/src
[root@a ~]# cd /usr/src/nagios-plugins-1.4.16/
[root@a nagios-plugins-1.4.16]# ./configure --with-nagios-user=nagios --with-nagios-group=nagios --with-mysql=/usr/local/mysql
[root@a nagios-plugins-1.4.16]# make && make install
[root@a nagios-plugins-1.4.16]# chkconfig --add nagios
[root@a nagios-plugins-1.4.16]# chkconfig nagios on
[root@a var]# service nagios restart
[root@a nagios-plugins-1.4.16]# /usr/local/nagios/bin/nagios –v /etc/nagios/nagios.cfg
Nagios Core 3.4.4
Copyright (c) 2009-2011 Nagios Core Development Team and Community Contributors
Copyright (c) 1999-2009 Ethan Galstad
Last Modified: 01-12-2013
License: GPL
Website: http://www.nagios.org
Reading configuration data...
Read main config file okay...
Processing object config file '/etc/nagios/objects/commands.cfg'...
Processing object config file '/etc/nagios/objects/contacts.cfg'...
Processing object config file '/etc/nagios/objects/timeperiods.cfg'...
Processing object config file '/etc/nagios/objects/templates.cfg'...
Processing object config file '/etc/nagios/objects/localhost.cfg'...
Read object config files okay...
Running pre-flight check on configuration data...
Checking services...
Checked 8 services.
Checking hosts...
Checked 1 hosts.
Checking host groups...
Checked 1 host groups.
Checking service groups...
Checked 0 service groups.
Checking contacts...
Checked 1 contacts.
Checking contact groups...
Checked 1 contact groups.
Checking service escalations...
Checked 0 service escalations.
Checking service dependencies...
Checked 0 service dependencies.
Checking host escalations...
Checked 0 host escalations.
Checking host dependencies...
Checked 0 host dependencies.
Checking commands...
Checked 24 commands.
Checking time periods...
Checked 5 time periods.
Checking for circular paths between hosts...
Checking for circular host and service dependencies...
Checking global event handlers...
Checking obsessive compulsive processor commands...
Checking misc settings...
Total Warnings: 0
Total Errors:0
7.5.關閉selinux 及防火墻
[root@a nagios-plugins-1.4.16]# setenfoce 0
[root@a nagios-plugins-1.4.16]# service iptables stop
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。