FreeBSD 7.0上nagios如何安装

75次阅读
没有评论

共计 3685 个字符,预计需要花费 10 分钟才能阅读完成。

这篇文章主要介绍了 FreeBSD 7.0 上 nagios 如何安装,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让丸趣 TV 小编带着大家一起了解一下。

FreeBSD 7.0 上的 nagios 安装的具体过程如下:

OS:FreeBSD 7.0

到 http://www.nagios.org/download/ 下载所需的软件包

1.nagios-3.1.2.tar.gz

2.nagios-plugins-1.4.13.tar.gz

系统需求:

1. Apache

2. GCC 编译器

3. GD 库与开发库

以上软件安装好后,开始安装 nagios。

1. 解压缩

#tar zxvf nagios-2.5.tar.gz

2. 建立运行 nagios 的用户:

#pw adduser nagios

#passwd nagios

3. 创建一个用户组名为 nagcmd 用于从 Web 接口执行外部命令。将 nagios 用户和 apache 用户都加到这个组中。必须确定 web 服务器以哪个用户运行的,通常为:apache。我的服务器配置是 www。

#grep“^User”/usr/local/apache2/conf/httpd.conf

#pw groupadd nagcmd

#pw usermod www -G nagcmd

#pw usermod nagios -G nagcmd

运行 Nagios 配置脚本并使用先前开设的用户及用户组

# ./configure ndash;prefix=/usr/local/nagios ndash;with-gd-lib=/usr/local/lib ndash;with-gd-inc=/usr/local/include ndash;with-command-group=nagcmd

*** Configuration summary for nagios 3.1.2 06-23-2009 ***:

General Options:

mdash; mdash; mdash; mdash; mdash; mdash; mdash; mdash;-

Nagios executable: nagios

Nagios user/group: nagios,nagios

Command user/group: nagios,nagios

Embedded Perl: no

Event Broker: yes

Install ${prefix}: /usr/local/nagios

Lock file: ${prefix}/var/nagios.lock

Check result directory: ${prefix}/var/spool/checkresults

Init directory: /usr/local/etc/rc.d

Apache conf.d directory: /etc/httpd/conf.d

Mail program: /usr/bin/mail

Host OS: freebsd7.0

Web Interface Options:

mdash; mdash; mdash; mdash; mdash; mdash; mdash; mdash;

HTML URL: http://localhost/nagios/

CGI URL: http://localhost/nagios/cgi-bin/

Traceroute (used by WAP): /usr/sbin/traceroute

Review the options above for accuracy. If they look okay,

type lsquo;make all rsquo; to compile the main program and CGIs.

编译 Nagios 程序包源码

#make all

安装二进制运行程序、初始化脚本、配置文件样本并设置运行目录权限

#make install

运行 make install-init 前请检查 /usr/loca/etc/rc.d 的目录权限。我的服务器是 root:wheel. 而 Makefile 中试 root:root.

修改 Makefile

INIT_DIR=/usr/local/etc/rc.d

INIT_OPTS=-o root -g root

改为:

INIT_DIR=/usr/local/etc/rc.d

INIT_OPTS=-o root -g wheel

然后运行 make install-init。

#make install-init

#make install-commandmode

#make install-config

配置 WEB 接口

安装 Nagios 的 WEB 配置文件到 Apache 的 conf 目录下。Makefile 文件中 http 的路径是 /etc/httpd/conf.d。修改为自己 apache 的 conf 路径。

#make install-webconf

到此 nagios 核心程序安装完成!

客户化配置

样例配置文件默认安装在这个目录下 /usr/local/nagios/etc,这些样例文件可以配置 Nagios 使之正常运行,只需要做一个简单的修改 hellip;

用你擅长的编辑器软件来编辑这个 /usr/local/nagios/etc/objects/contacts.cfg 配置文件,更改 email 地址 nagiosadmin 的联系人定义信息中的 EMail 信息为你的 EMail 信息以接收报警内容。

#vi /usr/local/nagios/etc/objects/contacts.cfg

配置 WEB 接口

配置 apache 的 BASIC 认证,创建一个 nagiosadmin 的用户用于 Nagios 的 WEB 接口登录。记下你所设置的登录口令,一会儿你会用到它。

#htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin

然后修改 apache 的配置文件

#vi /usr/local/apache/conf/httpd.conf

添加如下内容:

ScriptAlias /nagios/cgi-bin /usr/local/nagios/sbin

Options ExecCGI

AllowOverride None

Order allow,deny

Allow from all

AuthName“Nagios Access”

AuthType Basic

AuthUserFile /usr/local/nagios/etc/htpasswd.users

Require valid-user

Alias /nagios /usr/local/nagios/share

Options None

AllowOverride None

Order allow,deny

Allow from all

AuthName“Nagios Access”

AuthType Basic

AuthUserFile /usr/local/nagios/etc/htpasswd.users

Require valid-user

修改完毕,保存文件,并重启 apache:

#/usr/local/apahce/bin/apachectl restart

重启 Apache 服务以使设置生效。

编译并安装 Nagios 插件

展开 Nagios 插件的源程序包

#tar xzf nagios-plugins-1.4.13.tar.gz

#cd nagios-plugins-1.4.11

#./configure ndash;with-nagios-user=nagios ndash;with-nagios-group=nagios ndash;prefix=/usr/local/nagios-plugins

#make

#make install

安装完成以后在 /usr/local/nagios-plugins-plugins 会产生一个 libexec 的目录,将该目录全部移动到 /usr/local/nagios 目录下即可。

#mv /usr/local/nagios-plugins-plugins/libexec/ /usr/local/nagios/

启动 Nagios

验证 Nagios 的样例配置文件

#/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg

出现:

Total Warnings: 0

Total Errors: 0

Things look okay ndash; No serious problems were detected during the pre-flight check

配置文件没有问题。

启动 nagios

#/usr/lcoal/etc/rc.d/nagios start

登录 WEB 接口

你现在可以从 WEB 方式来接入 Nagios 的 WEB 接口了,你需要在提示下输入你的用户名 (nagiosadmin) 和口令,你刚刚设置的,这里用系统默认安装的浏览器,用下面这个超链接

http://localhost/nagios/ 如图:

感谢你能够认真阅读完这篇文章,希望丸趣 TV 小编分享的“FreeBSD 7.0 上 nagios 如何安装”这篇文章对大家有帮助,同时也希望大家多多支持丸趣 TV,关注丸趣 TV 行业资讯频道,更多相关知识等着你来学习!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-08-25发表,共计3685字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)