亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

發布時間:2020-08-10 22:16:20 來源:網絡 閱讀:1028 作者:乜波 欄目:移動開發

按照網上一篇文檔實踐搭建了nagios監控系統, 學習交流,原文地址:http://zhumeng8337797.blog.163.com/blog/static/1007689142011101551756386/

一、安裝CentOS6.0 64位系統

二、執行
1.yum -y install httpd gettext mysql mysql-server mysql-devel php php-mysql php-pear
2.yum install php-mysql mysql perl mysql-server perl-DBI perl-DBD-MySQL httpd gcc glibc glibc-common gd gd-devel php
三、下載安裝包
wget http://prdownloads.sourceforge.net/sourceforge/nagiosplug/nagios-plugins-1.4.15.tar.gz (現在最新版本的插件) 
wget http://sourceforge.net/projects/nagios-cn/files/sourcecode/zh_CN%203.2.3/nagios-cn-3.2.3.tar.bz2/download
   四、用戶和組的準備
useradd nagios
passwd nagios 
usermod -s /sbin/nologin nagios
uroupadd nagcmd
usermod -G nagcmd nagios
usermod -G nagcmd apache 
   五、開始安裝程序
解壓:tar -jxvf nagios-cn-3.2.3.tar.bz2
編譯安裝:cd nagios-cn-3.2.3
yum -y install gcc automake autoconf libtool make
./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios --with-command-group=nagcmd                                                                                    make all
make install
make install-init
make install-commandmode
make install-config
make install-webconf
安裝插件:
tar zxvf nagios-plugins-1.4.15.tar.gz
cd nagios-plugins-1.4.15
./configure --with-nagios-user=nagios --with-nagios-group=nagios
make
make insall
添加訪問頁面用戶nagiosadmin及密碼,這里要記住此密碼不要忘記了.(nagios  123456)
htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin
設置相關服務開機啟動
[root@localhost nagios-cn-3.2.3]#service nagios start 
[root@localhost nagios-cn-3.2.3]#chkconfig --add nagios
[root@localhost nagios-cn-3.2.3]# chkconfig nagios on
[root@localhost nagios-cn-3.2.3]# chkconfig httpd on
[root@localhost nagios-cn-3.2.3]# chkconfig mysqld on
檢查配置文件是否正確
/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

沒有錯誤,表示通過。
現在可以通過http://IP/nagios訪問控制臺
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

六.安裝nrpe插件
nrpe_plugins指標采集程序主要是用來分析nrpe客戶端的plugin腳本采集性能指 標數據。目前實現的有cpumemorydiskbuffersingleprocessoraclesybase等方面的性能指標的分析這個插件需要分別安裝在主控端和被控端上,這個插件需要openssl的支持,沒有就直接在線安裝一下(yum install openssl-devel)所以還需在nagios主機和被控端安裝,感覺挺麻煩,沒辦法它需要咱們就跟著做哈.]
wget http://prdownloads.sourceforge.net/sourceforge/nagios/nrpe-2.12.tar.gz
tar zxvf nrpe-2.12.tar.gz
cd nrpe-2.12
yum install openssl-devel  (提示已經安裝)
./configure
make && make install
完成以后沒有出錯就可以看到以下生成的文件了
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

接下來按如下操作
mkdir /usr/local/nagios/etc
cp sample-config/nrpe.cfg /usr/local/nagios/etc/
cp init-script /etc/init.d/nrpe
chmod +x /etc/init.d/nrpe 
啟動nrpe :service nrpe start
七、配置PNP
PNP是一個基于phpperl,用rrdtoolnagios采集的數據繪制圖表的工具,所以安裝pnp之前必須先安裝php perl  and rrdtool這里用yum直接來安裝rrdtool,單獨下載安裝有很多依存關系,挺麻煩.]
yum install rrdtool
wget http://sourceforge.net/projects/pnp4nagios/files/PNP-0.6/pnp4nagios-0.6.15.tar.gz/download
tar zxvf pnp4nagios-0.6.15.tar.gz 
cd pnp4nagios-0.6.15
./configure 
報錯:
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

執行:yum install perl-Time-HiRes
繼續編譯
make all
make install
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

根據提示
make install-webconf
make install-config
make install-init
然后把相關后綴帶sample文件變更成無sample后綴
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

