views:

135

answers:

2

Not Found

The requested URL / was not found on this server. Apache/2.2.11 (Ubuntu) PHP/5.2.6-3ubuntu4.2 with Suhosin-Patch Server at localhost Port 80

Am getting this error while am accessing http://localhost/

  • Apache,phpmyadmin and mysql running fine.
  • Bugzilla3 also working fine

Need some help to change the listening port for bugzilla in this ubuntu desktop

Please am new to linux am not that much aware about commands or configuration Please give some idea to change the listening ports and my httpd.conf file is empty.

Thanks, Ramesh V

A: 

you take a look at /etc/apache2/apache2.conf also /etc/apache2/conf.d/

RageZ
A: 

Are you sure that you install all of the listed software? You may google for "LAMP on Ubuntu 9.04".

Or, you may else view the logs and search for the detailed errors descriptions in it.

For example, type this:

$ sudo tail -f /var/log/apache2/error.log

Enter your password and then update page in your browser window, you can see error messages in the real time in yours terminal window with such tail command.

Also good commands for working with logs is "less" (or "more") and, of course, "grep" (for example, "grep error /var/log/apache2/error.log" show every string where you can see an "error" word).

Sergey Kuznetsov