Xymon Mailing List Archive search

**Caution-External**: RE: [hobbit] monitoring files and messages-newbie

list Santoshbabu Perumal
Thu, 15 Nov 2007 23:06:14 -0500
Message-Id: <user-acc67eaf3098@xymon.invalid>

Thanks for your reply.i am not much familiar with apache.i will try to
find it.if you have time plese help me .
 
Thanks
  santhosh.p


From: Josh Luthman [mailto:user-4c45a83f15cb@xymon.invalid] 
Sent: Thursday, November 15, 2007 10:03 PM
To: user-ae9b8668bcde@xymon.invalid
Subject: Re: [hobbit] RE: **Caution-External**: RE: [hobbit] monitoring
files and messages-newbie


Is that all of your httpd.conf that you posted up there?  There needs to
be a hell of a lot more then that for Apache to work!!!


On 11/15/07, Perumal, Santoshbabu <user-bc15f54a09ea@xymon.invalid>
wrote: 

	HI,
	       Stil i have not able to view the files.
	 
	 hobbit made hobbit-apache.conf file and and httpd.conf file are
exactly same.
	 
	FYI
	     more hobbit-apache.conf 
	# This file is for Apache 1.3.x and Apache 2.0.x
	#
	# Add this to your Apache configuration, it makes
	# the Hobbit webpages and cgi-scripts available in the
	# "/hobbit" and "/hobbit-cgi" URLs.
	 
	
	# NB: The "Alias" line below must NOT be used if you have
	#     the Hobbit webfiles as the root URL. In that case,
	#     you should instead set this:
	#
	#          DocumentRoot /fs4_backup/hobbit/server/www
	 
	Alias /hobbit/  "/fs4_backup/hobbit/server/www/"
	<Directory "/fs4_backup/hobbit/server/www">
	    Options Indexes FollowSymLinks Includes MultiViews
	    Order allow,deny
	    Allow from all
	</Directory>
	 
	ScriptAlias /hobbit-cgi/ "/fs4_backup/hobbit/cgi-bin/"
	<Directory "/fs4_backup/hobbit/cgi-bin">
	    AllowOverride None
	    Options ExecCGI Includes
	    Order allow,deny
	    Allow from all
	</Directory>
	 
	ScriptAlias /hobbit-seccgi/ "/fs4_backup/hobbit/cgi-secure/"
	<Directory "/fs4_backup/hobbit/cgi-secure">
	    AllowOverride None
	    Options ExecCGI Includes
	    Order allow,deny
	    Allow from all
	 
	    # Password file where users with access to these scripts are
kept.
	    # Create it with "htpasswd -c
/fs4_backup/hobbit/server/etc/hobbitpasswd USERNAME"
	    # Add more users / change passwords with "htpasswd
/fs4_backup/hobbit/server/etc/hobbitpasswd USERNAME"
	    #
	    # You can also use a group file to restrict admin access to
members of a
	    # group, instead of anyone who is logged in. In that case
you must setup
	    # the "hobbitgroups" file, and change the "Require" settings
to require
	    # a specific group membership. See the Apache docs for more
details.
	 
	    AuthUserFile /fs4_backup/hobbit/server/etc/hobbitpasswd
	    AuthGroupFile /fs4_backup/hobbit/server/etc/hobbitgroups
	    AuthType Basic
	    AuthName "Hobbit Administration"
	 
	    # "valid-user" restricts access to anyone who is logged in.
	    Require valid-user
	 
	    # "group admins" restricts access to users who have logged
in, AND
	    # are members of the "admins" group in hobbitgroups.
	    # Require group admins
	 
	</Directory>
	 
	httpd.conf
	    Alias /hobbit/  "/fs4_backup/hobbit/server/www/"
	<Directory "/fs4_backup/hobbit/server/www">
	    Options Indexes FollowSymLinks Includes MultiViews
	    Order allow,deny
	    Allow from all
	</Directory>
	 
	ScriptAlias /hobbit-cgi/ "/fs4_backup/hobbit/cgi-bin/"
	<Directory "/fs4_backup/hobbit/cgi-bin">
	    AllowOverride None
	    Options ExecCGI Includes
	    Order allow,deny
	    Allow from all
	</Directory>
	 
	ScriptAlias /hobbit-seccgi/ "/fs4_backup/hobbit/cgi-secure/"
	<Directory "/fs4_backup/hobbit/cgi-secure">
	    AllowOverride None
	    Options ExecCGI Includes
	    Order allow,deny
	    Allow from all
	 
	    # Password file where users with access to these scripts are
kept.
	    # Create it with "htpasswd -c
/fs4_backup/hobbit/server/etc/hobbitpasswd USERNAME"
	    # Add more users / change passwords with "htpasswd
/fs4_backup/hobbit/server/etc/hobbitpasswd USERNAME"
	    #
	    # You can also use a group file to restrict admin access to
members of a
	    # group, instead of anyone who is logged in. In that case
you must setup
	    # the "hobbitgroups" file, and change the "Require" settings
to require
	    # a specific group membership. See the Apache docs for more
