How to install phpmyadmin on Ubuntu 12.04 Phpmyadmin is a free web tool used to administrative MySQL database. You can perform all major tasks like creating , deleting and modifying databases. you can also repair and optimize tables with a single click . Install phpmyadmin on ubuntu 14.04 : Before proceeding with phpmyadmin installation, you must have webserver configured in your machine .Here we choose LAMP ( Apache, Mysql and PHP ) stack for webserver . Please follow the links to configure LAMP server . After configuring LAMP server, you can continue with below steps to install and configure phpmyadmin. – Step 1: Update system Ubuntu using below command sudo apt-get update 1 sudo apt-get update – Step 2: Install phpmyadmin use below command sudo apt-get install phpmyadmin 1 sudo apt-get install phpmyadmin Install-phpmyadmin-ubuntu14-04 I just choose “apache2″ – Step -3: Now you will be prompted for mysql database configuration. I just choose “No” as we already configured mysql server manually and enter to complete the installation. Install-phpmyadmin-ubuntu-14-04-1 – Step 5: Now open http://serverip/phpmyadmin in the browser. Username and password will as username and password on Mysql. See the images like below 599x204xInstall-phpmyadmin-ubuntu-14-04-2.png.pagespeed.ic.98IYNu0gX_9H7-p8MTeG If you see “Not Found”, open file /etc/apache2/apache2.conf nano /etc/apache2/apache2.conf 1 nano /etc/apache2/apache2.conf Insert to the bottom of file: # phpMyAdmin Configuration Include /etc/phpmyadmin/apache.conf 1 2 # phpMyAdmin Configuration Include /etc/phpmyadmin/apache.conf Restart apache: service apache2 restart 1 service apache2 restart If you have any questions, please ask! http://nowquestion.net/questions/how-to-install-phpmyadmin-on-ubuntu-14-04