[Nagios-users] Problems with check_ping

2006-08-03 Thread Rodrigo Maceno
Hello,Can anyone help me about this??
check_ping: Invalid hostname/address - $ I am running the check_ping over NRPE... Anyone have any idea about it??Thanks
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

[Nagios-users] Nagios X IpTables

2006-08-14 Thread Rodrigo Maceno
Hello,I have the nagios installed and working normal, but it only works if I stop he iptables service. I would like to know how do it to run the Nagios without stop iptables. Anyone could help me??Thanks,Rodrigo L. Maceno
PS: Sorry for my english... :/
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

Re: [Nagios-users] Nagios X IpTables

2006-08-14 Thread Rodrigo Maceno
Ok, I understood what you said... But you could help me one more time?  I tried to put two rules in IpTables:iptables -A INPUT -p udp -s any/0 -d any/0 --dport=5666 -j ACCEPTiptables -A FORWARD -p udp -s any/0 -d any/0 --dport=5666 -j ACCEPT
but I don't know if there is anything wrong... Could you help again??Thanks...2006/8/14, Hari Sekhon <[EMAIL PROTECTED]
>:


  
  


Rodrigo Maceno wrote:
Hello,
I have the nagios installed and working normal, but it only works if I
stop he iptables service. I would like to know how do it to run the
Nagios without stop iptables. Anyone could help me??
  
Thanks,
Rodrigo L. Maceno
  
  
PS: Sorry for my english... :/
  
-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
  
___Nagios-users mailing listNagios-users@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. 
::: Messages without supporting info will risk being sent to /dev/null


you need to learn iptables to open the necessary ports.


man iptables

would be a good place to start.

also, check out which ports are used by services etc using netstat. It
will take you a lot of time to figure out, but it's too complicated and
specific to your setup for anybody to guide you all the way through.

man netstat
man iptables

will get you started.

Hari




-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

Re: [Nagios-users] Nagios X IpTables

2006-08-14 Thread Rodrigo Maceno
Hello, it's ok...But now, when I restart the iptables' service, the nagios works good... but at the next update of Nagios the follow message looks me: CHECK_NRPE - socket timeout after 10 seconds...Anyone could help me again??
Thanks2006/8/14, Hari Sekhon <[EMAIL PROTECTED]>:



  


If you want the rule to match any ip then you should just leave the -s
any and -d any out of the line

iptables -A INPUT -p udp --dport 5666 -j ACCEPT
iptables -A FORWARD -p udp --dport=5666 -j ACCEPT

This will allow anything from anywhere to port 5666 on this host. The
second line is not needed unless this box is a router. It's better to
do something like 

iptables -A INPUT -p udp -s 192.168.1.0/24 --dport 5666 -j ACCEPT

assuming your network is in the 192.168.1.1-255 range, since this would
limit the port opening to only those machine on your network (or more
specifically those machines in the 192.168.1.0 network).

If it causes you too much trouble, you could be forgiven for doing
iptables -F and disable it's re-application in the init scripts
(assuming this host is protected behind a firewall!)

Hari


Rodrigo Maceno wrote:
Ok, I understood what you said... But you could help me
one more time?  I tried to put two rules in IpTables:
  iptables -A INPUT -p udp -s any/0 -d
any/0 --dport=5666 -j ACCEPT
iptables -A FORWARD -p udp -s any/0 -d any/0 --dport=5666 -j ACCEPT
  
  
  
but I don't know if there is anything wrong... Could you help again??
  
Thanks...
  
  
  
  
  2006/8/14, Hari Sekhon <[EMAIL PROTECTED]
  >:
  

Rodrigo Maceno wrote:

Hello,
I have the nagios installed and working normal, but it only works if I
stop he iptables service. I would like to know how do it to run the
Nagios without stop iptables. Anyone could help me??

Thanks,
Rodrigo L. Maceno 

PS: Sorry for my english... :/



-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

