|
As I say, have you checked that apache is not already running? The fact that you are seeing an error when starting apache is that it could already be running.
Webmin -> System -> Running Processes
Press Ctrl-F on the page or use the search option and check for
apache
If you have root access to the server you could try this:
ps aux | grep apache
If it's there in either case then it's already running and you don't need to start it again.
If it's not running then to find out what is using port 80 already try:
netstat -pan
or
netstat -lnp | grep :80'
That should give you a clue as to what is using port 80.
Last edited by Frank Rizzo; 02-22-2005 at 06:45 AM..
|