Installation of phpmyadmin on Ubuntu 16.04LTS
phpMyAdmin is a free, open source web-based database management tool written using PHP programming language. It allows the database administrators to manage single or multiple database servers either from a local or remote system using a web browser. Using phpMyAdmin, we can create, delete, rename, edit databases, tables, fields, and also we can directly execute any SQL commands.
1. Open the terminal and type the following commands one by one
$sudo apt-get update
$sudo apt-get install phpmyadmin
During the installation a box will appear to choose the web server that should be automatically configured to run phpmyadmin. Choose apache2 and click OK.
Again it will ask for the password for phpmyadmin. Enter the password and re-enter it again to confirm.
2. To get the phpmyadmin in web browser, please edit the following file.
$sudo gedit /etc/apache2/apache2.conf
Add the following line at the end
Include /etc/phpmyadmin/apache.conf
3. Open the web browser and type
http://localhost/phpmyadmin
phpMyAdmin is a free, open source web-based database management tool written using PHP programming language. It allows the database administrators to manage single or multiple database servers either from a local or remote system using a web browser. Using phpMyAdmin, we can create, delete, rename, edit databases, tables, fields, and also we can directly execute any SQL commands.
1. Open the terminal and type the following commands one by one
$sudo apt-get update
$sudo apt-get install phpmyadmin
During the installation a box will appear to choose the web server that should be automatically configured to run phpmyadmin. Choose apache2 and click OK.
Again it will ask for the password for phpmyadmin. Enter the password and re-enter it again to confirm.
2. To get the phpmyadmin in web browser, please edit the following file.
$sudo gedit /etc/apache2/apache2.conf
Add the following line at the end
Include /etc/phpmyadmin/apache.conf
3. Open the web browser and type
http://localhost/phpmyadmin