LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Looking for apache modules (https://www.linuxquestions.org/questions/linux-newbie-8/looking-for-apache-modules-207440/)

dominant 07-20-2004 11:00 AM

Looking for apache modules
 
I was trying to restrict anonymus visits in my server when i realized that the mod_auth module has not been installed

i searched all the files

# find / -name mod_auth* -print

And here is the result

mod_auth.c
mod_auth.o


Now what should i do?

afm 07-20-2004 10:54 PM

Re: Looking for apache modules
 
Quote:

Originally posted by dominant
I was trying to restrict anonymus visits in my server when i realized that the mod_auth module has not been installed

i searched all the files

# find / -name mod_auth* -print

And here is the result

mod_auth.c
mod_auth.o


Now what should i do?

Your find command is wrong.

Try:

# find / -name "mod_auth*" -print

Also please copy-and-paste actual output from find. Help us to help you. find could never give you an output like that, because you ordered it to go from / (output files should always start with "/" then).

dominant 07-21-2004 02:26 AM

Here is the httpd -l command

Code:

# httpd -l
Compiled-in modules:
  http_core.c
  mod_log_config.c
  mod_mime.c
  mod_status.c
  mod_autoindex.c
  mod_dir.c
  mod_cgi.c
  mod_actions.c
  mod_alias.c
  mod_rewrite.c
  mod_access.c
  mod_expires.c
  mod_setenvif.c
  mod_ssl.c
  mod_php4.c
suexec: enabled; valid wrapper /usr/local/apache/bin/suexec



All times are GMT -5. The time now is 08:22 AM.