Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Chapter 2. Nagios Core installation and configuration
As a storage administrator, you can install Nagios Core by downloading the Nagios Core source code; then, configuring, making and installing it on the node that will run Nagios Core instance.
2.1. Installing and configuring the Nagios Core server from source Link kopierenLink in die Zwischenablage kopiert!
There is not a Red Hat Enterprise Linux package for the Nagios Core software, so the Nagios Core software must be compiled from source.
Prerequisites
- Access to OpenSSL.
- Internet access.
Procedure
Install the prerequisites:
[user@nagios]# yum install -y httpd php php-cli gcc glibc glibc-common gd gd-devel net-snmp openssl openssl-devel wget unzipOpen port
80forhttpd:[user@nagios]# firewall-cmd --zone=public --add-port=80/tcp [user@nagios]# firewall-cmd --zone=public --add-port=80/tcp --permanentCreate a user and group for Nagios Core:
[user@nagios]# useradd nagios [user@nagios]# passwd nagios [user@nagios]# groupadd nagcmd [user@nagios]# usermod -a -G nagcmd nagios [user@nagios]# usermod -a -G nagcmd apacheDownload the latest version of Nagios Core and Plug-ins:
[user@nagios]# wget --inet4-only https://assets.nagios.com/downloads/nagioscore/releases/nagios-4.3.1.tar.gz [user@nagios]# wget --inet4-only http://www.nagios-plugins.org/download/nagios-plugins-2.2.1.tar.gz [user@nagios]# tar zxf nagios-4.3.1.tar.gz [user@nagios]# tar zxf nagios-plugins-2.2.1.tar.gz [user@nagios]# cd nagios-4.3.1Run
./configure:[user@nagios]# ./configure --with-command-group=nagcmdCompile the Nagios Core source code:
[user@nagios]# make allInstall Nagios source code:
[user@nagios]# make install [user@nagios]# make install-init [user@nagios]# make install-config [user@nagios]# make install-commandmode [user@nagios]# make install-webconfCopy the event handlers and change their ownership:
[user@nagios]# cp -R contrib/eventhandlers/ /usr/local/nagios/libexec/ [user@nagios]# chown -R nagios:nagios /usr/local/nagios/libexec/eventhandlersRun the pre-flight check:
[user@nagios]# /usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfgMake and install the Nagios Core plug-ins:
[user@nagios]# cd ../nagios-plugins-2.2.1 [user@nagios]# ./configure --with-nagios-user=nagios --with-nagios-group=nagios [user@nagios]# make [user@nagios]# make installCreate a user for the Nagios Core user interface:
[user@nagios]$ sudo htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadminImportantIf adding a user other than
nagiosadmin, ensure the/usr/local/nagios/etc/cgi.cfgfile gets updated with the username too.Also modify the
/usr/local/nagios/etc/objects/contacts.cfgfile with the user name, full name and email address as needed.
2.2. Starting the Nagios Core service Link kopierenLink in die Zwischenablage kopiert!
Start the Nagios Core service to monitor the Red Hat Ceph Storage cluster health.
Prerequisites
- Root-level access to the Nagios Core service.
Procedure
Add Nagios Core as a service and enable it:
[user@nagios]# chkconfig --add nagios [user@nagios]# chkconfig --level 35 nagios onStart the Nagios Core daemon and Apache:
[user@nagios]# systemctl start nagios [user@nagios]# systemctl enable httpd [user@nagios]# systemctl start httpd
2.3. Logging into the Nagios Core server Link kopierenLink in die Zwischenablage kopiert!
Log in to the Nagios Core server to view the health status of the Red Hat Ceph Storage cluster.
Prerequisites
- User name and password for the Nagios web interface.
Procedure
With Nagios up and running, log in to the web user interface:
http://IP_ADDRESS/nagiosNagios Core will prompt for a user name and password.
- Input the login and password of the default Nagios Core user.