Ubuntu – How to access phpMyAdmin

phpmyadmin

I've installed phpMyAdmin but I don't seem to be able to access it.

I have tried browsing to both localhost/phpMyAdmin and 94.249.188.109/phpMyAdmin and it still says "Not Found".

How do I access phpMyAdmin?

Best Answer

Then you haven't installed it correctly; try installing with this command:

sudo apt-get install libapache2-mod-auth-mysql php5-mysql phpmyadmin

If that doesn't work, then try this fix:

sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf.d/phpmyadmin.conf
sudo /etc/init.d/apache2 reload
Related Question