91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Cacti+Nagios完全攻略(二)nagios配置安裝

發布時間:2020-06-06 15:52:50 來源:網絡 閱讀:832 作者:yeyu8011 欄目:移動開發
Nagios簡介
 
      Nagios是一個用來監視系統和網絡的開源應用軟件,它通常運行于一個主服務器上,這個服務器運行 Liunx 或 Unix 操作系統。Nagios 利用其眾多的插件實現對本機和遠端服務的監控,當被監控對象出現異常,Nagios 就會及時給管理人員告警。它是一個基于TCP/IP協議的軟件包,包含有nagios主程序和它的各個插件,配置非常靈活,可以監視的項目很多,也可以通過自定義 shell 腳本進行監控服務,非常適合各類企業的網絡應用。
       Nagios功能非常強大,它可以監控服務和主機,但是他自身并不包括這部分功能的代碼,所有的監控、檢測功能都是有插件來完成的。再說報警功能,如果監控系統發現問題不能報警那就沒有意義了,所以報警也是nagios很重要的功能之一。但是,同樣的,nagios自身也沒有報警部分的代碼,甚至沒有插件,而是交給用戶或者其他相關開源項目組去完成。nagios安裝,是指基本平臺,也就是nagios軟件包的安裝。它是監控體系的框架,也是所有監控的基礎。
       打開nagios官方的文檔,會發現nagios基本上沒有什么依賴包,只要求系統是linux或者其他nagios支持的系統。不過如果你沒有安裝apache(http服務),那么你就沒有那么直觀的界面來查看監控信息了,所以apache姑且算是一個前提條件。
   
Nagios 系統的特點主要有下面幾點:
  • 監控主機資源和網絡服務
  •  
  • 允許用戶通過設計實現簡單的插件來監控自己特定的服務
  •  
  • 當被監控對象出現問題時,會及時通知管理人員
  •  
  • 事先定義事件處理程序,當對象出現問題時自動調用對應的處理程序
  •  
  • 通過 web 頁面來監視對象狀態,警告提示和日志文件。
 
需要安裝軟件列表
 
nagios-3.2.0.tar.gz
php-devel-5.1.6-39.el5_8.rpm
php-json-ext-1.2.1.tar.bz2
 
 

開啟系統sendmail服務
 在nagios監控服務器上開啟sendmail服務的主要作用是讓nagios在檢測到故障時可以發送報警郵件,目前幾乎所有的linux發行版本都默認自帶了sendmail服務,所以,在安裝系統時只需開啟sendmail服務即可,并且不需要在sendmail上做任何配置。

 

Nagios安裝
1、 創建nagios用戶和組
[root@cacti-qmail nagios-3.2.0]# useradd nagios
[root@cacti-qmail nagios-3.2.0]#mkdir /usr/local/nagios
[root@cacti-qmail nagios-3.2.0]#chown nagios.nagios /usr/local/nagios
 
2、安裝nagios
[root@cacti-qmail soft]# wget http://ncu.dl.sourceforge.net/project/nagios/nagios-3.x/nagios-3.2.1/nagios-3.2.0.tar.gz 
[root@cacti-qmail soft]# tar -zxvf nagios-3.2.0.tar.gz 
[root@cacti-qmail soft]#cd nagios-3.2.0
[root@cacti-qmail nagios-3.2.0]# ./configure --prefix=/usr/local/nagios
[root@cacti-qmail nagios-3.2.0]#make all
 
輸入make all 得到下面具體信息
 
==============================================================
 
*** Compile finished ***
 
