LinuxQuestions.org
Did you know LQ has a Linux Hardware Compatibility List?
Go Back   LinuxQuestions.org > Forums > Enterprise Linux Forums > Linux - Enterprise
User Name
Password
Linux - Enterprise This forum is for all items relating to using Linux in the Enterprise.

Notices

Reply
 
LinkBack Search this Thread
Old 10-19-2009, 01:51 PM   #1
phani.junk1
LQ Newbie
 
Registered: Oct 2009
Posts: 10

Rep: Reputation: 1
Help in regarding Monitoring tools for RHEL 5.1 ?


Hi frds

I am looking to learn monitoring tools for monitoring purpose as i am using RHEL 5.1 as my operating system. I am not sure where to start from as i havent got a clue in regarding them. can some 1 help me in getting the software for the tools such as cacti, hp open view or any tools for installation and guide me in right direction to learn these tools in an easy and effective way.

Thanks in advance
 
Old 10-19-2009, 02:20 PM   #2
MensaWater
Guru
 
Registered: May 2005
Location: Atlanta Georgia USA
Distribution: Redhat (RHEL), CentOS, Fedora, Debian, FreeBSD, HP-UX, Solaris, SCO
Posts: 5,181

Rep: Reputation: 468Reputation: 468Reputation: 468Reputation: 468Reputation: 468
hp open view costs money - you'd get it from HP.

Haven't used Cacti.

A free one many people use is Nagios (monitoring server) and NRPE (plugin for the servers to be monitored).

This Quick Start guide was written for Fedora but I was able to use it as a guide for my RHEL 5.3 install.
http://nagios.sourceforge.net/docs/3...rt-fedora.html

At the end it talks about monitoring UNIX/Linux systems and that will lead you to the NRPE stuff.
 
Old 10-19-2009, 10:21 PM   #3
jmc1987
Member
 
Registered: Sep 2009
Location: Oklahoma
Distribution: Debian, CentOS, windows xp
Posts: 708

Rep: Reputation: 87
Nagios is one of the best server monitors. It won't be easy at first to understand it capabibilies but in time it will be one of your most powerful resources.
 
Old 10-21-2009, 06:09 AM   #4
phani.junk1
LQ Newbie
 
Registered: Oct 2009
Posts: 10

Original Poster
Rep: Reputation: 1
Quote:
Originally Posted by jlightner View Post
hp open view costs money - you'd get it from HP.

Haven't used Cacti.

A free one many people use is Nagios (monitoring server) and NRPE (plugin for the servers to be monitored).

This Quick Start guide was written for Fedora but I was able to use it as a guide for my RHEL 5.3 install.
http://nagios.sourceforge.net/docs/3...rt-fedora.html

At the end it talks about monitoring UNIX/Linux systems and that will lead you to the NRPE stuff.
Hi

i have installed all the pre required packages but could not understand the step 1 creating account information as those are not complete command i suppose. that would be great if u could help me

1) Create Account Information

Become the root user.

su -l ------------------ is this complete command


Create a new nagios user account and give it a password.

/usr/sbin/useradd -m nagios -------------- is this complete command

passwd nagios


Create a new nagcmd group for allowing external commands to be submitted through the web interface. Add both the nagios user and the apache user to the group.

/usr/sbin/groupadd nagcmd

/usr/sbin/usermod -a -G nagcmd nagios

/usr/sbin/usermod -a -G nagcmd apache
 
Old 10-21-2009, 06:20 AM   #5
EricTRA
Guru
 
Registered: May 2009
Location: Barcelona, Spain
Distribution: LMDE Gnome with Awesome WM + Kernel 3.3.0-1 amd64
Posts: 6,518
Blog Entries: 1

Rep: Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217
Hello,

I also have Nagios (3.04) included in GroundWork monitoring server. The GroundWork system has as advantage that you can use a very user-friendly webinterface to configure everything. It also comes with a lot of help. The core of it is Nagios.

So if you like the command line interface, go with Nagios. If you like the 'easy life' go with GroundWork.

