5

I have just installed phpMyAdmin on my Ubuntu (using sudo apt-get install libapache2-mod-auth-mysql php5-mysql phpmyadmin). I think installation went OK. So, how can I start the phpMyAdmin now?

I tried http://localhost/phpMyAdmin/index.php
I also tried http://localhost/phpmyadmin/scripts/setup.php

Both do not work.

I also need to add that I have installed Apache, PHP and MySQL. Everything works fine.

Roman
  • 495
  • 5
  • 15
  • 25

3 Answers3

8

In ubuntu by default, phpmyadmin is installed in /usr/share/phpmyadmin

Setting a symbolic link should help you. The command would be as follows :

$ ln -s /usr/share/phpmyadmin /var/www/phpmyadmin

After this, open http://localhost/phpmyadmin in browser and it should work (given that your Apache settings permit this)

Kevin
  • 1,253
  • 10
  • 15
s1d
  • 296
  • 1
  • 3
2

Have you tried http://localhost/phpmyadmin/ ?

1

You need to update the file phpMyAdmin.conf to something like this:

<Directory /usr/share/phpMyAdmin/>
   order deny,allow
   #deny from all
   allow from all
</Directory>

or allow from <your IP address> if you intend to host this server.

Traveling Tech Guy
  • 9,918
  • 8
  • 35
  • 40
  • I see only "lighttpd.conf" and "apache.conf". The content of "phpMyAdmin.conf" is similar to you example (there is ""). But there are not "order" or "allow". Should I add them? Where can I learn the syntax (I do not want to add something I do not understand). – Roman Feb 27 '10 at 20:10
  • If `Allow` doesn't exist you need to add them. A simple Google search for "phpMyAdmin.conf" should yield plenty of samples. – Traveling Tech Guy Feb 27 '10 at 22:18