這篇文章將為大家詳細(xì)講解有關(guān)nagios如何安裝,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)公司是一家專注于成都網(wǎng)站制作、成都網(wǎng)站建設(shè)與策劃設(shè)計(jì),吉安網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)十余年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:吉安等地區(qū)。吉安做網(wǎng)站價(jià)格咨詢:18982081108
nagios的功能:使用web網(wǎng)頁進(jìn)行監(jiān)控其他服務(wù)器狀態(tài)的工具
組成:
nagios Core ,即核心模塊,不做具體的監(jiān)視工作
Plugins, 與核心模塊進(jìn)行組合,進(jìn)而實(shí)現(xiàn)對(duì)某個(gè)具體的對(duì)象監(jiān)控
工作對(duì)象:
1、主機(jī),交換機(jī),路由器,虛擬機(jī)
2、服務(wù)/資源
3、聯(lián)系人
4、時(shí)段
5、命令
安裝:
# yum -y install httpd gcc glibc glibc-common gd gd-devel php php-MySQL mysql mysql-server mysql-devel
創(chuàng)建組和用戶
# groupadd -r nagcmd
# useradd -G nagcmd -r -s /sbin/nologin nagios
# echo 'redhat' | passwd --stdin nagios &> /dev/null
# usermod -a -G nagcmd apache
# tar zxf nagios-3.3.1.tar.gz
# cd nagios
編譯安裝:
# ./configure --sysconfdir=/etc/nagios --with-command-group=nagcmd --enable-event-broker --prefix=/usr/local/nagios
# make all
# make install
# make install-init
# make install-commandmode
# make install-config
# make install-webconf
修改 nagios 的默認(rèn)聯(lián)系人;(如果監(jiān)控的服務(wù)器壞掉了要找的人)
# vim /etc/nagios/objects/contacts.cfg
email nagios@localhost
創(chuàng)建 nagios 監(jiān)控服務(wù)的 web 接口的管理員;
# htpasswd -c /etc/nagios/htpasswd.users nagiosadmin
# cat /etc/httpd/conf.d/nagios.conf
# tar axf nagios-plugins-1.4.15.tar.gz
# cd nagios-plugins-1.4.15
編譯安裝選項(xiàng):
# ./configure --with-nagios-user=nagios --with-nagios-group=nagios --with-mysql
# make && make install
# chown -R nagios.nagcmd /etc/nagios
# chown -R apache.nagcmd /etc/httpd
# chown -R nagios.nagcmd /usr/local/nagios
# chkconfig --add nagios
# chkconfig nagios on
# service nagios start
#service httpd start
關(guān)閉setenforce和context值:
# setenforce 0
# chcon -R -t httpd_sys_content_t /usr/local/nagios/sbin
# chcon -R -t httpd_sys_content_t /usr/local/nagios/share
關(guān)于“nagios如何安裝”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。