Quote:
su -l ------------------ is this complete command
The command
Code:
su -
is used to become root (if you're not logged in as root already) and yes, it's the complete command. You could also use
Code:
su - root
which is the same.

Quote:
/usr/sbin/useradd -m nagios -------------- is this complete command
This is indeed the 'complete' command although there are more options available, but in this case not needed.
The command creates the user and a home directory for it in /home.

The last commands on your list just add the necessary users to the nagcmd group.

Kind regards,

Eric
 
Old 10-21-2009, 08:07 AM   #6
avijitp
Member
 
Registered: May 2005
Location: India
Distribution: FC11, Debian/Ubuntu, RHEL, Solaris, AIX, HP-UX
Posts: 161

Rep: Reputation: 32
You need to get your basics right before you dive deep into Nagios. It is a robust tool and can be really confusing at a time.
 
Old 10-21-2009, 08:21 AM   #7
phani.junk1
LQ Newbie
 
Registered: Oct 2009
Posts: 10

Original Poster
Rep: Reputation: 1
Quote:
Originally Posted by EricTRA View Post
Hello,

I also have Nagios (3.04) included in GroundWork monitoring server. The GroundWork system has as advantage that you can use a very user-friendly webinterface to configure everything. It also comes with a lot of help. The core of it is Nagios.

So if you like the command line interface, go with Nagios. If you like the 'easy life' go with GroundWork.


The command
Code:
su -
is used to become root (if you're not logged in as root already) and yes, it's the complete command. You could also use
Code:
su - root
which is the same.


This is indeed the 'complete' command although there are more options available, but in this case not needed.
The command creates the user and a home directory for it in /home.

The last commands on your list just add the necessary users to the nagcmd group.

Kind regards,

Eric
hi

i know that for changing to root i need to use su command but it su -l which is used for login.
i am already logged in as root but its not allowing to add a user by using that command

/usr/sbin/useradd -m nagios

passwd nagios

http://nagios.sourceforge.net/docs/3...rt-fedora.html --- in this link step 1 i am having a problem as i am already logged as root
 
Old 10-21-2009, 10:59 AM   #8
kirukan
Senior Member
 
Registered: Jun 2008
Location: Eelam
Distribution: Redhat, Solaris, Suse
Posts: 1,034

Rep: Reputation: 97
Did you refer the nagios official document for installation and configuration because that is well documented instruction guide.
http://support.nagios.com/knowledgebase/officialdocs
 
Old 10-22-2009, 12:28 AM   #9
EricTRA
Guru
 
Registered: May 2009
Location: Barcelona, Spain
Distribution: LMDE Gnome with Awesome WM + Kernel 3.3.0-1 amd64
Posts: 6,518
Blog Entries: 1

Rep: Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217
Hello,

What error or message do you get when you execute
Code:
/usr/sbin/useradd -m nagios
Kind regards,

Eric
 
Old 10-27-2009, 08:38 AM   #10
phani.junk1
LQ Newbie
 
Registered: Oct 2009
Posts: 10

Original Poster
Rep: Reputation: 1
Quote:
Originally Posted by EricTRA View Post
Hello,

What error or message do you get when you execute
Code:
/usr/sbin/useradd -m nagios
Kind regards,

Eric
hi
sry thats working i got the command wrong at that time and i have installed nagios and the web interface is also working fine. How to use that ? I know thats a pretty strange question but could you plz help me in learning it.
 
Old 10-27-2009, 09:24 AM   #11
TB0ne
Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 10,003

Rep: Reputation: 1189Reputation: 1189Reputation: 1189Reputation: 1189Reputation: 1189Reputation: 1189Reputation: 1189Reputation: 1189Reputation: 1189
Quote:
Originally Posted by phani.junk1 View Post
hi
sry thats working i got the command wrong at that time and i have installed nagios and the web interface is also working fine. How to use that ? I know thats a pretty strange question but could you plz help me in learning it.
Go to their webiste, and read the documentation. Use the software, and try to figure it out. If you have a specific question, please post it, but I doubt anyone is going to have the time to give you a full Nagios class here...
 
Old 10-27-2009, 09:33 AM   #12
EricTRA
Guru
 
Registered: May 2009
Location: Barcelona, Spain
Distribution: LMDE Gnome with Awesome WM + Kernel 3.3.0-1 amd64
Posts: 6,518
Blog Entries: 1

Rep: Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217Reputation: 1217
Hello,

If you only installed Nagios then you're bound to use the command line and configuration files in order to configure and get Nagios working. The standard web interface shows you the monitoring result if configured through the configuration files.

As TB0ne said, go to their website, consult the manuals and take it from there. There's a lot of documentation hanging around on the internet.

If you don't feel comfortable with the command line and the Nagios configuration files, then have a look at GroundWork Monitor Community Edition. It's their free version, based on Nagios 3.06 and comes with a very handy configuration interface.

Kind regards,

Eric
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
monitoring tools piggyj Red Hat 1 06-13-2007 01:50 PM
monitoring tools Xris718 Linux - General 4 02-14-2005 03:33 PM
Monitoring tools alekoos Slackware 7 04-28-2004 06:20 AM
monitoring tools Xris718 Linux - General 1 01-13-2004 12:32 PM
network monitoring tools jimieee Linux - Software 2 09-25-2003 07:49 AM


All times are GMT -5. The time now is 12:04 PM.

Main Menu
 
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration