Evil_TTL> show | s

How to Install phpMyAdmin on Ubuntu

Category:Linux -> Ubuntu
Category:Databases -> MySQL

Before installing phpmMyAdmin make sure you already have Apache, MySQL and PHP. Install them if you are missing any.

To install phpmyadmin type:

sudo apt-get install phpmyadmin 

Restart Apache for changes to take effect

sudo /etc/init.d/apache2 restart 

or

service apache2 graceful 

Try to access phpmyadmin at http://localhost/phpmyadmin

If failed make sure the configuration file is in place. Either copy /etc/phpmyadmin/apache.conf to /etc/apache2/conf.d/
or add into /etc/apache2/apache2.conf the following line:

#Include phpMyAdmin
Include /etc/phpmyadmin/apache.conf 

Restart Apache and check http://localhost/phpmyadmin again.

By privilege15