Re: [Nagios-users] check_http + headers

2011-07-29 Thread af . at . work
I tried multiple -k parameters to add more headers with the same
result.  This is the output from Nagios with a 400 Bad Request status.
I assume that is because the cookie is effectively broken.

GET http://mywebsite.com/home.aspx HTTP/1.1
User-Agent: check_http/v1.4.15 (nagios-plugins 1.4.15)
Connection: close
Host: mywebsite.com
Cookie: user=4reqrerqwr
userlogin=123adsfjlk324


cURL via the CLI is almost identical, but the Cookie: is kept on one line.

GET http://mywebsite.com/home.aspx HTTP/1.1
Connection: close
Host: mywebsite.com
Cookie: user=4reqrerqwr;userlogin=123adsfjlk324



On Fri, Jul 29, 2011 at 10:49 AM, Ton Voon  wrote:
>
> On 29 Jul 2011, at 14:35, af.at.w...@gmail.com wrote:
>
>> I am trying to mimic this in Nagios with check_http like so:
>>
>> ./check_http -H mysite.com -u http://mysite.com/home/index.aspx -f
>> follow -s Welcome -k 'Cookie: user=4reqrerqwr;userlogin=123adsfjlk324'
>> -v
>
> You should use multiple -k to add more headers.
>
> Ton
>
>
> --
> Got Input?   Slashdot Needs You.
> Take our quick survey online.  Come on, we don't ask for help often.
> Plus, you'll get a chance to win $100 to spend on ThinkGeek.
> http://p.sf.net/sfu/slashdot-survey
> ___
> 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
>

--
Got Input?   Slashdot Needs You.
Take our quick survey online.  Come on, we don't ask for help often.
Plus, you'll get a chance to win $100 to spend on ThinkGeek.
http://p.sf.net/sfu/slashdot-survey
___
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] check_http + headers

2011-07-29 Thread af . at . work
Per the Nagios doc, I also tried putting the ; in a $USERn$ variable &
passed that in my check but it still drops the second cookie value to
another line.

On Fri, Jul 29, 2011 at 10:14 AM,   wrote:
> Wrapping in quotes still made pushed the second value to another line.
> Cookie: 
> "AwarenessNETUserLogin_8800=04dDHmcJjn2vfcvP97i+z9yBGic0y4BIhNfDo8wN1fE=
> username=admin"
>
> Can the ; be escaped? I can't pass anything else.
>
> On Fri, Jul 29, 2011 at 10:03 AM, Gary Every  wrote:
>> Try using something besides  a ; to separate the user and userlogin or
>> better yet encapsulate them in quotes???
>>  'Cookie: "user=4reqrerqwr;userlogin=123adsfjlk324"'
>>
>> On Fri, Jul 29, 2011 at 6:35 AM,  wrote:
>>>
>>> With cURL, I can successfully log into the website I ultimately want
>>> have Nagios test by passing --cookies.
>>>
>>> Something like this: curl --cookie
>>> "user=4reqrerqwr;userlogin=123adsfjlk324"
>>> http://mysite.com/home/index.aspx -v | grep Welcome
>>>
>>> I know it is successful because, 1, I can visually see the rendered
>>> code and 2, the grep search for Welcome would only be seen if the
>>> authentication was successful.
>>>
>>> I am trying to mimic this in Nagios with check_http like so:
>>>
>>> ./check_http -H mysite.com -u http://mysite.com/home/index.aspx -f
>>> follow -s Welcome -k 'Cookie: user=4reqrerqwr;userlogin=123adsfjlk324'
>>> -v
>>>
>>> One big difference I see is that in cURL the cookie is set on 1 line
>>> but the verbose response from check_http shows the cookie on two
>>> lines.
>>>
>>> Cookie: user=4reqrerqwr;userlogin=123adsfjlk324 vs
>>>
>>> Cookie: user=4reqrerqwr
>>> userlogin=123adsfjlk324
>>>
>>> I am open to suggestions and of course alternatives. I have checked
>>> out WebInject but this seems to be SO close I hate to drop it.
>>>
>>> Lastly, I have tried check_curl, and extended it to support cookies.
>>> This DOES work but I am getting (null) on the responses and the grep
>>> never causes Nagios to fail regardless of a valid result being
>>> returned.
>>>
>>>
>>> --
>>> Got Input?   Slashdot Needs You.
>>> Take our quick survey online.  Come on, we don't ask for help often.
>>> Plus, you'll get a chance to win $100 to spend on ThinkGeek.
>>> http://p.sf.net/sfu/slashdot-survey
>>> ___
>>> 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
>>
>>
>>
>> --
>> Gary Every
>> "Pay it Forward!"
>>
>>
>> --
>> Got Input?   Slashdot Needs You.
>> Take our quick survey online.  Come on, we don't ask for help often.
>> Plus, you'll get a chance to win $100 to spend on ThinkGeek.
>> http://p.sf.net/sfu/slashdot-survey
>> ___
>> 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
>>
>

--
Got Input?   Slashdot Needs You.
Take our quick survey online.  Come on, we don't ask for help often.
Plus, you'll get a chance to win $100 to spend on ThinkGeek.
http://p.sf.net/sfu/slashdot-survey
___
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] check_http + headers

