skip to main |
skip to sidebar
Install & Configure Prerequisites
- Install Apache
yum install httpd php gcc glibc glibc-common gd gd-devel
- Configure Apache to start on boot
/sbin/chkconfig --levels 345 httpd on
- Configure iptables to allow Apache traffic
/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
/etc/init.d/iptables save
/etc/init.d/iptables restart
Install & Configure Nagios
- Install Nagios & Plugins
yum install nagios nagios-plugins nagios-plugins-setuid
- Create the default Nagios web access user & set a password
htpasswd -c /etc/nagios/htpasswd.users nagiosadmin
- Verify default config files
nagios -v /etc/nagios/nagios.cfg
Verify Install
- Try logging into your new Nagios installation by going to
http://servername/nagios/
and logging in with nagiosadmin
and the password you set.
Notes
- Not all plugins will run without additional packages being installed (Ex.
check_mysql
won't run without installing mysql
).