Hi falko,
Quote:
|
Can you post the part of /etc/apache2/apache2.conf that looks like this?
|
$ cat /etc/apache2/apache2.conf
Code:
....
# prefork MPM
# StartServers ......... number of server processes to start
# MinSpareServers ...... minimum number of server processes which are kept spare# MaxSpareServers ...... maximum number of server processes which are kept spare# MaxClients ........... maximum number of server processes allowed to start
# MaxRequestsPerChild .. maximum number of requests a server process serves
<IfModule prefork.c>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 20
MaxRequestsPerChild 0
</IfModule>
# pthread MPM
# StartServers ......... initial number of server processes to start
# MaxClients ........... maximum number of server processes allowed to start
# MinSpareThreads ...... minimum number of worker threads which are kept spare
# MaxSpareThreads ...... maximum number of worker threads which are kept spare
# ThreadsPerChild ...... constant number of worker threads in each server process
# MaxRequestsPerChild .. maximum number of requests a server process serves
<IfModule worker.c>
StartServers 2
MaxClients 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 0
</IfModule>
# perchild MPM
# NumServers ........... constant number of server processes
# StartThreads ......... initial number of worker threads in each server process
# MinSpareThreads ...... minimum number of worker threads which are kept spare
# MaxSpareThreads ...... maximum number of worker threads which are kept spare
# MaxThreadsPerChild ... maximum number of worker threads in each server process
# MaxRequestsPerChild .. maximum number of connections per server process (then it dies)
<IfModule perchild.c>
NumServers 5
StartThreads 5
MinSpareThreads 5
MaxSpareThreads 10
MaxThreadsPerChild 20
MaxRequestsPerChild 0
AcceptMutex fcntl
</IfModule>
....
Quote:
What's the output of
Code:
ls -la /etc/apache2/mods-enabled
|
$ ls -la /etc/apache2/mods-enabled
Code:
total 8
drwxr-xr-x 2 root root 4096 2006-11-09 11:39 .
drwxr-xr-x 8 root root 4096 2006-11-09 12:15 ..
lrwxrwxrwx 1 root root 36 2006-11-09 11:39 cgi.load -> /etc/apache2/mods-available/cgi.load
lrwxrwxrwx 1 root root 29 2006-11-06 10:48 dav_fs.conf -> ../mods-available/dav_fs.conf
lrwxrwxrwx 1 root root 29 2006-11-06 10:48 dav_fs.load -> ../mods-available/dav_fs.load
lrwxrwxrwx 1 root root 26 2006-11-06 10:48 dav.load -> ../mods-available/dav.load
lrwxrwxrwx 1 root root 30 2006-11-06 10:48 dav_svn.conf -> ../mods-available/dav_svn.conf
lrwxrwxrwx 1 root root 30 2006-11-06 10:48 dav_svn.load -> ../mods-available/dav_svn.load
lrwxrwxrwx 1 root root 37 2006-10-17 04:38 php5.conf -> /etc/apache2/mods-available/php5.conf
lrwxrwxrwx 1 root root 37 2006-10-17 04:38 php5.load -> /etc/apache2/mods-available/php5.load
lrwxrwxrwx 1 root root 36 2006-10-29 17:26 ssl.conf -> /etc/apache2/mods-available/ssl.conf
lrwxrwxrwx 1 root root 36 2006-10-29 17:26 ssl.load -> /etc/apache2/mods-available/ssl.load
lrwxrwxrwx 1 root root 40 2006-10-17 04:38 userdir.conf -> /etc/apache2/mods-available/userdir.conf
lrwxrwxrwx 1 root root 40 2006-10-17 04:38 userdir.load -> /etc/apache2/mods-available/userdir.load
Quote:
and
Code:
ls -la /etc/apache2/mods-available
?
|
$ ls -la /etc/apache2/mods-available
Code:
total 200
drwxr-xr-x 2 root root 4096 2006-11-09 11:39 .
drwxr-xr-x 8 root root 4096 2006-11-09 12:15 ..
-rw-r--r-- 1 root root 66 2006-07-26 18:03 actions.load
-rw-r--r-- 1 root root 60 2006-07-26 18:03 asis.load
-rw-r--r-- 1 root root 70 2006-07-26 18:03 auth_anon.load
-rw-r--r-- 1 root root 68 2006-07-26 18:03 auth_dbm.load
-rw-r--r-- 1 root root 74 2006-07-26 18:03 auth_digest.load
-rw-r--r-- 1 root root 130 2006-07-26 18:03 auth_ldap.load
-rw-r--r-- 1 root root 72 2006-04-06 04:58 auth_mysql.load
-rw-r--r-- 1 root root 62 2006-07-26 18:03 cache.load
-rw-r--r-- 1 root root 70 2006-07-26 18:03 cern_meta.load
-rw-r--r-- 1 root root 61 2006-07-26 18:03 cgid.conf
-rw-r--r-- 1 root root 60 2006-07-26 18:03 cgid.load
-rw-r--r-- 1 root root 58 2006-07-26 18:03 cgi.load
-rw-r--r-- 1 root root 37 2006-07-26 18:03 dav_fs.conf
-rw-r--r-- 1 root root 64 2006-07-26 18:03 dav_fs.load
-rw-r--r-- 1 root root 58 2006-07-26 18:03 dav.load
-rw-r--r-- 1 root root 1283 2006-11-06 11:40 dav_svn.conf
-rw-r--r-- 1 root root 1331 2006-11-06 11:37 dav_svn.conf.original
-rw-r--r-- 1 root root 174 2006-05-08 07:40 dav_svn.load
-rw-r--r-- 1 root root 66 2006-07-26 18:03 deflate.load
-rw-r--r-- 1 root root 72 2006-07-26 18:03 disk_cache.load
-rw-r--r-- 1 root root 66 2006-07-26 18:03 expires.load
-rw-r--r-- 1 root root 72 2006-07-26 18:03 ext_filter.load
-rw-r--r-- 1 root root 72 2006-07-26 18:03 file_cache.load
-rw-r--r-- 1 root root 66 2006-07-26 18:03 headers.load
-rw-r--r-- 1 root root 60 2006-07-26 18:03 imap.load
-rw-r--r-- 1 root root 66 2006-07-26 18:03 include.load
-rw-r--r-- 1 root root 60 2006-07-26 18:03 info.load
-rw-r--r-- 1 root root 60 2006-07-26 18:03 ldap.load
-rw-r--r-- 1 root root 70 2006-07-26 18:03 mem_cache.load
-rw-r--r-- 1 root root 85 2006-07-26 18:03 mime_magic.conf
-rw-r--r-- 1 root root 72 2006-07-26 18:03 mime_magic.load
-rw-r--r-- 1 root root 133 2006-07-18 23:21 php5.conf
-rw-r--r-- 1 root root 59 2006-07-18 23:21 php5.load
-rw-r--r-- 1 root root 840 2006-07-26 18:03 proxy.conf
-rw-r--r-- 1 root root 78 2006-07-26 18:03 proxy_connect.load
-rw-r--r-- 1 root root 70 2006-07-26 18:03 proxy_ftp.load
-rw-r--r-- 1 root root 72 2006-07-26 18:03 proxy_http.load
-rw-r--r-- 1 root root 316 2006-07-26 18:03 proxy.load
-rw-r--r-- 1 root root 66 2006-07-26 18:03 rewrite.load
-rw-r--r-- 1 root root 66 2006-07-26 18:03 speling.load
-rw-r--r-- 1 root root 3545 2006-07-26 18:03 ssl.conf
-rw-r--r-- 1 root root 58 2006-07-26 18:03 ssl.load
-rw-r--r-- 1 root root 64 2006-07-26 18:03 suexec.load
-rw-r--r-- 1 root root 70 2006-07-26 18:03 unique_id.load
-rw-r--r-- 1 root root 244 2006-07-26 18:03 userdir.conf
-rw-r--r-- 1 root root 66 2006-07-26 18:03 userdir.load
-rw-r--r-- 1 root root 70 2006-07-26 18:03 usertrack.load
-rw-r--r-- 1 root root 74 2006-07-26 18:03 vhost_alias.load
Tks
B.R.
satimis