您好,登錄后才能下訂單哦!
2012.07.05
系統環境:Centos5.5(64位)+開發工具安裝
所需軟件:
cacti-0.8.7e.tar.gz
cacti-plugin-0.8.7e-PA-v2.6.zip
rrdtool-1.4.5.tar.gz
nagios-3.2.0.tar.gz
nagios-plugins-1.4.14.tar.gz
nagios-cn-3.2.0.tar.bz2
php-json-ext-1.2.1.tar.bz2
ndoutils-1.4b9.tar.gz
npc-2.0.4.tar.gz
下載地址:http://download.csdn.net/detail/w361031315/4412965
參考:下載后壓縮包中的文檔(Nagios+cacti+npc經典配置詳解)
提示:此版本軟件兼容性通過,其他版可能有問題。
安裝所需環境:
[root@localhost ~]# yum -y install php* mysql* httpd net-snmp-utils
[root@localhost ~]# chkconfig mysqld on
[root@localhost ~]# chkconfig httpd on
[root@localhost ~]# service httpd start
[root@localhost ~]# service mysqld start
更改mysql密碼
[root@localhost ~]# mysqladmin -uroot password "123456"
安裝rrdtool
[root@localhost soft]# ls
cacti-0.8.7e.tar.gz nagios-cn-3.2.0.tar.bz2 npc-2.0.4.tar.gz
cacti-plugin-0.8.7e-PA-v2.6.zip nagios-plugins-1.4.14.tar.gz php-json-ext-1.2.1.tar.bz2
nagios-3.2.0.tar.gz ndoutils-1.4b9.tar.gz rrdtool-1.4.5.tar.gz
[root@localhost rrdtool-1.4.5]# ./configure --prefix=/usr/local ; make ; make install
(如果報錯:configure: error: Please fix the library issues listed above and try again.
[root@localhost rrdtool-1.4.5]# yum -y install pango*后在安裝)
Cacti安裝
[root@localhost soft]# tar zxvf cacti-0.8.7e.tar.gz
[root@localhost soft]# mv cacti-0.8.7e /var/www/html/cacti
[root@localhost soft]# chown -R root.root /var/www/html/cacti/
添加個用來讀寫監測數據的用戶賬號:runct,調整子目錄rra/,log/的屬主權限
[root@localhost soft]# chown -R runct.runct /var/www/html/cacti/rra /var/www/html/cacti/log
導入cacti.sql,建立數據庫、表結構
[root@localhost soft]# mysql -uroot -p123456
mysql> create database cacti default character set utf8;
Query OK, 1 row affected (0.00 sec)
mysql> grant all on cacti.* to cactiuser@localhost identified by 'pwd123';
Query OK, 0 rows affected (0.00 sec)
mysql> quit
Bye
[root@localhost soft]# mysql -ucactiuser -ppwd123 cacti < /var/www/html/cacti/cacti.sql
調整配置文件
[root@localhost soft]# vi /var/www/html/cacti/include/config.php
30 $database_password = "pwd123";
cacti-plugins 插件安裝
[root@localhost soft]# unzip cacti-plugin-0.8.7e-PA-v2.6.zip
[root@localhost soft]# cd /var/www/html/cacti/
[root@localhost cacti]# patch -p1 -N < /soft/cacti-plugin-arch/cacti-plugin-0.8.7e-PA-v2.6.diff
[root@localhost cacti]# mysql -ucactiuser -ppwd123 cacti < /soft/cacti-plugin-arch/pa.sql
[root@localhost cacti]# vi include/global.php
56 $config['url_path'] = '/cacti/';
建立任務調度
[root@localhost cacti]# su runct
[runct@localhost cacti]$ crontab -e
[runct@localhost cacti]$ crontab -l
*/5 * * * * /usr/bin/php /var/www/html/cacti/poller.php &> /dev/null
[runct@localhost cacti]$ exit
Cacti 的 web 初始化
在瀏覽器輸入 http://your ip address/cacti/ 登陸 cacti
Next
Next
Finish
帳號密碼:admin,admin
第一次要改密碼 這里改為pwd123
如果不出圖
修改settings-general rrdtool1.2.X 保存
好了,有圖了
Nagios安裝
準備帳號,目錄
[root@localhost cacti]# cd /soft/
[root@localhost soft]# useradd nagios
[root@localhost soft]# mkdir /usr/local/nagios
[root@localhost soft]# chown -R nagios.nagios /usr/local/nagios/
開始安裝
[root@localhost soft]# tar zxvf nagios-3.2.0.tar.gz
[root@localhost soft]# cd nagios-3.2.0
[root@localhost nagios-3.2.0]# ./configure --prefix=/usr/local/nagios ;make all;make install;make install-init;make install-commandmode;make install-config;make install-webconf
修改nagios頁面
[root@localhost nagios-3.2.0]# cp /etc/httpd/conf.d/nagios.conf /var/www/html/
生成 nagios 頁面訪問賬號
[root@localhost nagios-3.2.0]# touch /usr/local/nagios/etc/htpasswd.users
[root@localhost nagios-3.2.0]# htpasswd -c /usr/local/nagios/etc/htpasswd.users admin
New password:
Re-type new password:
htpasswd: password verification error(2次輸的不一樣,在執行一次命令)
帳號:admin 密碼:123
Nagios 的 CGI 配置文件
[root@localhost nagios-3.2.0]# vi /usr/local/nagios/etc/cgi.cfg(如下圖)
[root@localhost nagios-3.2.0]# grep -v ^# /usr/local/nagios/etc/cgi.cfg |grep -v ^$
main_config_file=/usr/local/nagios/etc/nagios.cfg
physical_html_path=/usr/local/nagios/share
url_html_path=/nagios
show_context_help=0
use_pending_states=1
use_authentication=1
use_ssl_authentication=0
authorized_for_system_information=admin
authorized_for_configuration_information=admin
authorized_for_system_commands=admin
authorized_for_all_services=admin
authorized_for_all_hosts=admin
authorized_for_all_service_commands=admin
authorized_for_all_host_commands=admin
default_statusmap_layout=5
default_statuswrl_layout=4
ping_syntax=/bin/ping -n -U -c 5 $HOSTADDRESS$
refresh_rate=90
escape_html_tags=1
action_url_target=_blank
notes_url_target=_blank
lock_author_names=1
測試 nagios 是否成功
[root@localhost nagios-3.2.0]# service nagios start
Starting nagios: done.
[root@localhost nagios-3.2.0]# chkconfig nagios on
[root@localhost nagios-3.2.0]# service httpd restart
漢化(選做)
[root@localhost nagios-3.2.0]# cd /soft/
[root@localhost soft]# tar jxvf nagios-cn-3.2.0.tar.bz2
[root@localhost soft]# cd nagios-cn-3.2.0
[root@localhost nagios-cn-3.2.0]# ./configure;make all;make install
[root@localhost nagios-cn-3.2.0]# service httpd restart
nagios-plugins 插件安裝
[root@localhost nagios-cn-3.2.0]# cd /soft/
[root@localhost soft]# tar zxvf nagios-plugins-1.4.14.tar.gz
[root@localhost soft]# cd nagios-plugins-1.4.14
[root@localhost nagios-plugins-1.4.14]# ./configure --prefix=/usr/local/nagios ;make ;make install
插件裝好,監控的localhost正常了
PHP 支持 JSON 擴展
[root@localhost nagios-plugins-1.4.14]# cd /soft/
[root@localhost soft]# tar jxvf php-json-ext-1.2.1.tar.bz2
[root@localhost soft]# cd php-json-ext-1.2.1
[root@localhost php-json-ext-1.2.1]# phpize
Configuring for:
PHP Api Version: 20041225
Zend Module Api No: 20050922
Zend Extension Api No: 220051025
[root@localhost php-json-ext-1.2.1]# ./configure ;make ;make install
[root@localhost php-json-ext-1.2.1]# vi /etc/php.d/json.ini(新建)
extension=json.so
[root@localhost php-json-ext-1.2.1]# vi /var/www/html/test.php
<?php
phpinfo();
phpinfo(INFO_GENERAL);
phpinfo(1);
?>
[root@localhost php-json-ext-1.2.1]# service httpd restart
[root@localhost php-json-ext-1.2.1]# service httpd restart
查看網頁,出來json成功
ndoutils 安裝
[root@localhost php-json-ext-1.2.1]# cd /soft/
[root@localhost soft]# tar zxvf ndoutils-1.4b9.tar.gz
[root@localhost ndoutils-1.4b9]#./configure --with-mysql-inc=/usr/include/mysql --with-mysql-lib=/usr/lib/mysql --enable-mysql --with-ndo2db-user=nagios --with-ndo2db-group=nagios
[root@localhost ndoutils-1.4b9]# make (不make install)
[root@localhost ndoutils-1.4b9]# cd src/
[root@localhost src]# cp ndomod-3x.o ndo2db-3x log2ndo file2sock /usr/bin
[root@localhost src]# cd ../config
[root@localhost config]# cp ndo2db.cfg-sample ndo2db.cfg
[root@localhost config]# cp ndomod.cfg-sample ndomod.cfg
[root@localhost config]# cp ndo2db.cfg ndomod.cfg /usr/local/nagios/etc/
[root@localhost config]# cd /usr/local/nagios/etc/
[root@localhost etc]# vi ndo2db.cfg
102 db_name=cacti
111 db_prefix=npc_
120 db_user=cactiuser
121 db_pass=pwd123
163 debug_level=1
[root@localhost etc]# vi /usr/local/nagios/etc/nagios.cfg
247 # Uncomment the line below you're running Nagios 3.x
248 broker_module=/usr/bin/ndomod-3x.o config_file=/usr/local/nagios/etc/ndomod.cfg
NPC安裝
[root@localhost etc]# cd /soft/
[root@localhost soft]# tar zxvf npc-2.0.4.tar.gz
[root@localhost soft]# mv npc/ /var/www/html/cacti/plugins/
[root@localhost soft]# vi /var/www/html/cacti/include/global.php
46 $plugins[] = 'npc';
NPC 界面設置
登陸cacti
找到UserManagement
進去把勾plugin Management勾上,保存
點 settings下面的plugin management ,在點INSTALL,然后enable
裝好了
返回(console)菜單欄,點擊 configuration-------settings----NPC,修改一下三個參數(如下圖,cmd填寫上就行,命令會自動生成)
點擊NPC為OFF
啟動ndo2db
[root@localhost soft]# ndo2db-3x -c /usr/local/nagios/etc/ndo2db.cfg
[root@localhost soft]# service nagios restart
[root@localhost soft]# cat /var/log/messages
Jul 5 17:30:27 localhost nagios: ndomod: Could not open data sink! I'll keep trying, but some output may get lost...
Jul 5 17:30:27 localhost nagios: Event broker module '/usr/bin/ndomod-3x.o' initialized successfully.
Jul 5 17:30:27 localhost nagios: Finished daemonizing... (New PID=12009)
第一行報錯:是因為沒給ndo2db文件權限
[root@localhost soft]#chown nagios.nagios /usr/local/nagios/etc/ndo*
[root@localhost soft]# service nagios restart
[root@localhost soft]# cat /var/log/messages
Jul 5 17:37:46 localhost ndo2db-3x: mysql_error: 'Unknown column 'long_output' in 'field list''
這次是,數據庫有問題
[root@localhost soft]# mysql -ucactiuser -ppwd123
mysql> use cacti;
alter table npc_eventhandlers add long_output TEXT NOT NULL default '' after output;
alter table npc_hostchecks add long_output TEXT NOT NULL default '' after output;
alter table npc_hoststatus add long_output TEXT NOT NULL default '' after output;
alter table npc_notifications add long_output TEXT NOT NULL default '' after output;
alter table npc_servicechecks add long_output TEXT NOT NULL default '' after output;
alter table npc_servicestatus add long_output TEXT NOT NULL default '' after output;
alter table npc_statehistory add long_output TEXT NOT NULL default '' after output;
alter table npc_systemcommands add long_output TEXT NOT NULL default '' after output;
執行這些語句,在重啟nagios
[root@localhost soft]# service nagios restart
[root@localhost soft]# cat /var/log/messages
Jul 5 17:40:52 localhost nagios: ndomod: Successfully connected to data sink. 0 queued items to flush.
Jul 5 17:40:52 localhost nagios: Event broker module '/usr/bin/ndomod-3x.o' initialized successfully.
Jul 5 17:40:52 localhost nagios: Finished daemonizing... (New PID=12381)
Ndo2db啟動成功,現在就可以看到NPC的數據了。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。