PDA

View Full Version : How to start apache2



alek6cu
04-30-2007, 06:11 PM
Hi everybody.
I've been trying to start apache2 in Knoppix 5.0.1 and keep getting the same error:

Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

After this, when trying to access http://localhost/ firefox gives a blank page and konqueror prints "Connection to host localhost is broken"



Is there some configuration file y need to modify to get it to work? Im using /var/www for server root
I have also noticed that there are several configuration files so i dont know which one to use

Thanks in advance

patelbhavesh
05-01-2007, 05:56 AM
Pls try http://127.0.0.1 and see if that works

brass
05-01-2007, 08:01 PM
Are you using the command: /etc/init.d/apache2 start

to start the web server ?

I believe the configuration file is: apache2.conf

alek6cu
05-02-2007, 02:25 PM
Thanks for the response.

- http://127.0.0.1 does exactly the same thing as http://localhost .
- apache2.conf seems configured ok
- To start the server i've tried both "/etc/init.d/apache2 start" and "/etc/init.d/apache2ctl start" , both give the same error message and neither work.

am i putting my php scripts in the wrong place (/var/www)?
is there some script i need to run before atempting to start apache2?
Where is php.ini by the way? Do i need to chagne something there?

It's kind of frustrating, in knoppix 3.6 everything worked just fine without the need for any modifications. The only reason im trying 5.01 is because my site uses a newer version of mysql.

Thanks for your help.

alek6cu
05-02-2007, 02:48 PM
I believe the configuration file is: apache2.conf

Do you mean "/etc/apache2/apache2.conf" ?

brass
05-02-2007, 07:59 PM
I do believe /var/www is the Document Root. What about File Permissions ? Have you made
the Scripts in the /var/www accessible ?

brass
05-02-2007, 08:11 PM
I believe the php.ini file is in the /etc/php4/apache2 directory.
You might check its settings for: Display Errors, log errors, log error file.

alek6cu
05-03-2007, 01:41 PM
The error messages clears if you add the following line to apache2.conf :

ServerName localhost

Now apache2 starts nice and silently. The thing is (and i know how crazy this sounds) the server only answers to https requests so https://localhost works fine (you have to accept all those certificates before it does) but http://localhost doesn't. And even more: in php.ini the line that loads mysql module is commented and with a typo it sez msql.so where it should be mysql.so

I hope this is helpfull to people with the same problem (the https issue makes me wonder though)