If the main program and CGIs compiled without any errors, you
can continue with installing Nagios as follows (type 'make'
without any arguments for a list of all possible options):
 
 make install
     - This installs the main program, CGIs, and HTML files
   
    使用make install來安裝主程序,CGI和HTML文件
 
 make install-init
     - This installs the init script in /etc/rc.d/init.d
 
    使用make install-init在/etc/rc.d/init.d安裝啟動腳本
 
 make install-commandmode
     - This installs and configures permissions on the
       directory for holding the external command file
 
    使用make install-commandmode來配置目錄權限
 
 make install-config
     - This installs *SAMPLE* config files in /usr/local/nagios/etc
       You'll have to modify these sample files before you can
       use Nagios. Read the HTML documentation for more info
       on doing this. Pay particular attention to the docs on
       object configuration files, as they determine what/how
       things get monitored!
    使用make install-commandmode來安裝示例配置文件,安裝的路徑是/usr/local/nagios/etc
 
 make install-webconf
     - This installs the Apache config file for the Nagios
       web interface
   使用make install-webconf來安裝apache的配置文件
 
=================================================================
 
make install出現以下錯誤是因為沒有創建nagios用戶及組并且賦權
=================================================================
cd ./base && make install
make[1]: Entering directory `/home/yahoon/nagios/nagios-2.9/base'
make install-basic
make[2]: Entering directory `/home/yahoon/nagios/nagios-2.9/base'
/usr/bin/install -c -m 775 -o nagios -g nagios -d /usr/local/nagios/bin
/usr/bin/install: invalid user `nagios' 非法用戶nagios
make[2]: *** [install-basic] Error 1
make[2]: Leaving directory `/home/yahoon/nagios/nagios-2.9/base'
make[1]: *** [install] Error 2
make[1]: Leaving directory `/home/yahoon/nagios/nagios-2.9/base'
make: *** [install] Error 2
=====================================================================
 
 
[root@cacti-qmail nagios-3.2.0]#make all
[root@cacti-qmail nagios-3.2.0]#make install && make install-init && make install-commandmode && make install-config && make install-webconf
驗證程序是否被正確安裝
  切換目錄到安裝路徑(這里是/usr/local/nagios),看是否存在 etc、bin、 sbin、 share、 var這五個目錄,如果存在則可以表明程序被正確的安裝到系統了。后表是五個目錄功能的簡要說明:
bin Nagios執行程序所在目錄,nagios文件即為主程序
etc Nagios配置文件位置,初始安裝完后,只有幾個*.cfg-sample文件
sbin Nagios Cgi文件所在目錄,也就是執行外部命令所需文件所在的目錄
Share Nagios網頁文件所在的目錄
Var Nagios日志文件、spid 等文件所在的目錄
修改nagios頁面文件
[root@cacti-qmail nagios-3.2.1]# more /etc/httpd/conf/nagios.conf
# SAMPLE CONFIG SNIPPETS FOR APACHE WEB SERVER
# Last Modified: 11-26-2005
#
# This file contains examples of entries that need
# to be incorporated into your Apache web server
# configuration file. Customize the paths, etc. as
# needed to fit your system.
 
ScriptAlias /nagios/cgi-bin "/usr/local/nagios/sbin"
 
<Directory "/usr/local/nagios/sbin">
# SSLRequireSSL
   Options ExecCGI
   AllowOverride None
   Order allow,deny
   Allow from all
# Order deny,allow
# Deny from all
# Allow from 127.0.0.1
   AuthName "Nagios Access"
   AuthType Basic
   AuthUserFile /usr/local/nagios/etc/htpasswd.users
   Require valid-user
</Directory>
 
Alias /nagios "/usr/local/nagios/share"
 
<Directory "/usr/local/nagios/share">
# SSLRequireSSL
   Options None
   AllowOverride None
   Order allow,deny
   Allow from all
# Order deny,allow
# Deny from all
# Allow from 127.0.0.1
   AuthName "Nagios Access"
   AuthType Basic
  AuthUserFile /usr/local/nagios/etc/htpasswd.users
   Require valid-user
</Directory>
基本上這個文件可以直接使用,所以直接復制過去
[root@cacti-qmail nagios-3.2.1]# cp /etc/httpd/conf/nagios.conf  /var/www/html/
生成nagios頁面訪問賬號
根據這個配置文件中指定的AuthUserFile項,它指定的是通過Apache訪問Nagios的合法用戶的帳戶名單庫文件,需要使用htpasswd命令對這個名單庫進行用戶的添加。而默認安裝環境下在/usr/local/nagios/etc/目錄下是沒有 htpasswd.uses這個文件的,所以需要手動添加。請特別注意,用root身份建立的htpasswd.user文件的權限問題,應該在建立該文件完畢后立即更改為nagios用戶nagios組的所有權
 
[root@cacti-qmail ~]# touch /usr/local/nagios/etc/htpasswd.users
 
建立Nagios的網頁訪問用戶帳戶文件(這里必須要與Nagios網頁配置文件當中AuthUserFile指定的路徑文件名一致)
 
[root@cacti-qmail ~]# /usr/bin/htpasswd -c /usr/local/nagios/etc/htpasswd.users  killer
New password:
Re-type new password:
Adding password for user killer
 
[root@cacti-qmail nagios-3.2.0]# cat /usr/local/nagios/etc/htpasswd.user                         
killer:HbfEis6w0gKqI
 
修改nagios主配置文件 
[root@cacti-qmail nagios-3.2.0]# vi /usr/local/nagios/etc/nagios.cfg
log_file=/usr/local/nagios/var/nagios.log( 默認無nagios.log文件,需要手動創建)
command_check_interval=15s
#command_check_interval=-1
設定命令檢查的時間間隔,將原來值-1的項注釋掉,啟用原來備用值為15s(15秒)。這項的時間間隔值請按實際需求情況設定。
[root@cacti-qmail nagios-3.2.0]# touch /usr/local/nagios/var/nagios.log   
[root@cacti-qmail nagios-3.2.0]# chown nagios.nagios /usr/local/nagios/var/nagios.log    
NagiosCGI配置文件                      
[root@cacti-qmail nagios-3.2.0]# vi /usr/local/nagios/etc/cgi.cfg
use_authentication=1 (默認是啟動身份驗證)
設定啟用身份驗證
authorized_for_system_information=killer
設定系統信息的授權用戶
authorized_for_configuration_information=killer
設定配置信息的授權用戶
authorized_for_system_commands=killer
設定系統命令的授權用戶
authorized_for_all_services=killer
設定全部監測服務的授權用戶。
authorized_for_all_hosts=killer
設定全部被監測主機的授權用戶
authorized_for_all_service_commands=killer
設定全部監測服務命令的授權用
authorized_for_all_host_commands=killer
設定全部主機命令的授權用戶

apache關于nagios 的配置

 

將apache的運行用戶加到nagios組里面,從httpd.conf中過濾出當前的apache運行用戶
grep "User" /etc/httpd/conf/httpd.conf
usermod -G nagios apache  
或者 直接把User和Group 都改為nagios
User  nagios
Group nagios
 
vim /etc/httpd/conf/httpd.conf
 然后找到
DirectoryIndex index.html index.html.var
修改為
DirectoryIndex index.html index.php
接著增加如下內容:
AddType application/x-httpd-php .php
測試nagios是否成功
設置nagios為開機啟動
[root@cacti-qmail ~]#chkconfig nagios on
[root@cacti-qmail ~]# service nagios start
測試nagios是否成功啟動
在IE輸入 http://192.168.100.1/nagios/ 跳出以下窗口

Cacti+Nagios完全攻略(二)nagios配置安裝 Cacti+Nagios完全攻略(二)nagios配置安裝

 
 
向AI問一下細節

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

AI

那坡县| 阿拉善盟| 仲巴县| 京山县| 梨树县| 蚌埠市| 从化市| 桃江县| 玉龙| 彝良县| 盐边县| 偃师市| 新野县| 容城县| 祥云县| 商城县| 博乐市| 衡阳县| 沧州市| 安化县| 墨竹工卡县| 长宁区| 延安市| 台东市| 建瓯市| 且末县| 河曲县| 淳安县| 曲阜市| 攀枝花市| 石泉县| 湟源县| 仁怀市| 道孚县| 新邵县| 监利县| 大余县| 瓦房店市| 英超| 尼玛县| 诏安县|