2011-07-29 Thread af . at . work
Wrapping in quotes still made pushed the second value to another line.
Cookie: "AwarenessNETUserLogin_8800=04dDHmcJjn2vfcvP97i+z9yBGic0y4BIhNfDo8wN1fE=
username=admin"

Can the ; be escaped? I can't pass anything else.

On Fri, Jul 29, 2011 at 10:03 AM, Gary Every  wrote:
> Try using something besides  a ; to separate the user and userlogin or
> better yet encapsulate them in quotes???
>  'Cookie: "user=4reqrerqwr;userlogin=123adsfjlk324"'
>
> On Fri, Jul 29, 2011 at 6:35 AM,  wrote:
>>
>> With cURL, I can successfully log into the website I ultimately want
>> have Nagios test by passing --cookies.
>>
>> Something like this: curl --cookie
>> "user=4reqrerqwr;userlogin=123adsfjlk324"
>> http://mysite.com/home/index.aspx -v | grep Welcome
>>
>> I know it is successful because, 1, I can visually see the rendered
>> code and 2, the grep search for Welcome would only be seen if the
>> authentication was successful.
>>
>> I am trying to mimic this in Nagios with check_http like so:
>>
>> ./check_http -H mysite.com -u http://mysite.com/home/index.aspx -f
>> follow -s Welcome -k 'Cookie: user=4reqrerqwr;userlogin=123adsfjlk324'
>> -v
>>
>> One big difference I see is that in cURL the cookie is set on 1 line
>> but the verbose response from check_http shows the cookie on two
>> lines.
>>
>> Cookie: user=4reqrerqwr;userlogin=123adsfjlk324 vs
>>
>> Cookie: user=4reqrerqwr
>> userlogin=123adsfjlk324
>>
>> I am open to suggestions and of course alternatives. I have checked
>> out WebInject but this seems to be SO close I hate to drop it.
>>
>> Lastly, I have tried check_curl, and extended it to support cookies.
>> This DOES work but I am getting (null) on the responses and the grep
>> never causes Nagios to fail regardless of a valid result being
>> returned.
>>
>>
>> --
>> Got Input?   Slashdot Needs You.
>> Take our quick survey online.  Come on, we don't ask for help often.
>> Plus, you'll get a chance to win $100 to spend on ThinkGeek.
>> http://p.sf.net/sfu/slashdot-survey
>> ___
>> 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
>
>
>
> --
> Gary Every
> "Pay it Forward!"
>
>
> --
> Got Input?   Slashdot Needs You.
> Take our quick survey online.  Come on, we don't ask for help often.
> Plus, you'll get a chance to win $100 to spend on ThinkGeek.
> http://p.sf.net/sfu/slashdot-survey
> ___
> 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
>

--
Got Input?   Slashdot Needs You.
Take our quick survey online.  Come on, we don't ask for help often.
Plus, you'll get a chance to win $100 to spend on ThinkGeek.
http://p.sf.net/sfu/slashdot-survey
___
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] check_http + headers

2011-07-29 Thread af . at . work
With cURL, I can successfully log into the website I ultimately want
have Nagios test by passing --cookies.

Something like this: curl --cookie
"user=4reqrerqwr;userlogin=123adsfjlk324"
http://mysite.com/home/index.aspx -v | grep Welcome

I know it is successful because, 1, I can visually see the rendered
code and 2, the grep search for Welcome would only be seen if the
authentication was successful.

I am trying to mimic this in Nagios with check_http like so:

./check_http -H mysite.com -u http://mysite.com/home/index.aspx -f
follow -s Welcome -k 'Cookie: user=4reqrerqwr;userlogin=123adsfjlk324'
-v

One big difference I see is that in cURL the cookie is set on 1 line
but the verbose response from check_http shows the cookie on two
lines.

Cookie: user=4reqrerqwr;userlogin=123adsfjlk324 vs

Cookie: user=4reqrerqwr
userlogin=123adsfjlk324

I am open to suggestions and of course alternatives. I have checked
out WebInject but this seems to be SO close I hate to drop it.

Lastly, I have tried check_curl, and extended it to support cookies.
This DOES work but I am getting (null) on the responses and the grep
never causes Nagios to fail regardless of a valid result being
returned.

--
Got Input?   Slashdot Needs You.
Take our quick survey online.  Come on, we don't ask for help often.
Plus, you'll get a chance to win $100 to spend on ThinkGeek.
http://p.sf.net/sfu/slashdot-survey
___
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 help

2011-07-22 Thread af . at . work
I extended the check_curl plugin from Nagios Exchange to allow the
inclusion of cookies. While it works like a charm from the CLI, I am
having trouble getting the check command to work within the configs.

I added the following to commands.cfg:

# 'check CURL' command definition

define command{
command_namecheck_curl
command_line$USER1$/php check_curl.php -H $HOSTADDRESS$
}

And setup a new hostgroup, host and service however whenever I
validate the config the following error is returned:

Error: Service check command 'check_curl -U
http://domain.name/home.aspx -F -G Welcome' specified in service
'Home' for host 'HomeTest' not defined anywhere!

