auto eth0 iface eth0 inet dhcp ## Or configure a static IP auto eth0 iface eth0 inet static address 192.168.1.104 gateway 192.168.1.1 netmask 255.255.255.0 network 192.168.1.1 broadcast 192.168.1.255
First You need to make sure you have install Ubuntu 16.04 LAMP Server atau http://www.ubuntugeek.com/step-by-step-ubuntu-16-04-xenial-xerus-lamp-server-setup.html
and once you have that follow the next steps. Switch to root user and run the all the commands
sudo su --Install the following packages
apt-get install build-essential php7.0-gd wget libgd2-xpm-dev libapache2-mod-php7.0 apache2-utils daemon unzipYou need to create nagios user,nagcmd group and add the nagios,apache user to the part of nagcmd group
useradd nagiosDownload Nagios core DIY Source from here
groupadd nagcmd
usermod -a -G nagcmd nagios
usermod -a -G nagcmd www-data
https://www.nagios.org/downloads/nagios-core/
cd /tmp/Compile and install Nagios Using the following commands
wget https://assets.nagios.com/downloads/nagioscore/releases/nagios-4.1.1.tar.gz
tar -zxvf /tmp/nagios-4.1.1.tar.gz
cd /tmp/nagios-4.1.1/
./configure –with-nagios-group=nagios –with-command-group=nagcmd
jika gagal ketik:
sudo ./configure --with-command-group=nagcmd
make allConfigure Nagios web Interface
make install
make install-init
make install-config
make install-commandmode
make install-webconf
You may get the following error
root@ubuntu:/tmp/nagios-4.1.1# make install-webconfThe above error message is due to that nagios is trying to create the nagios.conf file inside the /etc/httpd.conf/directory. But, in Ubuntu systems the nagios.conf file should be placed in /etc/apache2/sites-enabled/directory
/usr/bin/install -c -m 644 sample-config/httpd.conf /etc/httpd/conf.d/nagios.conf
/usr/bin/install: cannot create regular file ‘/etc/httpd/conf.d/nagios.conf': No such file or directory
Makefile:296: recipe for target ‘install-webconf' failed
make: *** [install-webconf] Error 1
Run the following command instead of make install-webconf
sudo /usr/bin/install -c -m 644 sample-config/httpd.conf /etc/apache2/sites-enabled/nagios.conf
make install-exfoliation
Create nagiosadmin account using the following command
htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadminEnable CGI module and restart the apache2 server
a2enmod cgi
service apache2 restartInstall Nagios Plugins
Download and install nagios plugins using the following commands
cd /tmpCompile and install nagios plugins using the following commands
wget http://www.nagios-plugins.org/download/nagios-plugins-2.1.1.tar.gz
tar -zxvf /tmp/nagios-plugins-2.1.1.tar.gz
cd /tmp/nagios-plugins-2.1.1/
./configure --with-nagios-user=nagios --with-nagios-group=nagiosStart Nagios
make
make install
Verify the sample nagios configuration files using the following command
/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfgOutput
Nagios Core 4.1.1
Copyright (c) 2009-present Nagios Core Development Team and Community Contributors
Copyright (c) 1999-2009 Ethan Galstad
Last Modified: 08-19-2015
License: GPL
Website: https://www.nagios.org
Reading configuration data...
Read main config file okay...
Read object config files okay...
Running pre-flight check on configuration data...
Checking objects...
Checked 8 services.
Checked 1 hosts.
Checked 1 host groups.
Checked 0 service groups.
Checked 1 contacts.
Checked 1 contact groups.
Checked 24 commands.
Checked 5 time periods.
Checked 0 host escalations.
Checked 0 service escalations.
Checking for circular paths...
Checked 1 hosts
Checked 0 service dependencies
Checked 0 host dependencies
Checked 5 timeperiods
Checking global event handlers...
Checking obsessive compulsive processor commands...
Checking misc settings...
Total Warnings: 0
Total Errors: 0
Things look okay -- No serious problems were detected during the pre-flight check
If you are not seeing any errors the start nagios using the following
/etc/init.d/nagios startWhen i try to start the nagios i got the following error and found out there is an issue with nagios init script
[....] Starting nagios (via systemctl): nagios.serviceFailed to start nagios.service: Unit nagios.service failed to load: No such file or directory. failed!Solution to nagios init script
Copy /etc/init.d/skeleton to /etc/init.d/nagios using the following command
cp /etc/init.d/skeleton /etc/init.d/nagiosNow edit the nagios file
vi nagiosadd the following lines
DESC="Nagios"Save and exit the file
NAME=nagios
DAEMON=/usr/local/nagios/bin/$NAME
DAEMON_ARGS="-d /usr/local/nagios/etc/nagios.cfg"
PIDFILE=/usr/local/nagios/var/$NAME.lock
Finally you need to change the permissions of the file
chmod +x /etc/init.d/nagiosYou can start the nagios using the following command
/etc/init.d/nagios start

Tidak ada komentar:
Posting Komentar