[us...@httpd] Sudden death

2009-07-11 Thread Jos Chrispijn

[Apache 1.3.41_1]

Two days ago I rebooted my system and for some reason my apache server 
doesn't start anymore. I understand that this might be caused by port 
updates that have been processed during the time my system was live; 
just had a look in my httpd.conf and system log file (all.log), but no 
sign of origin of the problem. Can I somehow start apache in debug mode 
to find out what might be wrong here? Thanks.


[httpd.conf]

##
## httpd.conf
##

### Section 1: Global Environment

ServerRoot   /usr/local/
#LockFile/var/run/httpd.lock
PidFile  /var/run/httpd.pid
ScoreBoardFile   /var/run/httpd.scoreboard
Timeout  300
KeepAliveOn
MaxKeepAliveRequests 100
KeepAliveTimeout 15
MinSpareServers  5
MaxSpareServers  10
StartServers 5
MaxClients   150
MaxRequestsPerChild  0

LoadModule mmap_static_module libexec/apache/mod_mmap_static.so
LoadModule vhost_alias_module libexec/apache/mod_vhost_alias.so
LoadModule env_module libexec/apache/mod_env.so
LoadModule config_log_module  libexec/apache/mod_log_config.so
LoadModule mime_magic_module  libexec/apache/mod_mime_magic.so
LoadModule mime_modulelibexec/apache/mod_mime.so
LoadModule negotiation_module libexec/apache/mod_negotiation.so
LoadModule status_module  libexec/apache/mod_status.so
LoadModule info_modulelibexec/apache/mod_info.so
LoadModule includes_modulelibexec/apache/mod_include.so
LoadModule autoindex_module   libexec/apache/mod_autoindex.so
LoadModule dir_module libexec/apache/mod_dir.so
LoadModule cgi_module libexec/apache/mod_cgi.so
LoadModule asis_modulelibexec/apache/mod_asis.so
LoadModule imap_modulelibexec/apache/mod_imap.so
LoadModule action_module  libexec/apache/mod_actions.so
LoadModule speling_module libexec/apache/mod_speling.so
LoadModule userdir_module libexec/apache/mod_userdir.so
LoadModule alias_module   libexec/apache/mod_alias.so
LoadModule rewrite_module libexec/apache/mod_rewrite.so
LoadModule access_module  libexec/apache/mod_access.so
LoadModule auth_modulelibexec/apache/mod_auth.so
LoadModule anon_auth_module   libexec/apache/mod_auth_anon.so
LoadModule db_auth_module libexec/apache/mod_auth_db.so
LoadModule digest_module  libexec/apache/mod_digest.so
LoadModule proxy_module   libexec/apache/libproxy.so
LoadModule cern_meta_module   libexec/apache/mod_cern_meta.so
LoadModule expires_module libexec/apache/mod_expires.so
LoadModule headers_module libexec/apache/mod_headers.so
LoadModule usertrack_module   libexec/apache/mod_usertrack.so
LoadModule unique_id_module   libexec/apache/mod_unique_id.so
LoadModule setenvif_modulelibexec/apache/mod_setenvif.so
LoadModule php5_modulelibexec/apache/libphp5.so

ClearModuleList
AddModule mod_mmap_static.c
AddModule mod_vhost_alias.c
AddModule mod_env.c
AddModule mod_log_config.c
AddModule mod_mime_magic.c
AddModule mod_mime.c
AddModule mod_negotiation.c
AddModule mod_status.c
AddModule mod_info.c
AddModule mod_include.c
AddModule mod_autoindex.c
AddModule mod_dir.c
AddModule mod_cgi.c
AddModule mod_asis.c
AddModule mod_imap.c
AddModule mod_actions.c
AddModule mod_speling.c
AddModule mod_userdir.c
AddModule mod_alias.c
AddModule mod_rewrite.c
AddModule mod_access.c
AddModule mod_auth.c
AddModule mod_auth_anon.c
AddModule mod_auth_db.c
AddModule mod_digest.c
AddModule mod_proxy.c
AddModule mod_cern_meta.c
AddModule mod_expires.c
AddModule mod_headers.c
AddModule mod_usertrack.c
AddModule mod_unique_id.c
AddModule mod_so.c
AddModule mod_setenvif.c
AddModule mod_php5.c

### Section 2: 'Main' server configuration

Port 80
User www
Groupwww
ServerAdmin  m...@mysite.com
ServerName   myserserver.mysite.com
DocumentRoot /usr/local/www

Directory /
   Options FollowSymLinks
   AllowOverride None
/Directory

Directory /usr/www
   Options Indexes FollowSymLinks MultiViews ExecCGI Includes
   AllowOverride AuthConfig Limit Indexes Options FileInfo
   Order allow,deny
   Allow from all
/Directory

IfModule mod_userdir.c
   UserDir public_html
/IfModule

IfModule mod_dir.c
   IfModule mod_php3.c
   IfModule mod_php4.c
   DirectoryIndex index.php index.php3 index.html
   /IfModule
   IfModule !mod_php4.c
   DirectoryIndex index.php3 index.html
   /IfModule
   /IfModule
   IfModule !mod_php3.c
   IfModule mod_php4.c
   DirectoryIndex index.php index.html index.htm
   /IfModule
   IfModule mod_php5.c
   DirectoryIndex index.php index.html index.htm
   /IfModule
   IfModule !mod_php4.c
   DirectoryIndex index.html
   /IfModule
   /IfModule
/IfModule

AccessFileName .htaccess

Files ~ ^\.ht
   Order allow,deny
   Deny from all
   Satisfy All
/Files

UseCanonicalName On

IfModule mod_mime.c
   TypesConfig /usr/local/etc/apache/mime.types
/IfModule

DefaultType 

Re: [us...@httpd] Sudden death

