Apache giving 'mod_throttle.c is already added' warning?
I am installed apache (1.3.x) and the throttle mod (mod_throttle), but when i start apache i get this:
# /etc/init.d/apache start Starting web server: apache[Mon Nov 8 08:57:32 2004] [warn] module mod_throttle.c is already added, skipping
It looks like a pretty harmless error which it probably is, but i would rather not have it if possible. The relevent section of the httpd.conf looks like this:
#
# Allow http put (such as Netscape Gold's publish feature)
# Use htpasswd to generate /etc/apache/passwd.
# You must unremark these two lines at the top of this file as well:
#LoadModule put_module modules/mod_put.so
LoadModule throttle_module /usr/lib/apache/1.3/mod_throttle.so
#AddModule mod_put.c
AddModule mod_throttle.c
#
<IfModule mod_throttle.c>
ThrottleClientIP 100 None
ThrottlePolicy Request 5 1
<Location /throttle-status>
SetHandler throttle-status
order deny,allow
Deny from All
allow from 127.0.0.0/255.0.0.0 192.168.123
</Location>
<Location /throttle-me>
SetHandler throttle-me
order deny,allow
Deny from All
allow from 127.0.0.0/255.0.0.0 192.168.123
</Location>
</IfModule>
<Location /apached/>
<IfModule mod_throttle.c>
ThrottlePolicy Speed 40K 1s
</IfModule>
</Location>
Is something making mod_throttle load twice? I mean i only have it there just once, unless some other config file is doing this which i don't know about..
Thanks.
/edit: I ran this command: /usr/sbin/apache-modconf apache, and got the following message:
Error: mod_throttle.so does not have a corresponding .info file.
The above errors might cause apache to not work properly or start
Please refer to the documentation on how to fix it or report it to
Debian Apache Mailing List <debian-apache@lists.debian.org> if in doubt
on how to proceed
Last edited by sk545; 11-08-2004 at 08:14 AM.
|