___Nagios-users mailing listNagios-users@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. 
::: Messages without supporting info will risk being sent to /dev/null

you need to learn iptables to open the necessary ports.


man iptables

would be a good place to start.

also, check out which ports are used by services etc using netstat. It
will take you a lot of time to figure out, but it's too complicated and
specific to your setup for anybody to guide you all the way through.

man netstat
man iptables

will get you started.

Hari


  
  
  






-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

[Nagios-users] PLugin NRPE

2006-08-24 Thread Rodrigo Maceno
Hello,I would like to know if anyone knows how to the NRPE plugin take the machines' information and give it to my Nagios' server? I would like to know if I have any security problem when I install the NRPE plugin?
Thanks,PS: Sorry by my english!!! :)
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

[Nagios-users] Scripts nagios....

2006-08-29 Thread Rodrigo Maceno
Hi,Do anyone have scripts like to view CPU temperature, the utility memory And would like to share with me??Thanks,PS: Sorry by my english.. :)
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

[Nagios-users] Problem with Check_mem

2006-08-29 Thread Rodrigo Maceno
Hello,I got the check_mem plugin at the site www.nagiosexchange.org and when I try ot run with NRPE, it shows me the follow error: CHECK_NRPE: No output returned from daemon. 
Could anyone help me?Thanks,Rodrigo.
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

[Nagios-users] Logged in as ?

2006-08-30 Thread Rodrigo Maceno
Hello,I have an archive htpasswd.users at the /usr/local/nagios/etc directory and when I remove the line 'default_user_name' at the cgi.cfg archive and I try to logging in the Nagios with a user, it shows me the follow message: Logged in as ?. I don't know what can be causing it. Could anyone help me??
Thanks,Rodrigo.
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

Re: [Nagios-users] Logged in as ?