--
10 Tips for Better Web Security
Learn 10 ways to better secure your business today. Topics covered include:
Web security, SSL, hacker attacks & Denial of Service (DoS), private keys,
security Microsoft Exchange, secure Instant Messaging, and much more.
http://www.accelacomm.com/jaw/sfnl/114/51426210/
___
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] Single host, multiple HTTP services

2011-07-22 Thread af . at . work
The individual systems are remote, not publically available, and
monitored by the ISP.

I am looking to see what the end user is "seeing" for TTFB.

On Fri, Jul 22, 2011 at 10:50 AM, William Muriithi
 wrote:
> Hi
>
> Just curious, why don't you bypass the load balancer and monitor the
> individual systems?  That may be more reliable and less complicated.
>
> Actually, may easy the process of figuring what has gone wrong when things
> break
>
> William
>
>
>
>
>
> On 11-07-21 12:20 PM, "af.at.w...@gmail.com"  wrote:
>
>>Thanks for the tip on that - any way to take it a step further and
>>monitor a web transaction whilst logged in?
>>
>>On Thu, Jul 21, 2011 at 10:26 AM, Gary Every  wrote:
>>> Service:
>>> define service {
>>>   use                   generic-check-store
>>>   hostgroup_name        Storefront
>>>   service_description   storename
>>>   check_command
>>> check_store!storename.com!/index.php?product_id=12345!"String to find"
>>>   contact_groups        Unix,ProductionSupport
>>>   notification_interval 1440
>>> }
>>> Check command:
>>> define command{
>>>         command_name    check_store
>>>         command_line    /usr/lib/nagios/plugins/check_http -I
>>>$HOSTADDRESS$
>>> -H $ARG1$ -s $ARG3$ -u $ARG2$
>>>         }
>>>
>>> That will check the ip with the specific hostname,  direct it to the
>>> appropriate page (/index.php?product_id=12345 and find whatever string
>>>you
>>> expect to see on that particular page ("String to find")
>>> This allows the same ip with different virtualhosts to be checked
>>> g.;
>>>
>>> On Thu, Jul 21, 2011 at 6:59 AM, dave stern - e-mail.pluribus.unum
>>>  wrote:

 One way might be to use the check_http plug-in but
 have it look for a specific string in each web-page being hosted
 and use the warn/critical-time returns for empirical threshold

 On Thu, Jul 21, 2011 at 9:02 AM,   wrote:
 > Hey gang, I am having some difficulty getting a single host setup
that
 > would have multiple HTTP services attached to it. The scenario is a
 > load balanced group of web servers and I am looking to monitor
 > numerous public facing web sites that would be bound to a single load
 > balanced IP address. Any help would be most appreciated!
 >
 >
 >

--
 > 5 Ways to Improve & Secure Unified Communications
 > Unified Communications promises greater efficiencies for business. UC
 > can
 > improve internal communications as well as offer faster, more
efficient
 > ways
 > to interact with customers and streamline customer service. Learn
more!
 > http://www.accelacomm.com/jaw/sfnl/114/51426253/
 > ___
 > 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
 >




--
 5 Ways to Improve & Secure Unified Communications
 Unified Communications promises greater efficiencies for business. UC
can
 improve internal communications as well as offer faster, more efficient
 ways
 to interact with customers and streamline customer service. Learn more!
 http://www.accelacomm.com/jaw/sfnl/114/51426253/
 ___
 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
>>>
>>>
>>>
>>> --
>>> Gary Every
>>> "Pay it Forward!"
>>>
>>>
>>>
>>>-
>>>-
>>> 5 Ways to Improve & Secure Unified Communications
>>> Unified Communications promises greater efficiencies for business. UC
>>>can
>>> improve internal communications as well as offer faster, more efficient
>>>ways
>>> to interact with customers and streamline customer service. Learn more!
>>> http://www.accelacomm.com/jaw/sfnl/114/51426253/
>>> ___
>>> 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
>>>
>>
>>--
>>
>>5 Ways to Improve & Secure Unified Communications
>>Unified Communications promises greater efficie

Re: [Nagios-users] Single host, multiple HTTP services

2011-07-21 Thread af . at . work
Thanks Dave, that seems to have done the trick perfectly.

On Thu, Jul 21, 2011 at 9:59 AM, dave stern - e-mail.pluribus.unum
 wrote:
> One way might be to use the check_http plug-in but
> have it look for a specific string in each web-page being hosted
> and use the warn/critical-time returns for empirical threshold
>
> On Thu, Jul 21, 2011 at 9:02 AM,   wrote:
>> Hey gang, I am having some difficulty getting a single host setup that
>> would have multiple HTTP services attached to it. The scenario is a
>> load balanced group of web servers and I am looking to monitor
>> numerous public facing web sites that would be bound to a single load
>> balanced IP address. Any help would be most appreciated!
>>
>> --
>> 5 Ways to Improve & Secure Unified Communications
>> Unified Communications promises greater efficiencies for business. UC can
>> improve internal communications as well as offer faster, more efficient ways
>> to interact with customers and streamline customer service. Learn more!
>> http://www.accelacomm.com/jaw/sfnl/114/51426253/
>> ___
>> 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
>>
>
> --
> 5 Ways to Improve & Secure Unified Communications
> Unified Communications promises greater efficiencies for business. UC can
> improve internal communications as well as offer faster, more efficient ways
> to interact with customers and streamline customer service. Learn more!
> http://www.accelacomm.com/jaw/sfnl/114/51426253/
> ___
> 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
>

--
5 Ways to Improve & Secure Unified Communications
Unified Communications promises greater efficiencies for business. UC can 
improve internal communications as well as offer faster, more efficient ways
to interact with customers and streamline customer service. Learn more!
http://www.accelacomm.com/jaw/sfnl/114/51426253/
___
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] Single host, multiple HTTP services