details.
	 
	    AuthUserFile /fs4_backup/hobbit/server/etc/hobbitpasswd
	    AuthGroupFile /fs4_backup/hobbit/server/etc/hobbitgroups
	    AuthType Basic
	    AuthName "Hobbit Administration"
	 
	    # "valid-user" restricts access to anyone who is logged in.
	    Require valid-user
	 
	    # "group admins" restricts access to users who have logged
in, AND
	    # are members of the "admins" group in hobbitgroups.
	    # Require group admins
	 
	</Directory>
	
	 
	please help me on this.basically we need sar output graphs.is it
possible on HOBBIT?
	 
	Thanks
	   santhosh.p
	
	
	From: Josh Luthman [mailto:user-4c45a83f15cb@xymon.invalid] 
	Sent: Wednesday, November 14, 2007 1:23 PM 
	
	To: user-ae9b8668bcde@xymon.invalid 
	Subject: Re: [hobbit] RE: **Caution-External**: RE: [hobbit]
monitoring files and messages-newbie
	

	Probably not in the sense that you're thinking, but yes.
	
	If you click on the links does it have you download the *sh
files?  If so you skipped the last part of the install!  I'm assuming
you're using Apache as you're web server as it is Solaris.  Find your
httpd.conf and you'll need to refer to the Hobbit made
~hobbit/server/etc/hobbit-apache.conf
	
	Once you put the configuration in try an apachectl configtest
and if that returns Syntax OK then go ahead and apachectl graceful
(those commands may differ for you, they did work on my 5.8 Solaris box
many years ago...).
	
	Afterward click on the links and see the wonders of Hobbit!
	
	
	On 11/14/07, Perumal, Santoshbabu <
user-bc15f54a09ea@xymon.invalid <mailto:user-bc15f54a09ea@xymon.invalid> >
wrote: 

		we are using IE browser.do i need to install anything to
view the files.
		 
		Thanks
		   santhosh.p
		   

		From: Josh Luthman [mailto:user-4c45a83f15cb@xymon.invalid] 
		Sent: Wednesday, November 14, 2007 11:49 AM
		To: user-ae9b8668bcde@xymon.invalid
		Subject: Re: [hobbit] RE: **Caution-External**: RE:
[hobbit] monitoring files and messages-newbie
		
		
		Erm...when you say these
		
		"i can see the  file on the gui right now.but    cann
not view the contents of the file.if i click it is saying that unknown
filetype(opens small window).can anyone help me on this" 
		
		or "if i click any of  the files to view it is popping
up new window ..."
		
		Are you referring to something like JDM or X?  Or are
you referring to using a browser like IE or Firefox?
		
		Josh
		
		
		On 11/14/07, Perumal, Santoshbabu
<user-bc15f54a09ea@xymon.invalid> wrote: 

			Hi,
			      my problem on viewing files has not been
resolved yet.u can see the list of files if i click any of the files to
view it is popping up new window saying 
			 
			   do you want to save this file
			      Name:bb-hostsvc.sh
			      Type  :Unknown File Type
			       From :
nypplweblogs.platts.mcgraw-hill.com
<http://nypplweblogs.platts.mcgraw-hill.com>;       
			 
			.my hobbit-clients.cfg file
			    HOST=tower
			    FILE /var/adm/sa/sar* TRACK=sarlog
			
			my hobbit-client.cfg file
			   [tower]
			file:`ls -t -1 /var/adm/sa/sar*`
			log:/var/adm/messages
			
			  
			 what could be the problem?please advice on this
			 
			 
			The information contained in this message is
intended only for the recipient, and may be a confidential
attorney-client communication or may otherwise be privileged and
confidential and protected from disclosure. If the reader of this
message is not the intended recipient, or an employee or agent
responsible for delivering this message to the intended recipient,
please be aware that any dissemination or copying of this communication
is strictly prohibited. If you have received this communication in
error, please immediately notify us by replying to the message and
deleting it from your computer.  The McGraw-Hill Companies, Inc.
reserves the right, subject to applicable local law, to monitor and
review the content of any electronic message or information sent to or
from McGraw-Hill employee e-mail addresses without informing the sender
or recipient of the message. 

			
		-- 
		Josh Luthman
		Office: XXX-XXX-XXXX
		Direct: XXX-XXX-XXXX
		XXXX Wayne St
		Suite XXXX
		Troy, OH XXXXX
		
		Those who don't understand UNIX are condemned to
reinvent it, poorly. 
		--- Henry Spencer 


	-- 
	Josh Luthman
	Office: XXX-XXX-XXXX
	Direct: XXX-XXX-XXXX
	XXXX Wayne St
	Suite XXXX
	Troy, OH XXXXX
	
	Those who don't understand UNIX are condemned to reinvent it,
poorly. 
	--- Henry Spencer 


-- 
Josh Luthman
Office: XXX-XXX-XXXX
Direct: XXX-XXX-XXXX
XXXX Wayne St
Suite XXXX
Troy, OH XXXXX

Those who don't understand UNIX are condemned to reinvent it, poorly. 
--- Henry Spencer