And,
In /etc/httpd/conf/httpd.conf
<Directory "/var/www/html">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs-2.0/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
Does it matter?
Bruce
On Fri, Jan 29, 2010 at 4:15 PM, Ming Qian <user-88faa238dba4@xymon.invalid>wrote:
Thanks,
drwxr-xr-x 8 xymon xymon 4096 Jan 28 16:44 xymon
/home/xymon is already been set 755.
Bruce
On Fri, Jan 29, 2010 at 4:00 PM, Josh Luthman <user-4c45a83f15cb@xymon.invalid
wrote:
<Directory "/home/xymon/server/www">
Options Indexes FollowSymLinks Includes MultiViews
Order allow,deny
Allow from all
</Directory>
Apache has access
I'd bet since you're on RHEL the /home/xymon is 700
Try
chmod 755 /home/xymon
Josh Luthman
Office: XXX-XXX-XXXX
Direct: XXX-XXX-XXXX
XXXX Wayne St
Suite XXXX
Troy, OH XXXXX
"The secret to creativity is knowing how to hide your sources."
--- Albert Einstein
On Fri, Jan 29, 2010 at 3:57 PM, Ming Qian <user-88faa238dba4@xymon.invalidwrote:
Thank you very much.
I tried like http://192.168.1.50/xymon/
But
/var/log/httpd/error_log said:
[Fri Jan 29 15:55:22 2010] [error] [client 192.168.71.55] (13)Permission
denied: access to /xymon/ denied
Thank you.
Bruce
On Fri, Jan 29, 2010 at 3:47 PM, Josh Luthman <
user-4c45a83f15cb@xymon.invalid> wrote:
Two arguing things in your email:
Alias /xymon/ "/home/xymon/server/www/"
[Fri Jan 29 15:01:20 2010] [error] [client 192.168.71.55] File does not
exist: /var/www/html/xymon
I think your trying http://192.168.1.50/xymon
you should be trying http://192.168.1.50/xymon/
Josh Luthman
Office: XXX-XXX-XXXX
Direct: XXX-XXX-XXXX
XXXX Wayne St
Suite XXXX
Troy, OH XXXXX
"The secret to creativity is knowing how to hide your sources."
--- Albert Einstein
On Fri, Jan 29, 2010 at 3:42 PM, Ming Qian <
user-2a1222167d38@xymon.invalid> wrote:
Dear All,
I installed xymon on my redhat linux. The installation is successful,
but the web access failed.
Here is information:
[root at pons /home]# ll | grep xymon
drwxr-xr-x 8 xymon xymon 4096 Jan 28 16:44 xymon
[root at pons /home]# cd xymon/
[root at pons /home/xymon]# ll
total 40
drwxr-xr-x 2 xymon xymon 4096 Jan 28 16:39 cgi-bin
drwxr-xr-x 2 xymon xymon 4096 Jan 28 16:39 cgi-secure
drwxr-xr-x 7 xymon root 4096 Jan 28 16:39 client
drwxr-xr-x 10 xymon xymon 4096 Jan 28 16:39 data
drwxr-xr-x 9 xymon xymon 4096 Jan 28 16:39 server
[root at pons /home/xymon]# uname -a
Linux pons 2.6.9-67.0.4.ELsmp #1 SMP Fri Jan 18 05:00:00 EST 2008
x86_64 x86_64 x86_64 GNU/Linux
[root at pons /etc/httpd/conf.d]# pwd
/etc/httpd/conf.d
[root at pons /etc/httpd/conf.d]# ls
hobbit-apache.conf perl.conf php.conf python.conf README ssl.conf
webalizer.conf welcome.conf
[root at pons /etc/httpd/conf.d]#
# This file is for Apache 1.3.x and Apache 2.0.x
#
# Add this to your Apache configuration, it makes
# the Xymon webpages and cgi-scripts available in the
# "/xymon" and "/xymon-cgi" URLs.
# NB: The "Alias" line below must NOT be used if you have
# the Xymon webfiles as the root URL. In that case,
# you should instead set this:
#
#DocumentRoot "/home/xymon/server/www"
Alias /xymon/ "/home/xymon/server/www/"
<Directory "/home/xymon/server/www">
Options Indexes FollowSymLinks Includes MultiViews
Order allow,deny
Allow from all
</Directory>
ScriptAlias /xymon-cgi/ "/home/xymon/cgi-bin/"
<Directory "/home/xymon/cgi-bin">
AllowOverride None
Options ExecCGI Includes
Order allow,deny
Allow from all
</Directory>
ScriptAlias /xymon-seccgi/ "/home/xymon/cgi-secure/"
<Directory "/home/xymon/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 /home/xymon/server/etc/hobbitpasswd
USERNAME"
# Add more users / change passwords with "htpasswd
/home/xymon/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 /home/xymon/server/etc/hobbitpasswd
AuthGroupFile /home/xymon/server/etc/hobbitgroups
AuthType Basic
AuthName "Xymon 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>
And,
the httpd log shows:
[Fri Jan 29 15:01:20 2010] [error] [client 192.168.71.55] File does not
exist: /var/www/html/xymon
Thanks a lot,
Best,
Ming