2011-07-21 Thread af . at . work
Thanks for the tip on that - any way to take it a step further and
monitor a web transaction whilst logged in?

On Thu, Jul 21, 2011 at 10:26 AM, Gary Every  wrote:
> Service:
> define service {
>   use                   generic-check-store
>   hostgroup_name        Storefront
>   service_description   storename
>   check_command
> check_store!storename.com!/index.php?product_id=12345!"String to find"
>   contact_groups        Unix,ProductionSupport
>   notification_interval 1440
> }
> Check command:
> define command{
>         command_name    check_store
>         command_line    /usr/lib/nagios/plugins/check_http -I $HOSTADDRESS$
> -H $ARG1$ -s $ARG3$ -u $ARG2$
>         }
>
> That will check the ip with the specific hostname,  direct it to the
> appropriate page (/index.php?product_id=12345 and find whatever string you
> expect to see on that particular page ("String to find")
> This allows the same ip with different virtualhosts to be checked
> g.;
>
> On Thu, Jul 21, 2011 at 6:59 AM, dave stern - e-mail.pluribus.unum
>  wrote:
>>
>> One way might be to use the check_http plug-in but
>> have it look for a specific string in each web-page being hosted
>> and use the warn/critical-time returns for empirical threshold
>>
>> On Thu, Jul 21, 2011 at 9:02 AM,   wrote:
>> > Hey gang, I am having some difficulty getting a single host setup that
>> > would have multiple HTTP services attached to it. The scenario is a
>> > load balanced group of web servers and I am looking to monitor
>> > numerous public facing web sites that would be bound to a single load
>> > balanced IP address. Any help would be most appreciated!
>> >
>> >
>> > --
>> > 5 Ways to Improve & Secure Unified Communications
>> > Unified Communications promises greater efficiencies for business. UC
>> > can
>> > improve internal communications as well as offer faster, more efficient
>> > ways
>> > to interact with customers and streamline customer service. Learn more!
>> > http://www.accelacomm.com/jaw/sfnl/114/51426253/
>> > ___
>> > 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
>> >
>>
>>
>> --
>> 5 Ways to Improve & Secure Unified Communications
>> Unified Communications promises greater efficiencies for business. UC can
>> improve internal communications as well as offer faster, more efficient
>> ways
>> to interact with customers and streamline customer service. Learn more!
>> http://www.accelacomm.com/jaw/sfnl/114/51426253/
>> ___
>> 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
>
>
>
> --
> Gary Every
> "Pay it Forward!"
>
>
> --
> 5 Ways to Improve & Secure Unified Communications
> Unified Communications promises greater efficiencies for business. UC can
> improve internal communications as well as offer faster, more efficient ways
> to interact with customers and streamline customer service. Learn more!
> http://www.accelacomm.com/jaw/sfnl/114/51426253/
> ___
> 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
>

--
5 Ways to Improve & Secure Unified Communications
Unified Communications promises greater efficiencies for business. UC can 
improve internal communications as well as offer faster, more efficient ways
to interact with customers and streamline customer service. Learn more!
http://www.accelacomm.com/jaw/sfnl/114/51426253/
___
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] Single host, multiple HTTP services

2011-07-21 Thread af . at . work
Hey gang, I am having some difficulty getting a single host setup that
would have multiple HTTP services attached to it. The scenario is a
load balanced group of web servers and I am looking to monitor
numerous public facing web sites that would be bound to a single load
balanced IP address. Any help would be most appreciated!

--
5 Ways to Improve & Secure Unified Communications
Unified Communications promises greater efficiencies for business. UC can 
improve internal communications as well as offer faster, more efficient ways
to interact with customers and streamline customer service. Learn more!
http://www.accelacomm.com/jaw/sfnl/114/51426253/
___
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] NSClient

2007-04-27 Thread af . at . work

I have installed & configured SNMP...

I still get:
Current Status:  CRITICAL
(for 0d 0h 13m 41s) Status Information:Connection refused
could not fetch information from server

On 4/27/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:


Ah, I just saw there are two apps - I am using nsclient++