2009-07-11 Thread Francois Gingras
Jos,

Pasting the whole config file is not particularly useful.

Try tell us what the error log contains, or starting httpd with httpd
-X, or running it with gdb.

Frank

On Sat, Jul 11, 2009 at 5:48 PM, Jos Chrispijnapa...@webrz.net wrote:
 [Apache 1.3.41_1]

 Two days ago I rebooted my system and for some reason my apache server
 doesn't start anymore. I understand that this might be caused by port
 updates that have been processed during the time my system was live; just
 had a look in my httpd.conf and system log file (all.log), but no sign of
 origin of the problem. Can I somehow start apache in debug mode to find out
 what might be wrong here? Thanks.

 [httpd.conf]

 ##
 ## httpd.conf
 ##

 ### Section 1: Global Environment

 ServerRoot   /usr/local/
 #LockFile/var/run/httpd.lock
 PidFile  /var/run/httpd.pid
 ScoreBoardFile   /var/run/httpd.scoreboard
 Timeout  300
 KeepAliveOn
 MaxKeepAliveRequests 100
 KeepAliveTimeout 15
 MinSpareServers  5
 MaxSpareServers  10
 StartServers 5
 MaxClients   150
 MaxRequestsPerChild  0

 LoadModule mmap_static_module libexec/apache/mod_mmap_static.so
 LoadModule vhost_alias_module libexec/apache/mod_vhost_alias.so
 LoadModule env_module libexec/apache/mod_env.so
 LoadModule config_log_module  libexec/apache/mod_log_config.so
 LoadModule mime_magic_module  libexec/apache/mod_mime_magic.so
 LoadModule mime_modulelibexec/apache/mod_mime.so
 LoadModule negotiation_module libexec/apache/mod_negotiation.so
 LoadModule status_module  libexec/apache/mod_status.so
 LoadModule info_modulelibexec/apache/mod_info.so
 LoadModule includes_modulelibexec/apache/mod_include.so
 LoadModule autoindex_module   libexec/apache/mod_autoindex.so
 LoadModule dir_module libexec/apache/mod_dir.so
 LoadModule cgi_module libexec/apache/mod_cgi.so
 LoadModule asis_modulelibexec/apache/mod_asis.so
 LoadModule imap_modulelibexec/apache/mod_imap.so
 LoadModule action_module  libexec/apache/mod_actions.so
 LoadModule speling_module libexec/apache/mod_speling.so
 LoadModule userdir_module libexec/apache/mod_userdir.so
 LoadModule alias_module   libexec/apache/mod_alias.so
 LoadModule rewrite_module libexec/apache/mod_rewrite.so
 LoadModule access_module  libexec/apache/mod_access.so
 LoadModule auth_modulelibexec/apache/mod_auth.so
 LoadModule anon_auth_module   libexec/apache/mod_auth_anon.so
 LoadModule db_auth_module libexec/apache/mod_auth_db.so
 LoadModule digest_module  libexec/apache/mod_digest.so
 LoadModule proxy_module   libexec/apache/libproxy.so
 LoadModule cern_meta_module   libexec/apache/mod_cern_meta.so
 LoadModule expires_module libexec/apache/mod_expires.so
 LoadModule headers_module libexec/apache/mod_headers.so
 LoadModule usertrack_module   libexec/apache/mod_usertrack.so
 LoadModule unique_id_module   libexec/apache/mod_unique_id.so
 LoadModule setenvif_modulelibexec/apache/mod_setenvif.so
 LoadModule php5_modulelibexec/apache/libphp5.so

 ClearModuleList
 AddModule mod_mmap_static.c
 AddModule mod_vhost_alias.c
 AddModule mod_env.c
 AddModule mod_log_config.c
 AddModule mod_mime_magic.c
 AddModule mod_mime.c
 AddModule mod_negotiation.c
 AddModule mod_status.c
 AddModule mod_info.c
 AddModule mod_include.c
 AddModule mod_autoindex.c
 AddModule mod_dir.c
 AddModule mod_cgi.c
 AddModule mod_asis.c
 AddModule mod_imap.c
 AddModule mod_actions.c
 AddModule mod_speling.c
 AddModule mod_userdir.c
 AddModule mod_alias.c
 AddModule mod_rewrite.c
 AddModule mod_access.c
 AddModule mod_auth.c
 AddModule mod_auth_anon.c
 AddModule mod_auth_db.c
 AddModule mod_digest.c
 AddModule mod_proxy.c
 AddModule mod_cern_meta.c
 AddModule mod_expires.c
 AddModule mod_headers.c
 AddModule mod_usertrack.c
 AddModule mod_unique_id.c
 AddModule mod_so.c
 AddModule mod_setenvif.c
 AddModule mod_php5.c

 ### Section 2: 'Main' server configuration

 Port 80
 User www
 Groupwww
 ServerAdmin  m...@mysite.com
 ServerName   myserserver.mysite.com
 DocumentRoot /usr/local/www

 Directory /
 Options FollowSymLinks
 AllowOverride None
 /Directory

 Directory /usr/www
 Options Indexes FollowSymLinks MultiViews ExecCGI Includes
 AllowOverride AuthConfig Limit Indexes Options FileInfo
 Order allow,deny
 Allow from all
 /Directory

 IfModule mod_userdir.c
 UserDir public_html
 /IfModule

 IfModule mod_dir.c
 IfModule mod_php3.c
 IfModule mod_php4.c
 DirectoryIndex index.php index.php3 index.html
 /IfModule
 IfModule !mod_php4.c
 DirectoryIndex index.php3 index.html
 /IfModule
 /IfModule
 IfModule !mod_php3.c
 IfModule mod_php4.c
 DirectoryIndex index.php index.html index.htm
 /IfModule
 IfModule mod_php5.c