[root@localhost pnp4nagios-0.6.15]# cd /usr/local/pnp4nagios/etc/
[root@localhost etc]# mv misccommands.cfg-sample misccommands.cfg
[root@localhost etc]# mv nagios.cfg-sample nagios.cfg
[root@localhost etc]# mv rra.cfg-sample rra.cfg
[root@localhost etc]# cd pages/
[root@localhost pages]# mv web_traffic.cfg-sample web_traffic.cfg
[root@localhost pages]# cd ../check_commands/
[root@localhost check_commands]# mv check_all_local_disks.cfg-sample check_all_local_disks.cfg
[root@localhost check_commands]# mv check_nrpe.cfg-sample check_nrpe.cfg
[root@localhost check_commands]# mv check_nwstat.cfg-sample check_nwstat.cfg
配置Nagios來啟用PNP
cd /usr/local/nagios/etc
vi nagios.cfg
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

pnp4nagios有很多種工作模式,這里我們選用同步模式,想選其它模式可以看說明都有詳細配置教程(不同模式配置不同
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

這里我們按說明的設定方法來做
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

[這里先把pnp4nagios執行數據收集的文件拷貝到nagioslibexec下,方便統一命令的執行路徑.]
cp /usr/local/pnp4nagios/libexec/process_perfdata.pl /usr/local/nagios/libexec/
然后在commands.cfg里面加入如下(這里是同步模式設定方法
cd /usr/local/nagios/etc/objects
vi commands.cfg
添加內容并注釋掉原來的
#process-host-perfdata' command definition 
define command{ 
        command_name    process-host-perfdata 
        command_line    $USER1$/process_perfdata.pl -d HOSTPERFDATA 
        }
#process-service-perfdata' command definition 
define command{ 
        command_name    process-service-perfdata 
        command_line    $USER1$/process_perfdata.pl 
        } 
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

然后添加小太陽模版,鑲嵌在nagios頁面上
[這里有兩種查看圖的方法,第一種方法是你當太陽的圖標的時候會在新窗口中打開圖形查看,第二種方法是你只需要把鼠標移動到太陽圖標上面就會自動彈出圖形出來,以下兩種方法你可以根據自己喜好選其中一種即可]
第一種方法在templates.cfg里面加入如下
vi templates.cfg
添加內容:
define host { 
   name       host-pnp 
   action_url /pnp4nagios/index.php/graph?host=$HOSTNAME$&srv=_HOST_ 
   register   0 
}
define service { 
   name       srv-pnp 
   action_url /pnp4nagios/index.php/graph?host=$HOSTNAME$&srv=$SERVICEDESC$ 
   register   0 
為目標主機圖標旁邊添加一個小太陽標記
vi localhost.cfg
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

為相關服務添加一個小太陽標記
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

訪問http://IP/pnp3nagios,有一項出錯
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

yum install php* -y
重啟后解決

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

 
按要求重命名install.php
cd /usr/local/pnp4nagios/share/
mv install.php install.php.bak
刷新網頁:
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

重啟nagios:service nagios restart
ok,到此總算配置好了PNP
八.Nagios WEB管理工具叫NagiosQL注:還有同樣一個Nagios WEB管理工具叫Nconf)
下載安裝包:wget http://sourceforge.net/projects/nagiosql/files/nagiosql/NagiosQL%203.1.1/nagiosql_311.tar.gz/download
NagiosQL是一個WEB管理工具,只要把其放到下Apache即可。因為這里它要和Nagios整合到一起,為了方便管理,把其放在Nagios目錄下
tar zxvf nagiosql_311.tar.gz 
mv nagiosql /usr/local/nagios/
建立nagiosQL導出nagios配置文件的目錄,并修改權限
建目錄和改權限
mkdir -p /etc/nagiosql/{hosts,services,backup/{,hosts,services},import}
chown -R apache:nagios /etc/nagiosql/
chmod -R 755 /etc/nagiosql
chmod 777 /usr/local/nagios/nagiosql/config
Nagios相關文件權限的設定
chown nagios:apache /usr/local/nagios/etc
chown nagios:apache /usr/local/nagios/etc/{nagios.cfg,cgi.cfg}
chown nagios:apache /usr/local/nagios/etc/*
chmod 664 /usr/local/nagios/etc/{nagios.cfg,cgi.cfg}
chmod 775 /usr/local/nagios/etc
設定nagios二進制文件的權限,以便其能夠通過Web程序執行
chown nagios:apache /usr/local/nagios/bin/nagios
chmod 750 /usr/local/nagios/bin/nagios
chown -R apache.nagios /usr/local/nagios/var/spool/
chown nagios:apache /usr/local/nagios/var/rw/nagios.cmd
chmod 660 /usr/local/nagios/var/rw/nagios.cmd
apache添加nagiosQL虛擬目錄
vi /etc/httpd/conf.d/nagios.conf 
#add virture directory for nagiossql
Alias /nagiosQL "/usr/local/nagios/nagiosql"
<Directory "/usr/local/nagios/nagiosql">
# SSLRequireSSL
Options None
AllowOverride None
Order allow,deny
Allow from all
</Directory>
重新加載httpd服務和啟動mysqld服務
service httpd reload
service mysqld restart 
建立nagiosql安裝文件
touch /usr/local/nagios/nagiosql/install/ENABLE_INSTALLER
訪問http://ip/nagiosQL進行安裝
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

開始安裝,測試環境通過,下一步
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

輸入mysql 密碼,設置nagiosQL默認登錄密碼
刪除安裝目錄,這里使用改權限:chmod 000 /usr/local/nagios/nagiosql/install
完成安裝
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

管理-域-localhost---修改
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

按如圖修改
 
 
CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版
工具-導入數據 右邊會列出一些配置文件,選擇導入即可。
導入只是把配置文件內容導入到Mysql數據庫,而使用其配置文件時,是一個個cfg文件,所以下面要進行寫入過程
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

工具-nagios控制-寫入檢測數據-寫入其他數據
CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版
檢查配置文件成功

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

重新啟動nagios
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

寫入之后就可以看到相應的cfg文件了,查看寫入是否成功,由下面的輸出可以看出寫入是成功滴.
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

修改nagios的配置文件,將原有以cfg_file開頭項全部注釋掉,加入上面新寫入的配置文件
vi /usr/local/nagios/etc/nagios.cfg 
注釋掉
 

CentOS 6.0+Nagios中文版+PNP+Nagios Web管理工具nagiosQL中文版

加入新的配置文件路徑
cfg_dir=/etc/nagiosql/hosts/ 
cfg_dir=/etc/nagiosql/services/ 
cfg_file=/etc/nagiosql/commands.cfg 
cfg_file=/etc/nagiosql/contactgroups.cfg 
cfg_file=/etc/nagiosql/contacts.cfg 
cfg_file=/etc/nagiosql/contacttemplates.cfg 
cfg_file=/etc/nagiosql/hostdependencies.cfg 
cfg_file=/etc/nagiosql/hostescalations.cfg 
cfg_file=/etc/nagiosql/hostextinfo.cfg 
cfg_file=/etc/nagiosql/hostgroups.cfg 
cfg_file=/etc/nagiosql/hosttemplates.cfg 
cfg_file=/etc/nagiosql/servicedependencies.cfg 
cfg_file=/etc/nagiosql/serviceescalations.cfg 
cfg_file=/etc/nagiosql/serviceextinfo.cfg 
cfg_file=/etc/nagiosql/servicegroups.cfg
cfg_file=/etc/nagiosql/servicetemplates.cfg 
cfg_file=/etc/nagiosql/timeperiods.cfg
檢查nagios的配置文件是否有問題,然后生重啟nagios服務,至此整個搭建過程終于完成了
 
后面續上添加監控主機。
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

彭阳县| 常山县| 灵武市| 永康市| 南和县| 通榆县| 蓬安县| 年辖:市辖区| 岳普湖县| 陵水| 精河县| 万源市| 许昌县| 洪泽县| 高雄市| 正阳县| 澎湖县| 连江县| 钟山县| 洮南市| 遂溪县| 华宁县| 密云县| 肃宁县| 赤壁市| 自贡市| 外汇| 睢宁县| 上杭县| 长沙市| 涪陵区| 海口市| 宜良县| 红安县| 石城县| 平顺县| 洛川县| 黑水县| 宜丰县| 临西县| 黄石市|