On 4/27/07, Allan Holdt Hansen INBODAN <[EMAIL PROTECTED]> wrote:
>
>  NSClient does not speak SNMP.
>
>
>
> If you want to perform checks using SNMP, install/configure Windows SNMP
> service.
>
> To perform checks using NSClient you use check_nt og perhaps  check_nrpe
> if using nsclient++
>
>
>
> /Allan
>
>
>
> *Fra:* [EMAIL PROTECTED] [mailto:
> [EMAIL PROTECTED] *På vegne af [EMAIL PROTECTED]
> *Sendt:* 27. april 2007 16:35
> *Til:* Valdinger, Stephen (DOV, MSX)
> *Cc:* nagios-users@lists.sourceforge.net
> *Emne:* Re: [Nagios-users] NSClient
>
>
>
>
> # 'check_snmp' command definition
> define command{
> command_namecheck_snmp
> command_line$USER1$/check_snmp -H $HOSTADDRESS$ $ARG1$ -v 2
> }
>
>  On 4/27/07, *Valdinger, Stephen (DOV, MSX)* <
> [EMAIL PROTECTED]> wrote:
>
> You may have a SNMP version issue. Specify -v 2 in your command
> definition file and see if that helps.
>
>
>
>
>
>
>
> Stephen Valdinger
> MIS Helpdesk Coordinator
> Dover Chemical Corporation
> 3676 Davis Rd NW
> Dover, OH 44622
>  330-365-3622
> [EMAIL PROTECTED]
>
>
>
> Your day probably won't get as bad as this guys..
> -Original Message-
> From: [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED]
> Sent: Friday, April 27, 2007 10:20 AM
> To: nagios-users@lists.sourceforge.net
> Subject: [Nagios-users] NSClient
>
> I've got the NSClient setup on a Windows 2003 Server, and Nagios shows
> it as up but all the services it's checking report back as critical
> "connection refused".
>
> Any ideas?
>
> 
> -
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> ___
> 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
>
>
>


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
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] NSClient

2007-04-27 Thread af . at . work

Ah, I just saw there are two apps - I am using nsclient++

On 4/27/07, Allan Holdt Hansen INBODAN <[EMAIL PROTECTED]> wrote:


 NSClient does not speak SNMP.



If you want to perform checks using SNMP, install/configure Windows SNMP
service.

To perform checks using NSClient you use check_nt og perhaps  check_nrpe
if using nsclient++



/Allan



*Fra:* [EMAIL PROTECTED] [mailto:
[EMAIL PROTECTED] *På vegne af *
[EMAIL PROTECTED]
*Sendt:* 27. april 2007 16:35
*Til:* Valdinger, Stephen (DOV, MSX)
*Cc:* nagios-users@lists.sourceforge.net
*Emne:* Re: [Nagios-users] NSClient




# 'check_snmp' command definition
define command{
command_namecheck_snmp
command_line$USER1$/check_snmp -H $HOSTADDRESS$ $ARG1$ -v 2
}

 On 4/27/07, *Valdinger, Stephen (DOV, MSX)* <
[EMAIL PROTECTED]> wrote:

You may have a SNMP version issue. Specify -v 2 in your command
definition file and see if that helps.







Stephen Valdinger
MIS Helpdesk Coordinator
Dover Chemical Corporation
3676 Davis Rd NW
Dover, OH 44622
330-365-3622
[EMAIL PROTECTED]



Your day probably won't get as bad as this guys..
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 10:20 AM
To: nagios-users@lists.sourceforge.net
Subject: [Nagios-users] NSClient

I've got the NSClient setup on a Windows 2003 Server, and Nagios shows
it as up but all the services it's checking report back as critical
"connection refused".

Any ideas?


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
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



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
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] NSClient

2007-04-27 Thread af . at . work

# 'check_snmp' command definition
define command{
   command_namecheck_snmp
   command_line$USER1$/check_snmp -H $HOSTADDRESS$ $ARG1$ -v 2
   }


On 4/27/07, Valdinger, Stephen (DOV, MSX) <[EMAIL PROTECTED]>
wrote:


You may have a SNMP version issue. Specify -v 2 in your command
definition file and see if that helps.







Stephen Valdinger
MIS Helpdesk Coordinator
Dover Chemical Corporation
3676 Davis Rd NW
Dover, OH 44622
330-365-3622
[EMAIL PROTECTED]



Your day probably won't get as bad as this guys..
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Friday, April 27, 2007 10:20 AM
To: nagios-users@lists.sourceforge.net
Subject: [Nagios-users] NSClient

I've got the NSClient setup on a Windows 2003 Server, and Nagios shows
it as up but all the services it's checking report back as critical
"connection refused".

Any ideas?


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
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


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
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] NSClient

2007-04-27 Thread af . at . work
I've got the NSClient setup on a Windows 2003 Server, and Nagios shows
it as up but all the services it's checking report back as critical
"connection refused".

Any ideas?

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
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] Installation help - CentOS 4.4 Server

2007-04-26 Thread af . at . work

I tracked this down:
http://www.cisl.ucar.edu/nets/tools/nagios/

Which showed 1 way to resolve the issue - but is not the 'best' way to do
so.

On 4/26/07, Valdinger, Stephen (DOV, MSX) <[EMAIL PROTECTED]>
wrote:


 Well, then, I am all out of ideas! I'll cc the rest of the list on this
one and hopefully someone can help us figure out this issue.















Stephen Valdinger

MIS Helpdesk Coordinator

Dover Chemical Corporation

