Date: Sun, 03 Dec 2006 01:11:34 +0100 From: Per olof Ljungmark <peo@intersonic.se> To: VeeJay <maanjee@gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: Please HELP! Message-ID: <45721636.9040004@intersonic.se> In-Reply-To: <2cd0a0da0612021551r7e5cb264xa7408cc6aceda1ed@mail.gmail.com> References: <2cd0a0da0612021551r7e5cb264xa7408cc6aceda1ed@mail.gmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
VeeJay wrote: > Hi > > I am sorry to post this question here but I am desparet to get my freebsd > box work soonest possible. > > I have installed apache20 on my freebsd box but am unable to run with new > httpd.conf changes.... > > When I run the apache, with command: > > # /usr/local/sbin/apachectl restart > > I get this message: > > httpd not running, trying to start > # > In the error log error is like this: > > [Sun Dec 03 01:29:59 2006] [warn] pid file /var/apache/logs/httpd.pid > overwritten -- Unclean shutdown of previous Apache run? > > Even I delete the pid file, but it still doesnt work... > > Please HELP! > > my httpd.conf is mentioned below; > > > # ================================================= > # Basic settings > # ================================================= > Listen 0.0.0.0:80 > User apache > Group apache > ServerAdmin webmaster@domain1.com > UseCanonicalName Off > ServerSignature Off > HostnameLookups Off > ServerTokens Prod > ServerRoot "/usr/local" > DocumentRoot "/home/apache" > PidFile /var/apache/logs/httpd.pid > ScoreBoardFile /var/apache/logs/httpd.scoreboard > <IfModule mod_dir.c> > DirectoryIndex index.html > </IfModule> > > # ================================================= > # HTTP and performance settings > # ================================================= > Timeout 300 > KeepAlive On > MaxKeepAliveRequests 100 > KeepAliveTimeout 15 > <IfModule prefork.c> > MinSpareServers 5 > MaxSpareServers 10 > StartServers 5 > MaxClients 150 > MaxRequestsPerChild 0 > </IfModule> > > # ================================================= > # Load Module Section; Dynamic Shared Object (DSO) Support > # ================================================= > LoadModule access_module libexec/apache2/mod_access.so > LoadModule auth_module libexec/apache2/mod_auth.so > LoadModule log_config_module libexec/apache2/mod_log_config.so > LoadModule mime_module libexec/apache2/mod_mime.so > LoadModule dir_module libexec/apache2/mod_dir.so > LoadModule rewrite_module libexec/apache2/mod_rewrite.so > # Other required modules are compiled such as Compiled in modules: core.c > prefork.c http_core.c mod_so.c > > # ================================================= > # Access control > # ================================================= > <Directory /> > Options None > AllowOverride None > Order deny,allow > Deny from all > </Directory> > <Directory "/home/apache/default/public_html"> > Order allow,deny > Allow from all > </Directory> > > # ================================================= > # MIME encoding > # ================================================= > <IfModule mod_mime.c> > TypesConfig /usr/local/etc/apache2/mime.types > </IfModule> > DefaultType text/plain > <IfModule mod_mime.c> > AddEncoding x-compress .Z > AddEncoding x-gzip .gz .tgz > AddType application/x-compress .Z > AddType application/x-gzip .gz .tgz > AddType application/x-tar .tgz > </IfModule> > > # ================================================= > # Logs > # ================================================= > LogLevel warn > LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" > combined > LogFormat "%h %l %u %t \"%r\" %>s %b" common > LogFormat "%{Referer}i -> %U" referer > LogFormat "%{User-agent}i" agent > ErrorLog /var/apache/logs/error_log > CustomLog /var/apache/logs/access_log combined > > # ================================================= > # Virtual hosts > # ================================================= > NameVirtualHost * > <VirtualHost *> > DocumentRoot "/home/apache/domain1.com/public_html" > ServerName "www.domain1.com" > ErrorLog /var/apache/logs/domain1.com/error_log > CustomLog /var/apache/logs/domain1.com/access_log combined > </VirtualHost> > <VirtualHost *> > DocumentRoot "/home/apache/domain2.com/public_html" > ServerName "www.domain2.com" > ErrorLog /var/apache/logs/domain2.com/error_log > CustomLog /var/apache/logs/domain2.com/access_log combined > </VirtualHost> > Try less /usr/local/etc/rc.d/apache2 Does that answer your question?
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?45721636.9040004>