2006-08-31 Thread Rodrigo Maceno
I solved this problem creating a .htaccess archive at the /usr/local/nagios/bin... Then I configured the minimal.cfg archive defining the contacts with the htpasswd.users archive's users...
2006/8/31, Andy Shellam <[EMAIL PROTECTED]>:
Hi,I also have this problem.  I'd like my users to have different rightsdependent on their login name, but I can't use anything unless"default_user_name" is set, and then it always assumes the role of the
default user.I've got a htpasswd.users file in /usr/local/nagios/etc which isreadable and writeable by nagios, and readable to the webserver group.All users are authenticated via an SQL authentication module, and basic
authentication succeeds, so I can't see this would make a difference.Here's my SQL authentication configuration from Apache.  Note thatAuthUserFile needs to be /dev/null or it will circumvent the SQLauthentication and take the password from AuthUserFile instead of the
database.  It is company policy that all users are authenticated fromthis database.Note that basic authentication works - it seems to be Nagios is notreading the logged in user ID.An example user is "andyshellam."  Which field in the contacts
configuration needs to match the authenticated user ID?Here are my configuration files (sensitive values replaced withbracketed expressions):*/usr/local/apache2/conf/httpd_auth.conf*AuthType Basic
AuthUserFile /dev/nullAuthBasicAuthoritative OffAuth_PG_host (DB_HOSTNAME)Auth_PG_port (DB_PORT)Auth_PG_user (DB_USER)Auth_PG_pwd (DB_PASSWORD)Auth_PG_database (DB_NAME)Auth_PG_pwd_table (DB_USERS_TABLE)
Auth_PG_uid_field (DB_USER_ID_COLUMN)Auth_PG_pwd_field (DB_PASSWORD_COLUMN)Require valid-user*/usr/local/nagios/etc/htpasswd.users*andyshellam:(PASSWORD)*/usr/local/nagios/etc/nagcfg/contacts.cfg*
define contactgroup {contactgroup_name   NetServealias   NetServe Business and CustomerSupportmembers andyshellam
}define contact {contact_nameandyshellamalias   andyshellamservice_notification_period alwayshost_notification_periodalways
host_notification_options   d,u,r,fhost_notification_commands  Send_HostAlertservice_notification_optionsw,u,r,f,cservice_notification_commands   Send_ServiceAlert
email   (EMAIL_ADDRESS)pager   (PAGER_TO_EMAIL_GATEWAY)}Many thanksAndy.---Marc Powell wrote:>>> -Original Message-
>> From: [EMAIL PROTECTED] [mailto:nagios-users->> 
[EMAIL PROTECTED]] On Behalf Of Marc Powell>> Sent: Wednesday, August 30, 2006 4:06 PM>> To: nagios-users@lists.sourceforge.net
>> Subject: Re: [Nagios-users] Logged in as ?>>>>>>>>>>> -Original Message->>> From: 
[EMAIL PROTECTED]>>>> [mailto:nagios-users->>>> [EMAIL PROTECTED]
] On Behalf Of Rodrigo Maceno>>> Sent: Wednesday, August 30, 2006 2:05 PM>>> To: nagios-users@lists.sourceforge.net>>> Subject: [Nagios-users] Logged in as ?
>>>>>> Hello,>>>>>> I have an archive htpasswd.users at the /usr/local/nagios/etc>>>>> directory>>>>> and when I remove the line 'default_user_name' at the 
cgi.cfg>>>> archive>>> and>>>>> I try to logging in the Nagios with a user, it shows me the follow>>> message: Logged in as ?. I don't know what can be causing it. Could
>>>>> anyone>>>>> help me??>>>>> Check your .htaccess file in the ~nagios/sbin directory. Make sure>>> it's>>> readable by your web server and looks like the documentation.
>>>> Actually I forgot that the new recommended approach if via httpd.conf> configuration entirely. Make sure that you have the relevant httpd.conf> entries for your sbin directory as indicated at
> http://nagios.sourceforge.net/docs/2_0/installweb.html and have> restarted your web server.>> --> Marc>> -
> Using Tomcat but need to do more? Need to support web services, security?> Get stuff done quickly with pre-integrated technology to make your job easier> Download IBM WebSphere Application Server v.1.0.1
 based on Apache Geronimo> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___> Nagios-users mailing list> Nagios-users@lists.sourceforge.net> 
https://lists.sourceforge.net/lists/listinfo/nagios-users> ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue.> ::: Messages

[Nagios-users] Creating privilegies...

2006-08-31 Thread Rodrigo Maceno
Hello,I have a hostgroup with some hosts and I would like that only some users have access  to this hosts.  How do I do it??Thanks,Rodrigo.
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

Re: [Nagios-users] Creating privilegies...

2006-08-31 Thread Rodrigo Maceno
Ok, I created a contact group ... but now I want that the users, when logged in, see only the hosts that I allowed. Is it possible??Thanks,Rodrigo.2006/8/31, Hari Sekhon <
[EMAIL PROTECTED]>:


  


use a contact group. see docs.

Hari



Rodrigo Maceno wrote:
Hello,
  
I have a hostgroup with some hosts and I would like that only some
users have access  to this hosts.  How do I do it??
  
Thanks,
Rodrigo.
  





-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

[Nagios-users] Problems with contact_groups

2006-09-01 Thread Rodrigo Maceno
Hello, I created a contact_group like the follow:define contactgroup{    contactgroup_name   saopaulo    alias Administradores de Sao Paulo
    members  usrsp    }and I define the host: define host{    use generic-host    ; Name of host template to use
    host_name   SPAUL0436    alias   SPAUL0436    address xxx.xxx.xxx.xxx    check_command   check-host-alive    max_check_attempts  10
    check_period    24x7    notification_interval   120    notification_period 24x7    notification_options    d,r    contact_groups  saopaulo,admins    }