3676 Davis Rd NW

Dover, OH 44622

330-365-3622

[EMAIL PROTECTED]







Your day probably won't get as bad as this guys……
  --

*From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
*Sent:* Thursday, April 26, 2007 2:52 PM
*To:* Valdinger, Stephen (DOV, MSX)
*Subject:* Re: [Nagios-users] Installation help - CentOS 4.4 Server



Yes, JUST grabbed whatever was up there today with the largest version
number :)

On 4/26/07, *Valdinger, Stephen** (DOV, MSX)* <[EMAIL PROTECTED]>
wrote:





Hmmm, that is a very interesting situation. Are you using the latest
version of Apache?



htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin



that is the documentation portion for setting up the login interface. It
assumes you have the latest version of apache.

Make sure you have the latest version.









Stephen Valdinger

MIS Helpdesk Coordinator

Dover Chemical Corporation

3676 Davis Rd NW

Dover, OH 44622

330-365-3622

[EMAIL PROTECTED]







Your day probably won't get as bad as this guys……
  --

*From:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED]
*Sent:* Thursday, April 26, 2007 2:39 PM


*To:* Valdinger, Stephen (DOV, MSX)
*Subject:* Re: [Nagios-users] Installation help - CentOS 4.4 Server



This is the user I created:

/usr/sbin/useradd nagios

passwd nagios



But am never prompted to use that account...



On 4/26/07, *Valdinger, Stephen** (DOV, MSX) *<[EMAIL PROTECTED]>
wrote:

Set up a user for nagios ( I suggest nagiosadmin or something similar) and
add that usr to the nagcmd group.















Stephen Valdinger

MIS Helpdesk Coordinator

Dover Chemical Corporation

3676 Davis Rd NW

Dover, OH 44622

330-365-3622

[EMAIL PROTECTED]







Your day probably won't get as bad as this guys……
  --

*From:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED]
*Sent:* Thursday, April 26, 2007 2:12 PM


*To:* Valdinger, Stephen (DOV, MSX)
*Subject:* Re: [Nagios-users] Installation help - CentOS 4.4 Server



I'm logged in as root - do not get prompted to log in to the Nagios app.

On 4/26/07, *Valdinger, Stephen** (DOV, MSX)* <[EMAIL PROTECTED]>
wrote:

Do you authenticate to the webserver when you log on to nagios? You may
need to add that user to nagcmd as well using



/usr/sbin/useradd –G nagcmd *"yourusername" *















Stephen Valdinger

MIS Helpdesk Coordinator

Dover Chemical Corporation

3676 Davis Rd NW

Dover, OH 44622

330-365-3622

[EMAIL PROTECTED]







Your day probably won't get as bad as this guys……
  --

*From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
*Sent:* Thursday, April 26, 2007 2:05 PM
*To:* Valdinger, Stephen (DOV, MSX)
*Cc:* nagios-users@lists.sourceforge.net
*Subject:* Re: [Nagios-users] Installation help - CentOS 4.4 Server



Restarted OK.. and "Things look okay - No serious problems were detected
during the pre-flight check"

As soon as I click one of the Service Detail link I get the permissions
error...

On 4/26/07, *Valdinger, Stephen** (DOV, MSX)* <[EMAIL PROTECTED]>
wrote:

Oh, shit, haha, yes you will have to restart the apache server for the
change to take effect

Also make sure your changes to any config files don't produce and
ERRORS, warnings are ok, but errors cause nagios not to function


To restart server :
service httpd restart


check nagios config:
/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg




Stephen Valdinger
MIS Helpdesk Coordinator
Dover Chemical Corporation
3676 Davis Rd NW
Dover, OH 44622
330-365-3622
 <[EMAIL PROTECTED]>[EMAIL PROTECTED]



Your day probably won't get as bad as this guys..
-Original Message-
From: [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED]
Sent: Thursday, April 26, 2007 1:58 PM
To: Valdinger, Stephen (DOV, MSX)
Subject: Re: [Nagios-users] Installation help - CentOS 4.4 Server

Sorry, that didn't do it... do I have to restart the server or
anything like that?

On 4/26/07, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote:
> Thanks.
>
> /usr/sbin/useradd -G nagcmd www-data
>
>
> That did the trick... the install instructions used a different group
name.
>
>
> On 4/26/07, Valdinger, Stephen (DOV, MSX)
<[EMAIL PROTECTED]>
> wrote:
> > /usr/sbin/useradd -G nagioscmd www-data
> >
> > That should give the webserver access if you have not already done
so
> >
> >
> >
> >
> >
> >
> >
> > Stephen Valdinger
> > MIS Helpdesk Coordinator
> > Dover Chemical Corporation
> > 3676 Davis Rd NW
> > Dover, OH 44622
> > 330-365-3622
> > [EMAIL PROTECTED]
> >
> >
> >
> > Y

Re: [Nagios-users] Installation help - CentOS 4.4 Server

2007-04-26 Thread af . at . work

Restarted OK.. and "Things look okay - No serious problems were detected
during the pre-flight check"

As soon as I click one of the Service Detail link I get the permissions
error...

