Which modules are installed for APACHE?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Which modules are installed for APACHE?
# 1  
Old 01-14-2009
Which modules are installed for APACHE?

Is there some way I can tell which modules I have installed for APACHE? Would it be in httpd.conf?

Last edited by mojoman; 01-14-2009 at 01:48 PM..
# 2  
Old 01-14-2009
One way ...
Code:
httpd -l         # for static modules
httpd -M         # for shared modules

# 3  
Old 01-14-2009
Quote:
Originally Posted by fpmurphy
One way ...
Code:
httpd -l         # for static modules
httpd -M         # for shared modules


What is the difference between a static module and a shared module?
Is static module that is compiled in and shared one that is dynamically loaded.

As well, for APACHE 2.2, is the dynamic loaded feature automatically compiled such that all I have to use is LoadModule in httpd.conf? If not, how do I enable it?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Web Development

<Apache>error when compiling CPP modules

Hi, I am working on Linux Platform. I am just trying to port a CPP module to apache as a module. When I try to build the Apache , it throws an error as follows libtool: unrecognized option `-DLINUX=2' Later I did some search and changed the config_vars.mk file under the "build" directory of... (0 Replies)
Discussion started by: ashabb
0 Replies

2. Shell Programming and Scripting

how to create custom modules in perl and how to import all modules with single command?

I have some custom functions which i want to use in perl Scripting all time. i want to How to create modules in perl and how to import them. Also if i create 15 modules and i want to > import all at once then how can i import? (0 Replies)
Discussion started by: Navrattan Bansa
0 Replies

3. UNIX for Advanced & Expert Users

Apache modules query

How and where can I see the list of modules that my Apache is running with. Note the httpd.conf can be altered after apache start so we can say for sure that the modules mentioned in there are the once that apache has loaded currently. Kindly help. (2 Replies)
Discussion started by: mohtashims
2 Replies

4. Red Hat

Installed apache server , can't connect from outside (using CentOS in WMware )

Hello all I installed apache in CentOS 5.5 ,after searching the web for tips on configuration I did the fallowing stuff to unable connecting the http server from outside. In /etc/httpd/conf/httpd.conf I changed the Listen value to 0.0.0.8011 Then checked with then check with: netstat -anp and I... (2 Replies)
Discussion started by: umen
2 Replies

5. Solaris

Apache modules different sizes on 2 servers

Hi I have built 2 modules on 2 different servers (both nodes in a cluster) and the files sizes are different for the same module on each server (size in bytes): Server1: 45592 mod_deflate.so Server2: 45540 mod_deflate.so Server1: 38400 mod_headers.so Server2: 38368 mod_headers.so ... (3 Replies)
Discussion started by: skewbie
3 Replies

6. Solaris

apache installed or not

How to check out apache is installed in unix box ? i don't have execute for httpd -v command and also i don't have 'apache' directory under /usr/local but i could able to see many httpd processes running on the server. (2 Replies)
Discussion started by: Masanamuthu
2 Replies

7. Solaris

How to identify which type of Apache is installed?

Hi, I need to find out which type of Apache is installed. following is the list of Apache types Covalent, IBM HTTP, HP Apache-based, Oracle, Stronghold and may be some other as well. If anyone know how to figure out this, please share it with me. Thanks Sarwan (3 Replies)
Discussion started by: sarwan
3 Replies

8. Linux

Which modules get installed with modules_install

I'm trying to build a 2.6.18 kernel for XEN (level 0), and I need to make an initrd image that will utilize our HP's raid/scsi driver (cciss.o). The driver is being built and I can see it in drivers/block/cciss.o. But when I do "make modules_install", this module is not copied into the... (2 Replies)
Discussion started by: otheus
2 Replies

9. Solaris

How to check for installed Perl modules on solaris?

Is there a quick way to check for installed perl modules on a solaris server? I found using perl -e "use Crypt::DES" will work for checking one package at a time. I was wondering if there was anything else out there? (4 Replies)
Discussion started by: jsandova
4 Replies

10. UNIX for Dummies Questions & Answers

Howto locate locally installed Perl module for a CGI script in APACHE .htaccess

Hi, I have the following simple CGI script, just containg header: #!/usr/bin/perl -w use CGI ':standard'; use lib "/home/myname/lib/perl5/site_perl/5.8.5/"; use Mail::Sendmail; I also have included this directive in ~/public_html/.htaccess : SetEnv PERL5LIB... (0 Replies)
Discussion started by: monkfan
0 Replies
Login or Register to Ask a Question