Ahhaaaa! :)<br><br>Try grepping your way through your configs in order to find where that previous Alias is declared and remove it. Something like this:<br><br>grep -E -r "Alias.*xymon" /etc/httpd<br><br>You'll see all the files that match and the actual matches so you'll know what to remove.<br>
<br>Or maybe even grep for "/var/www/xymon" in there, I have a good feeling that you'll find where the problem is.<br><br>-- <br>kN<br><br><div class="gmail_quote">On Sat, Jan 30, 2010 at 12:16 AM, Ming Qian <span dir="ltr"><<a href="mailto:childpsych.columbia@gmail.com">childpsych.columbia@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">[root@pons /etc/httpd/conf]# pwd<br>/etc/httpd/conf<br>[root@pons /etc/httpd/conf]# ls<br>httpd.conf  magic  Makefile  ssl.crl  ssl.crt  ssl.csr  ssl.key  ssl.prm<br>
[root@pons /etc/httpd/conf]# cp httpd.conf httpd.conf.old<br>
[root@pons /etc/httpd/conf]# cat ../conf.d/hobbit-apache.conf >> httpd.conf<br>[root@pons /etc/httpd/conf]# /etc/init.d/httpd status<br>httpd (pid 30689 30688 30687 30686 30685 30684 30683 30682 30679) is running...<br>

[root@pons /etc/httpd/conf]# /etc/init.d/httpd restart<br>Stopping httpd:                                            [  OK  ]<br>Starting httpd: [Fri Jan 29 17:15:43 2010] [warn] The Alias directive in /etc/httpd/conf/httpd.conf at line 1043 will probably never match because it overlaps an earlier Alias.<br>

[Fri Jan 29 17:15:43 2010] [warn] The ScriptAlias directive in /etc/httpd/conf/httpd.conf at line 1050 will probably never match because it overlaps an earlier ScriptAlias.<br>[Fri Jan 29 17:15:43 2010] [warn] The ScriptAlias directive in /etc/httpd/conf/httpd.conf at line 1058 will probably never match because it overlaps an earlier ScriptAlias.<br>

                                                           [  OK  ]<br>[root@pons /etc/httpd/conf]#</blockquote></div><br>