On 4/26/07, Valdinger, Stephen (DOV, MSX) <[EMAIL PROTECTED]>
wrote:


Oh, shit, haha, yes you will have to restart the apache server for the
change to take effect

Also make sure your changes to any config files don't produce and
ERRORS, warnings are ok, but errors cause nagios not to function


To restart server :
service httpd restart


check nagios config:
/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg




Stephen Valdinger
MIS Helpdesk Coordinator
Dover Chemical Corporation
3676 Davis Rd NW
Dover, OH 44622
330-365-3622
[EMAIL PROTECTED]



Your day probably won't get as bad as this guys..
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 26, 2007 1:58 PM
To: Valdinger, Stephen (DOV, MSX)
Subject: Re: [Nagios-users] Installation help - CentOS 4.4 Server

Sorry, that didn't do it... do I have to restart the server or
anything like that?

On 4/26/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Thanks.
>
> /usr/sbin/useradd -G nagcmd www-data
>
>
> That did the trick... the install instructions used a different group
name.
>
>
> On 4/26/07, Valdinger, Stephen (DOV, MSX)
<[EMAIL PROTECTED]>
> wrote:
> > /usr/sbin/useradd -G nagioscmd www-data
> >
> > That should give the webserver access if you have not already done
so
> >
> >
> >
> >
> >
> >
> >
> > Stephen Valdinger
> > MIS Helpdesk Coordinator
> > Dover Chemical Corporation
> > 3676 Davis Rd NW
> > Dover, OH 44622
> > 330-365-3622
> > [EMAIL PROTECTED]
> >
> >
> >
> > Your day probably won't get as bad as this guys..
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, April 26, 2007 1:52 PM
> > To: Valdinger, Stephen (DOV, MSX)
> > Cc: nagios-users@lists.sourceforge.net
> > Subject: Re: [Nagios-users] Installation help - CentOS 4.4 Server
> >
> > We're cooking now ...
> >
> > I can log in - but get a perms error / warning
> >
> > It appears as though you do not have permission to view information
> > for any of the services 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.
> >
> >
> >
> > On 4/26/07, Valdinger, Stephen (DOV, MSX)
> > <[EMAIL PROTECTED]> wrote:
> > > He should update to version 1.4.8 on the plugins for some of the
stuff
> > > to work in 3.0a2
> > >
> > > wget
> > >
> >
>
http://sourceforge.net/project/downloading.php?group_id=29880&use_mirror
> > > =internap&filename=nagios-plugins-1.4.8.tar.gz&40722747
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > Stephen Valdinger
> > > MIS Helpdesk Coordinator
> > > Dover Chemical Corporation
> > > 3676 Davis Rd NW
> > > Dover, OH 44622
> > > 330-365-3622
> > > [EMAIL PROTECTED]
> > >
> > >
> > >
> > > Your day probably won't get as bad as this guys..
> > >
> > > -Original Message-
> > > From: [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED]
> > > Sent: Thursday, April 26, 2007 1:41 PM
> > > To: Jason Salaz
> > > Cc: nagios-users@lists.sourceforge.net
> > > Subject: Re: [Nagios-users] Installation help - CentOS 4.4 Server
> > >
> > > wget
> > >
> http://osdn.dl.sourceforge.net/sourceforge/nagios/nagios-3.0a2.tar.gz
> > > wget
> > >
> >
>
http://osdn.dl.sourceforge.net/sourceforge/nagiosplug/nagios-plugins-1.4
> > > .7.tar.gz
> > >
> > > On 4/26/07, Jason Salaz < [EMAIL PROTECTED]> wrote:
> > > > [EMAIL PROTECTED] wrote:
> > > > > I have followed the install guide
> > > > > (
> http://nagios.sourceforge.net/docs/3_0/quickstart-fedora.html)
> > down
> > > > > to step #5
> > > > >
> > > > > 5) Configure the Web Interface
> > > > >
> > > > > Install the Nagios web config file in the Apache conf.d
directory.
> > > > >
> > > > > make install-webconf
> > > > >
> > > > >
> > > > > But, after running  'make install-webconf' I get:
> > > > > make: *** No rule to make target `install-webconf'.  Stop.
> > > > >
> > > > > Any help would be most appreciated.
> > > >
> > > > Which version of Nagios are you trying to install?
> > > >
> > > > --
> > > >
> > > >
> > >
> > >
> >
>

> > > -
> > > This SF.net email is sponsored by DB2 Express
> > > Download DB2 Express C - the FREE version of DB2 express and take
> > > control of your XML. No limits. Just data. Click to get it now.
> > > http://sourceforge.net/powerbar/db2/
> > > ___
> > > 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 sen

Re: [Nagios-users] Installation help - CentOS 4.4 Server

2007-04-26 Thread af . at . work
We're cooking now ...

I can log in - but get a perms error / warning

It appears as though you do not have permission to view information
for any of the services 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.



On 4/26/07, Valdinger, Stephen (DOV, MSX)
<[EMAIL PROTECTED]> wrote:
> He should update to version 1.4.8 on the plugins for some of the stuff
> to work in 3.0a2
>
> wget
> http://sourceforge.net/project/downloading.php?group_id=29880&use_mirror
> =internap&filename=nagios-plugins-1.4.8.tar.gz&40722747
>
>
>
>
>
>
>
> Stephen Valdinger
> MIS Helpdesk Coordinator
> Dover Chemical Corporation
> 3676 Davis Rd NW
> Dover, OH 44622
> 330-365-3622
> [EMAIL PROTECTED]
>
>
>
> Your day probably won't get as bad as this guys..
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Thursday, April 26, 2007 1:41 PM
> To: Jason Salaz
> Cc: nagios-users@lists.sourceforge.net
> Subject: Re: [Nagios-users] Installation help - CentOS 4.4 Server
>
> wget
> http://osdn.dl.sourceforge.net/sourceforge/nagios/nagios-3.0a2.tar.gz
> wget
> http://osdn.dl.sourceforge.net/sourceforge/nagiosplug/nagios-plugins-1.4
> .7.tar.gz
>
> On 4/26/07, Jason Salaz <[EMAIL PROTECTED]> wrote:
> > [EMAIL PROTECTED] wrote:
> > > I have followed the install guide
> > > (http://nagios.sourceforge.net/docs/3_0/quickstart-fedora.html) down
> > > to step #5
> > >
> > > 5) Configure the Web Interface
> > >
> > > Install the Nagios web config file in the Apache conf.d directory.
> > >
> > > make install-webconf
> > >
> > >
> > > But, after running  'make install-webconf' I get:
> > > make: *** No rule to make target `install-webconf'.  Stop.
> > >
> > > Any help would be most appreciated.
> >
> > Which version of Nagios are you trying to install?
> >
> > --
> >
> >
>
> 
> -
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> ___
> 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
>
>

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
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] Installation help - CentOS 4.4 Server