and the service for this host:define service{    use generic-service ; Name of service template to use    host_name   SPAUL0436
    service_description CHECK PING xxx.xxx.xxx.xxx    is_volatile 0    check_period    24x7    max_check_attempts  4    normal_check_interval   5
    retry_check_interval    1    contact_groups  saopaulo,admins    notification_options    w,u,c,r    notification_interval   960    notification_period 24x7
    check_command   check_ping!200.0,20%!500.0,60%    }But when I logged in at Nagios like "usrsp", the Nagios shows me all the hosts...What is the problem??
Thanks
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

[Nagios-users] A machine behind a modem...

2006-09-06 Thread Rodrigo Maceno
Hello,I have a machine, with a false IP, and with Internet access by a modem adsl. I would like to know how I get check the disk space, the total process, for example, of this machine with a real IP (modem) and a false IP (machine). Could anyone help me?
Thanks,Rodrigo.PS: Sorry by my english... :/
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

Re: [Nagios-users] "Logged in as ?" -- http auth not working ?

2006-09-11 Thread Rodrigo Maceno
Ok, I had this same problem some time ago...First, you must to retire the default_user_name at the cgi.cfg archive. You must define a valid contact at the minimal.cfg (or another archive that you have your contacts). This contact must be in htpasswd archive...  
Try to do it...[]'s2006/9/8, Marc Powell <[EMAIL PROTECTED]>:
> -Original Message-> From: [EMAIL PROTECTED] [mailto:nagios-users-
> [EMAIL PROTECTED]] On Behalf Of Rob Ristroph> Sent: Thursday, September 07, 2006 8:11 PM> To: Nagios Users Mailinglist> Subject: [Nagios-users] "Logged in as ?" -- http auth not working ?
>>> Hi,> When I visit my nagios from the web, it asks me for the> user/pass and I log in successfully, except when I do "show> host details" it says:
>> "It appears as though you do not have permission to view information> for any of the hosts you requested...>> If you believe this is an error, check the HTTP server authentication
> requirements for accessing this CGI and check the authorization> options in your CGI configuration file.">> It also says "Logged in as ?" near the top of the page.
>> It prints to standard out a correct html page that says> "Logged in as nagiosadmin".>> I can't find any useful information in the apache or nagios
> logs.>> Any suggestions on how this can be debugged ?  I realize thatMake sure that you have the correct htaccess information for the _sbin_directory, not (just) the share directory. Depending on how you
configured it it's either in httpd.conf or an .htaccess file in~nagios/sbin. It's the configuration for the sbin directory that'simportant.
http://nagios.sourceforge.net/docs/2_0/installweb.htmlIf you made the changes to httpd.conf, be sure you restarted apacheafter doing so.--Marc-
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Nagios-users mailing listNagios-users@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting any issue.::: Messages without supporting info will risk being sent to /dev/null
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

Re: [Nagios-users] "Logged in as ?" -- http auth not working ?

2006-09-12 Thread Rodrigo Maceno
Did you put the follow lines at your httpd file??Alias /nagios "/usr/local/nagios/share" AuthType Basic AuthUserFile /usr/local/nagios/etc/htpasswd.users
   Require valid-user2006/9/12, Rob Ristroph <[EMAIL PROTECTED]>:
This is not the problem, I already had the htpasswd user be a validcontact, and the default_user_name was already commented out.I am not sure what it is, except that I suspect it is something in myapache configs.
--Rob>>>>> "Rodrigo" == Rodrigo Maceno <[EMAIL PROTECTED]> writes:Rodrigo>Rodrigo> Ok, I had this same problem some time ago...
Rodrigo> First, you must to retire the default_user_name at the cgi.cfg archive. YouRodrigo> must define a valid contact at the minimal.cfg (or another archive that youRodrigo> have your contacts). This contact must be in htpasswd archive...
Rodrigo>Rodrigo> Try to do it...Rodrigo>Rodrigo> []'sRodrigo>Rodrigo> 2006/9/8, Marc Powell <[EMAIL PROTECTED]>:>>>>>>
>> > -Original Message->> > From: [EMAIL PROTECTED] [mailto:nagios-users-
>> > [EMAIL PROTECTED]] On Behalf Of Rob Ristroph>> > Sent: Thursday, September 07, 2006 8:11 PM>> > To: Nagios Users Mailinglist
>> > Subject: [Nagios-users] "Logged in as ?" -- http auth not working ?>> >>> >>> > Hi,>> > When I visit my nagios from the web, it asks me for the
>> > user/pass and I log in successfully, except when I do "show>> > host details" it says:>> >>> > "It appears as though you do not have permission to view information
>> > for any of the hosts you requested...>> >>> > If you believe this is an error, check the HTTP server authentication>> > requirements for accessing this CGI and check the authorization
>> > options in your CGI configuration file.">> >>> > It also says "Logged in as ?" near the top of the page.>>>>>> >>> > It prints to standard out a correct html page that says
>> > "Logged in as nagiosadmin".>> >>> > I can't find any useful information in the apache or nagios>> > logs.>> >>> > Any suggestions on how this can be debugged ?  I realize that
>>>> Make sure that you have the correct htaccess information for the _sbin_>> directory, not (just) the share directory. Depending on how you>> configured it it's either in httpd.conf
 or an .htaccess file in>> ~nagios/sbin. It's the configuration for the sbin directory that's>> important.>>>> http://nagios.sourceforge.net/docs/2_0/installweb.html
>>>> If you made the changes to httpd.conf, be sure you restarted apache>> after doing so.>>>> -->> Marc>>>> -
>> Using Tomcat but need to do more? Need to support web services, security?>> Get stuff done quickly with pre-integrated technology to make your job>> easier>> Download IBM WebSphere Application Server 
v.1.0.1 based on Apache Geronimo>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> ___>> Nagios-users mailing list>> Nagios-users@lists.sourceforge.net>> 
https://lists.sourceforge.net/lists/listinfo/nagios-users>> ::: Please include Nagios version, plugin version (-v) and OS when>> reporting any issue.>> ::: Messages without supporting info will risk being sent to /dev/null
>>Rodrigo> -Rodrigo> Using Tomcat but need to do more? Need to support web services, security?Rodrigo> Get stuff done quickly with pre-integrated technology to make your job easier
Rodrigo> Download IBM WebSphere Application Server v.1.0.1 based on Apache GeronimoRodrigo> 
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Rodrigo> Nagios-users mailing listRodrigo> 
Nagios-users@lists.sourceforge.netRodrigo> https://lists.sourceforge.net/lists/listinfo/nagios-usersRodrigo> ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue.
Rodrigo> ::: Messages without supporting info will risk being sent to /dev/null--http://rgr.freeshell.org/-
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload

[Nagios-users] Return code of 127 is out of bounds - plugin may be missing

2006-08-01 Thread Rodrigo Maceno
Hello, I have a machine where I installed the nagios, the plugins and the nrpe with tar.gz archives. It runs good. But I installed the nagios, nagios plugins and the nrpe in another machine with rpm packages. When I try to monitor this machine with the first, I receive the follow message: Return code of 127 is out of bounds - plugin may be missing.
I checked the path to the plugins into resource.cfg and it is correct.What do I must to do???Thanks.

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

[Nagios-users] NRPE: Command 'check_ping' not defined

2006-08-02 Thread Rodrigo Maceno
Hello,I have a problem when I try to make a check_ping with NRPE... It shows the follow message: NRPE: Command 'check_ping' not defined Anyone could help me?? I don't known what to do (more.. hehe)...Thanks

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

[Nagios-users] Problems with check_ping / NRPE

2006-08-02 Thread Rodrigo Maceno
Hello,
I am having the follow problem with the check_ping running over nrpe:
check_ping: %s: Warning threshold must be integer or percentage! 
Anyone have any idea of what is happening? :/

Thanks
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null