somebody fix my server please!

Associate
Joined
4 Jun 2010
Posts
1,279
i just started using apache 2.2 following this guide i did what it said up to the point where i needed to restart my server, it would not restart, kept on telling me "the request operation has failed" the even logs are:

Starting the Apache2.2 service
The Apache2.2 service is running.
rmine the server's fully qualified domain name, using *******.*.* for ServerName
[Sun Dec 19 09:01:37 2010] [notice] Apache/2.2.17 (Win32) configured -- resuming normal operations
[Sun Dec 19 09:01:37 2010] [notice] Server built: Oct 18 2010 01:58:12
[Sun Dec 19 09:01:37 2010] [notice] Parent: Created child process 1264
httpd.exe: Could not reliably determine the server's fully qualified domain name, using ***.***.*.* for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using ***.***.*.* for ServerName
[Sun Dec 19 09:01:37 2010] [notice] Child 1264: Child process is running
[Sun Dec 19 09:01:37 2010] [notice] Child 1264: Acquired the start mutex.
[Sun Dec 19 09:01:37 2010] [notice] Child 1264: Starting 64 worker threads.
[Sun Dec 19 09:01:37 2010] [notice] Child 1264: Starting thread to listen on port 80.
[Sun Dec 19 09:01:50 2010] [error] [client 127.0.0.1] File does not exist: C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/favicon.ico
[Sun Dec 19 09:01:53 2010] [error] [client 127.0.0.1] File does not exist: C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/favicon.ico
[Sun Dec 19 09:08:09 2010] [notice] Parent: Received restart signal -- Restarting the server.
[Sun Dec 19 09:08:09 2010] [notice] Child 1264: Exit event signaled. Child process is ending.
Syntax error on line 179 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf:
DocumentRoot takes one argument, Root directory of the document tree
[Sun Dec 19 09:08:09 2010] [warn] (OS 995)The I/O operation has been aborted because of either a thread exit or an application request. : winnt_accept: Asynchronous AcceptEx failed.
[Sun Dec 19 09:08:10 2010] [notice] Child 1264: Released the start mutex
[Sun Dec 19 09:08:11 2010] [notice] Child 1264: All worker threads have exited.
[Sun Dec 19 09:08:11 2010] [notice] Child 1264: Child process is exiting


NOTE that i have stared out my IP

if anyone can help me with this then its greatly appreciated because i really want to get this up and running

thanks all :)
 
Could be this:

Syntax error on line 179 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf:
DocumentRoot takes one argument, Root directory of the document tree

Can you post that line (and a few either side)?
 
this is lines 174 - 180
#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs "C:/Program Files/Apache Group/Apache2/htdocs"
DocumentRoot "C:/Administrator/My Musi

line 179 is exactly :

DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs "C:/Program Files/Apache Group/Apache2/htdocs"
 
Looks like you didn't comment out the old DocumentRoot by adding a hash in front.

Code:
DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs "C:/Program Files/Apache Group/Apache2/htdocs"
DocumentRoot "C:/Administrator/My Musi

CHANGE TO:
Code:
#DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs"
DocumentRoot "C:/Administrator/My Music"

You can remove the commented line all together if you want.

Craig
 
Last edited:
Looks like you didn't comment out the old DocumentRoot by adding a hash in front.

Code:
DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs "C:/Program Files/Apache Group/Apache2/htdocs"
DocumentRoot "C:/Administrator/My Musi

CHANGE TO:
Code:
#DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs"
DocumentRoot "C:/Administrator/My Music"

You can remove the commented line all together if you want.

Craig

this worked thanks a bunch i'm new to this stuff you see :)
 
Back
Top Bottom