2007-04-26 Thread af . at . work

CentOS 4.4

thanks - I will give those a try.

On 4/26/07, Valdinger, Stephen (DOV, MSX) <[EMAIL PROTECTED]>
wrote:


Are you running Fedora or Ubuntu? I have a this solution on the forums.
You can see it here:

http://www.meulie.net/portal_plugins/forum/forum_viewtopic.php?8517

there is also another bit that may help you out :


3) Post install Configuration of Nagios
Edit apache's httpd.conf file. (the location of the httpd.conf file may
differ)

vim /etc/httpd/conf/httpd.conf

Add the following line at the end of the file.

Include /etc/httpd/conf/nagios.conf

Create the file '/etc/httpd/conf/nagios.conf'.

vi /etc/httpd/conf/nagios.conf

Add the following contents to this file.

-
ScriptAlias /nagios/cgi-bin/ /usr/local/nagios/sbin/

AllowOverride AuthConfig
Options ExecCGI
Allow from all
Order allow,deny


Alias /nagios/ /usr/local/nagios/share/

Options None
AllowOverride AuthConfig
Order allow,deny
Allow from all

--


Make sure the updations done with http is fine and restart apache.

#service httpd restart




Stephen Valdinger
MIS Helpdesk Coordinator
Dover Chemical Corporation
3676 Davis Rd NW
Dover, OH 44622
330-365-3622
[EMAIL PROTECTED]



Your day probably won't get as bad as this guys..
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 26, 2007 1:34 PM
To: nagios-users@lists.sourceforge.net
Subject: [Nagios-users] Installation help - CentOS 4.4 Server

I have followed the install guide
(http://nagios.sourceforge.net/docs/3_0/quickstart-fedora.html) down
to step #5

5) Configure the Web Interface

Install the Nagios web config file in the Apache conf.d directory.

make install-webconf


But, after running  'make install-webconf' I get:
make: *** No rule to make target `install-webconf'.  Stop.

Any help would be most appreciated.

Cheers.


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
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


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
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] Installation help - CentOS 4.4 Server

2007-04-26 Thread af . at . work
wget http://osdn.dl.sourceforge.net/sourceforge/nagios/nagios-3.0a2.tar.gz
wget 
http://osdn.dl.sourceforge.net/sourceforge/nagiosplug/nagios-plugins-1.4.7.tar.gz

On 4/26/07, Jason Salaz <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] wrote:
> > I have followed the install guide
> > (http://nagios.sourceforge.net/docs/3_0/quickstart-fedora.html) down
> > to step #5
> >
> > 5) Configure the Web Interface
> >
> > Install the Nagios web config file in the Apache conf.d directory.
> >
> > make install-webconf
> >
> >
> > But, after running  'make install-webconf' I get:
> > make: *** No rule to make target `install-webconf'.  Stop.
> >
> > Any help would be most appreciated.
>
> Which version of Nagios are you trying to install?
>
> --
>
>

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
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] Installation help - CentOS 4.4 Server

2007-04-26 Thread af . at . work
I have followed the install guide
(http://nagios.sourceforge.net/docs/3_0/quickstart-fedora.html) down
to step #5

5) Configure the Web Interface

Install the Nagios web config file in the Apache conf.d directory.

make install-webconf


But, after running  'make install-webconf' I get:
make: *** No rule to make target `install-webconf'.  Stop.

Any help would be most appreciated.

Cheers.

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
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