Nagios is sending "Service Alert: CentOS 5/HTTP is WARNING"

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Nagios is sending "Service Alert: CentOS 5/HTTP is WARNING"
# 1  
Old 01-19-2012
Nagios is sending "Service Alert: CentOS 5/HTTP is WARNING"

Hello All,

I have setup Nagios 3.2.3 on CentOS release 5.7 (Final) with the default config files and added 1 host to it and it is sending "Service Alert: CentOS 5/HTTP is WARNING" frequently, how do you fix this one? what are the additional files that need to be added so that I can monitor the diskspace, desired processes, network interfaces, users, load, cpu usage etc. Are there any additional files that need to be edited?

Thanks
Saikrishna
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies

2. Linux

Read only access for Group called "Developers" to all folders on the Centos 6.6

Linux Gurus, I need to provide Read only access for particular group of users, they should have Read only access to entire server except their Home directory. I tried using setfacl that's not helping. Can you please suggest is there any other alternate way to address this request. Your help is... (5 Replies)
Discussion started by: shekar777
5 Replies

3. UNIX for Dummies Questions & Answers

Using "mailx" command to read "to" and "cc" email addreses from input file

How to use "mailx" command to do e-mail reading the input file containing email address, where column 1 has name and column 2 containing “To” e-mail address and column 3 contains “cc” e-mail address to include with same email. Sample input file, email.txt Below is an sample code where... (2 Replies)
Discussion started by: asjaiswal
2 Replies

4. UNIX for Dummies Questions & Answers

rsync and "zip" windows server 08 to centos 5.7

Hi All, Im new to the forum and have only been using centos or any kind of linux for about 3months. Please forgive the possible stupid question and the mix of windows words where i don't know the linux equivalent. Looking for a bit of advice, relating to rsync(ing) a windows machine. Ive... (2 Replies)
Discussion started by: lukester85
2 Replies

5. UNIX for Dummies Questions & Answers

Nagios alert on HTTP

Getting below alert from Nagios server. How to resolve this issue. Notification Type: PROBLEM Service: HTTPHost: localhostAddress: 127.0.0.1State: WARNINGDate/Time: Fri Mar 2 08:45:21 EST 2012 Additional Info:HTTP WARNING: HTTP/1.1 403 Forbidden - 4183 bytes in 0.001 second response time... (1 Reply)
Discussion started by: lramsb4u
1 Replies

6. Linux

Nagios Installation in CentOS is having "Error #2 "

Hello All, I was trying to install Nagios on CentOS 6.2 by following the below link and having few errors at the "Install Nagios" section in the website, could you please let me know how to get rid of it and successfully install. Install Nagios in CentOS CENTREON 6 | Linux Tutorial I have... (12 Replies)
Discussion started by: lovesaikrishna
12 Replies

7. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

8. Red Hat

"service" , "process" and " daemon" ?

Friends , Anybody plz tell me what is the basic difference between "service" , "process" and " daemon" ? Waiting for kind reply .. .. (1 Reply)
Discussion started by: shipon_97
1 Replies

9. UNIX for Dummies Questions & Answers

Explain the line "mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'`"

Hi Friends, Can any of you explain me about the below line of code? mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'` Im not able to understand, what exactly it is doing :confused: Any help would be useful for me. Lokesha (4 Replies)
Discussion started by: Lokesha
4 Replies
Login or Register to Ask a Question
CURLOPT_KEEP_SENDING_ON_ERROR(3)			     curl_easy_setopt options				  CURLOPT_KEEP_SENDING_ON_ERROR(3)

NAME
CURLOPT_KEEP_SENDING_ON_ERROR - keep sending on early HTTP response >= 300 SYNOPSIS
#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_KEEP_SENDING_ON_ERROR, long keep_sending); DESCRIPTION
A long parameter set to 1 tells the library to keep sending the request body if the HTTP code returned is equal to or larger than 300. The default action would be to stop sending and close the stream or connection. This option is suitable for manual NTLM authentication, i.e. if an application does not use CURLOPT_HTTPAUTH(3), but instead sets "Autho- rization: NTLM ..." headers manually using CURLOPT_HTTPHEADER(3). Most applications do not need this option. DEFAULT
0, stop sending on error PROTOCOLS
HTTP EXAMPLE
TODO AVAILABILITY
Along with HTTP. Added in 7.51.0. RETURN VALUE
Returns CURLE_OK if HTTP is enabled, and CURLE_UNKNOWN_OPTION if not. SEE ALSO
CURLOPT_FAILONERROR(3), CURLOPT_HTTPHEADER(3), libcurl 7.54.0 October 04, 2016 CURLOPT_KEEP_SENDING_ON_ERROR(3)