I would all of you to know that I am a total noob to Ubuntu so please bear with me if my question is too moronic like my username suggests.

I am using the ubuntu-11.04.

I followed these steps on this site:

http://www.howtoforge.com/installing-apache2-with-php5-and-mysql-support-on-ubuntu-11.04-lamp

So far my apache2, php, and mysql are working fine except phpmyadmin... Whenever I run this:

http://localhost/phpmyadmin/

I get this error on my browser:

Not Found

The requested URL /phpmyadmin/ was not found on this server.


Apache/2.2.17 (Ubuntu) Server at localhost Port 80

Please help me... or I'll die...

link|improve this question

60% accept rate
feedback

4 Answers

up vote 0 down vote accepted

What is in your /var/www/ folder? The 'not found' is telling you the directory (phpmyadmin) is not found in the /var/www/ folder.

link|improve this answer
What will I do to access phpmyadmin??? – Moron Aug 1 '11 at 3:05
From your shell type cd /var/www and then ls -l -- what do you see there? – George P Aug 1 '11 at 3:11
@Goerge P: I know phpmyadmin is not there but how AM I gonna access phpMyadmin??? – Moron Aug 1 '11 at 3:15
If you want to access phpmyadmin running on an Ubuntu setup, then you would access it through a browser by going to http://<ip address>/<directory name> -- in your question above you put http://localhost/phpmyadmin/ so that would mean your trying to install phpmyadmin on your personal computer, because localhost is IP address 127.0.0.1, which is your computer. Is your ubuntu server a separate computer? – George P Aug 1 '11 at 3:25
Nope... The same computer... – Moron Aug 1 '11 at 3:31
show 1 more comment
feedback

I just had the same problem after installing Apache and phpmyadmin. I found a solution at http://ubuntuforums.org/showthread.php?t=1036836, namely:

  1. Add the following line to the end of of file /etc/apache2/apache2.conf:

    Include /etc/phpmyadmin/apache.conf

  2. Restart Apache by giving this command on the command line:

    sudo /etc/init.d/apache2 restart

link|improve this answer
really helpful, thanks for sharing :) – iamtheladylegend Apr 3 at 4:29
You're very welcome! :) – Teemu Leisti Apr 3 at 8:12
feedback

Firstly look does directory /usr/share/phpmyadmin/ exist. If it's so just move it to /var/www/phpmyadmin :

mv /usr/share/phpmyadmin /var/www/phpmyadmin

link|improve this answer
this is exactly the solution and solved my problem. Because by default, phpmyadmin get installed in share directory and in order to access to it, all you need to do is to move it under var/www. – iMad Apr 25 at 18:43
feedback

Same problem occurred when I install phpmyadmin via the repositories in 10.10 Maverick. There was no folder "/var/www/phpmyadmin" and I needed to copy it over from /usr/share/phpmyadmin. Thanks to HaXkii for the answer.

By the way I could manage the MySQL database tables using "MySQL Administrator" GUI which is available in the repos. Use : sudo apt-get install mysql-admin to install it. It will then appear in the "Applications->Programming" menu. Regards Priyend

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.