PhpMyAdmin is a free and open source web-based database management tool written in PHP. It allows the database administrators to easily manage single and/or multiple database servers either from a local or remote system via a web browser. This can be useful for those who are not comfortable with MySQL prompt. Using phpMyAdmin, we can do all sorts of database management tasks such as creating, editing, renaming, deleting databases, import and export databases, create tables, fields and fields, execute SQL commands and many. In this tutorial, we will see how to install phpMyAdmin with LAMP stack on Ubuntu 18.04 LTS server operating system.
Table of Contents
Install phpMyAdmin With LAMP Stack On Ubuntu 18.04 LTS
Before installing phpMyAdmin on your Ubuntu 18.04 LTS server, make sure you have setup LAMP stack as described in the link below.
Also make sure you've changed the password authentication method for mysql root user as described under section titled "2.2 Change authentication method for MySQL root user" in the above guide. You must do this if you want to manage database server using any external programs such as phpMyAdmin.
Once you've setup LAMP stack, enable 'universe' repository, which is disabled by default on Ubuntu 18.04. To do so, run:
$ sudo add-apt-repository universe
Now is the time to install phpMyAdmin.
To install phpMyAdmin on Ubuntu 18.04, run:
$ sudo apt update
$ sudo apt install phpmyadmin php-mbstring php-gettext
Now, select the web server that should be automatically configured to run phpMyAdmin. Choose the web server with UP/DOWN arrows and hit the SPACEBAR key. Once you chose the web server, you will see a * (star) symbol in-front of it. Hit the TAB key to choose OK and again hit ENTER key to continue.
Hit ENTER to continue.
Choose Yes to configure database for phpmyadmin:
Provide mysql application password phpmyadmin.
Re-enter password:
Once phpmyadmin is installed, enable mbstring php extension and restart Apache service o update the changes as shown below.
$ sudo phpenmod mbstring
$ sudo systemctl restart apache2
You can now verify if mbstring extension is enabled or not by loading into info.php file from the web browser.
As you can see in the above screenshot, mbstring module is enabled.
Create dedicated user to access phpMyAdmin dashboard
Once phpMyAdmin is installed, a database user named 'phpmyadmin' will be automatically created with the administrative password you set during the installation. You can login to phpmyAdmin dashboard using 'phpmyadmin' user or mysql root user. However, it is recommended to create a dedicated user to manage databases via phpMyAdmin web interface.
To do so, login to mysql shell using command:
$ mysql -u root -p
Enter your mysql root password. You will now be in mysql shell.
Enter the following command to create a new dedicated user for phpmyadmin:
CREATE USER 'phpmyadminuser'@'localhost' IDENTIFIED BY 'password';
Here, phpmyadmin is the new user for accessing phpmyadmin dashboard. The password for phpmyadminuser is password. Replace these values with your own.
Next give the appropriate privileges to the 'phpmyadminuser' using command:
GRANT ALL PRIVILEGES ON *.* TO 'phpmyadminuser'@'localhost' WITH GRANT OPTION;
Finally exit from mysql shell:
exit
We have now created a dedicated user (phpmyadminuser/password) for managing the databases via phpmyadmin web interface. Let us go ahead and access phpmyadmin dashboard.
Access phpMyAdmin dashboard
Open your web browser and navigate to http://ip-address/phpmyadmin or http://domain/phpmyadmin. You should see the phpmyadmin login page. Log in to the phmyadmin interface either using mysql root user or the new user which we created in the previous step.
Here is how phpMyAdmin dashboard looks:
From now on, you can manage your databases via phpMyAdmin web interface.
Secure phpMyAdmin
Since phpMyAdmin is an easy target for attackers, the next recommended task is to secure phpyMyAdmin. The most common way to protect phpMyAdmin from unauthorized access is by using Apache's built-in .htaccess authentication and authorization functionalities.
First of all, enable the use of .htaccess file overrides by editing the /phpmyadmin.conf file:
$ sudo nano /etc/apache2/conf-available/phpmyadmin.conf
Add "AllowOverride All" line within the <Directory /usr/share/phpmyadmin> section as shown below.
<Directory /usr/share/phpmyadmin> Options SymLinksIfOwnerMatch DirectoryIndex index.php AllowOverride All [...]
Save and close the file.
Restart apache service to update the changes using command:
$ sudo systemctl restart apache2
Next, create a file named .htaccess within /usr/share/phpmyadmin/ directory using command:
$ sudo nano /usr/share/phpmyadmin/.htaccess
Add the following lines in it:
AuthType Basic AuthName "Restricted Files" AuthUserFile /etc/phpmyadmin/.htpasswd Require valid-user
Save and close the file.
Now, run the following command to create a new user, for example ostechnix:
$ sudo htpasswd -c /etc/phpmyadmin/.htpasswd ostechnix
Replace 'ostechnix' with any username of your choice. You will asked to provide a password for the new user. Enter it twice.
Sample output:
New password: Re-type new password: Adding password for user ostechnix
We have now added an extra layer of security to access phpMyAdmin web interface. From now on, whenever you try to access the phpMyAdmin web interface, you will prompted to enter the additional username and its password that you just configured in the previous step.
Once you entered the correct username and password, you will be redirected to the actual phpmyadmin authentication login page. Just enter your database credentials to access the dashboard.
Resources:
Thanks for stopping by!
Help us to help you:
- Subscribe to our Email Newsletter : Sign Up Now
- Support OSTechNix : Donate Via PayPal
- Download free E-Books and Videos : OSTechNix on TradePub
- Connect with us: Reddit | Facebook | Twitter | LinkedIn | RSS feeds
Have a Good day!!
30 comments
Thank You for this tutorial, works like a charm.
Awesome! Thanks for great tutorial.
Thank you. This is very good and accurate.
how to fix ERROR 1698 (28000): Access denied for user ‘root’@’localhost’
Instructions to fix this error is given in this guide. Please have a look under “2.1 Setup database administrative user (root) password” section. https://ostechnix.com/install-apache-mariadb-php-lamp-stack-ubuntu-16-04/
Thanks a lot it worked perfectly!
thank you
pls help my
why?
Configuring phpmyadmin
An error occurred while installing the database:
ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/var/run/mysqld/mysqld.sock’ (2) . Your options are:
* abort – Causes the operation to fail; you will need to downgrade, reinstall, reconfigure this package, or otherwise manually intervene to continue using it. This will usually also impact your ability to install other packages until the installation failure is resolved.
* retry – Prompts once more with all the configuration questions (including ones you may have missed due to the debconf priority setting) and makes another attempt at performing the operation.
* retry (skip questions) – Immediately attempts the operation again,
skipping all questions. This is normally useful only if you have
solved the underlying problem since the time the error occurred.
* ignore – Continues the operation ignoring dbconfig-common errors.
This will usually leave this package without a functional database.
Next step for database installation:
abort
retry
retry (skip questions)
ignore
Check this link. https://stackoverflow.com/questions/11657829/error-2002-hy000-cant-connect-to-local-mysql-server-through-socket-var-run.
As mentioned in this link, just install only mysql, not mysql-client and see if it solves your problem. .
Setup LAMP stack as described in this guide. https://ostechnix.com/install-apache-mysql-php-lamp-stack-on-ubuntu-18-04-lts/
And then, try to install Phpmyadmin.
Thanks a lot. Since now my problem with “Access denied for user ‘root’@’localhost’ (using password: YES)” is solved!!!
It was Really Awesome till I found. Without any Error, I installed it. I just go through each step and I didnt get any error during installation. Thanks.
Now Please tell me How to install wordpress after that.
We will publish a separate guide for wordpress installation. Thanks for your positive feedback.