While many users need the functionality of a database management system like MySQL, they may not feel comfortable interacting with the system solely from the MySQL prompt.
phpMyAdmin was created so that users can interact with MySQL through a web interface. In this guide, we’ll discuss how to install and secure phpMyAdmin so that you can safely use it to manage your databases from an Ubuntu 16.04 system.
Before you get started with this guide, you need to have some basic steps completed.
First, we’ll assume that you are using a non-root user with sudo privileges, as described in steps 1-4 in the initial server setup of Ubuntu 16.04.
We’re also going to assume that you’ve completed a LAMP (Linux, Apache, MySQL, and PHP) installation on your Ubuntu 16.04 server. If this is not completed yet, you can follow this guide on installing a LAMP stack on Ubuntu 16.04.
Finally, there are important security considerations when using software like phpMyAdmin, since it:
For these reasons, and because it is a widely-deployed PHP application which is frequently targeted for attack, you should never run phpMyAdmin on remote systems over a plain HTTP connection. If you do not have an existing domain configured with an SSL/TLS certificate, you can follow this guide on securing Apache with Let’s Encrypt on Ubuntu 16.04.
Once you are finished with these steps, you’re ready to get started with this guide.
To get started, we will install phpMyAdmin from the default Ubuntu repositories.
We can do this by updating our local package index and then using the apt
packaging system to pull down the files and install them on our system:
This will ask you a few questions in order to configure your installation correctly.
Warning: When the first prompt appears, apache2 is highlighted, but not selected. If you do not hit Space to select Apache, the installer will not move the necessary files during installation. Hit Space, Tab, and then Enter to select Apache.
dbconfig-common
to set up the databasephpMyAdmin
application itselfThe installation process actually adds the phpMyAdmin Apache configuration file into the /etc/apache2/conf-enabled/
directory, where it is automatically read.
The only thing we need to do is explicitly enable the PHP mcrypt
and mbstring
extensions, which we can do by typing:
Afterwards, you’ll need to restart Apache for your changes to be recognized:
You can now access the web interface by visiting your server’s domain name or public IP address followed by /phpmyadmin
:
https://domain_name_or_IP/phpmyadmin
You can now log into the interface using the root
username and the administrative password you set up during the MySQL installation.
When you log in, you’ll see the user interface, which will look something like this:
We were able to get our phpMyAdmin interface up and running fairly easily. However, we are not done yet. Because of its ubiquity, phpMyAdmin is a popular target for attackers. We should take extra steps to prevent unauthorized access.
One of the easiest way of doing this is to place a gateway in front of the entire application. We can do this using Apache’s built-in .htaccess
authentication and authorization functionalities.
First, we need to enable the use of .htaccess
file overrides by editing our Apache configuration file.
We will edit the linked file that has been placed in our Apache configuration directory:
We need to add an AllowOverride All
directive within the <Directory /usr/share/phpmyadmin>
section of the configuration file, like this:
<Directory /usr/share/phpmyadmin>
Options FollowSymLinks
DirectoryIndex index.php
AllowOverride All
. . .
When you have added this line, save and close the file.
To implement the changes you made, restart Apache:
Now that we have enabled .htaccess
use for our application, we need to create one to actually implement some security.
In order for this to be successful, the file must be created within the application directory. We can create the necessary file and open it in our text editor with root privileges by typing:
Within this file, we need to enter the following information:
AuthType Basic
AuthName "Restricted Files"
AuthUserFile /etc/phpmyadmin/.htpasswd
Require valid-user
Let’s go over what each of these lines mean:
AuthType Basic
: This line specifies the authentication type that we are implementing. This type will implement password authentication using a password file.AuthName
: This sets the message for the authentication dialog box. You should keep this generic so that unauthorized users won’t gain any information about what is being protected.AuthUserFile
: This sets the location of the password file that will be used for authentication. This should be outside of the directories that are being served. We will create this file shortly.Require valid-user
: This specifies that only authenticated users should be given access to this resource. This is what actually stops unauthorized users from entering.When you are finished, save and close the file.
The location that we selected for our password file was “/etc/phpmyadmin/.htpasswd
”. We can now create this file and pass it an initial user with the htpasswd
utility:
You will be prompted to select and confirm a password for the user you are creating. Afterwards, the file is created with the hashed password that you entered.
If you want to enter an additional user, you need to do so without the -c
flag, like this:
Now, when you access your phpMyAdmin subdirectory, you will be prompted for the additional account name and password that you just configured:
https://domain_name_or_IP/phpmyadmin
After entering the Apache authentication, you’ll be taken to the regular phpMyAdmin authentication page to enter your other credentials. This will add an additional layer of security since phpMyAdmin has suffered from vulnerabilities in the past.
You should now have phpMyAdmin configured and ready to use on your Ubuntu 16.04 server. Using this interface, you can easily create databases, users, tables, etc., and perform the usual operations like deleting and modifying structures and data.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hello;
Anyone for Nginx? also will it work with PHP7?
We have a guide for phpMyAdmin + Nginx on an Ubuntu 14.04 system. I won’t make any promises about how soon, but it’s on our list of things to port to 16.04.
It should, yes. This guide uses PHP 7.
I couldn’t find a guide anywhere online for installing phpMyAdmin for Nginx on Ubuntu 16.04 so I wrote one myself.
http://devanswers.co/installing-phpmyadmin-nginx-ubuntu-16-04-17-04/
Hope this helps someone.
nano /etc/apache2/apache2.conf
Add the following to the bottom of the file:
phpMyAdmin Configuration
Include /etc/phpmyadmin/apache.conf
Thanks. There seems to be a missing hash before the “phpMyAdmin Configuration” comment, but the include line got it up and working.
Yes, This is totally right.
Including Digital Ocean’s droplet and AWS Ubuntu(16.04), it should be added or
https://domain_name_or_IP/phpmyadmin
goes to site’s default ‘Not Found’ page.Yes this comment is totally right.
Including Digital Ocean’s Droplet and AWS Ubuntu (16.04), it should be added or
https://domain_name_or_IP/phpmyadmin
goes to site’s default 404 page.Thanks. This one was missing in Step 1.
The requested URL /phpmyadmin/ was not found on this server.
Then add the following line to the end of the file: Include /etc/phpmyadmin/apache.conf
Then restart apache
Would be great to see a tute on Nginx + php7 + phpMyAdmin soon!
“The installation process actually adds the phpMyAdmin Apache configuration file into the /etc/apache2/conf-enabled/ directory, where it is automatically read.”
Nope, usually he does not.
U must copy: sudo cp /etc/phpmyadmin/apache.conf /etc/apache2/conf-enabled/phpmyadmin.conf Than open it: sudo nano /etc/apache2/conf-enabled/phpmyadmin.conf Add line after “DirectoryIndex index.php”: AllowOverride All
Example: <Directory /usr/share/phpmyadmin> Options FollowSymLinks DirectoryIndex index.php AllowOverride All
It should, if you tick the box beside apache2 during installation. Unfortunately many people (myself included) have pressed continue thinking it was selected because it was highlighted. If you don’t see an asterik* beside apache2 then you haven’t actually told the installer to configure apache.
Doesn’t work even I do manually copy and edit as suggested. If you remove and reinstall however will do the trick.
sudo apt-get purge --auto-remove phpmyadmin php-mbstring php-gettext
Hello,
Recently MySQL changed their code so that you could not leave a blank port when installing phpmyadmin so I keep getting an error when I try to install PHP my admin.
"An error occurred while installing the database:
mysql: [ERROR] mysql: Empty value for ‘port’ specified"
https://i.gyazo.com/ae194827faac9ff839e6c64b3c1fd4c8.png
Hi! I’ve followed the guide but i got an error while installing phpmyadmin. The error says: "Empty value for ‘port’ specified. " How can i fix it?
This comment has been deleted
everythings fine, but `` sudo phpenmod mcrypt sudo phpenmod mbstring
Hi,
I dont know what’s happend… but I cant log in phpmyadmin. I tried with user and my pass, root and pass of phpmyadmin. Display this message: #1045 - Access denied for user ‘root’@‘localhost’ (using password: YES)
Try logging in the with the user “phpmyadmin”
Why am I getting php code instead of the gui? I’m using php 7.0 Thanks
For those of you who didn’t select apache2 in the first step, you may want to re-install.
First uninstall:
Then start the installation process again.
I couldn’t load phpmyadmin because I didn’t select apache2 from the beginning. If there is a better way, please share.
Apache fails to restart after installing phpMyAdmin. Output of config file is 'Segmentation fault (core dumped). Any ideas? Thanks
I used this tutorial for installing phpmyadmin; but didn’t work after executing all instructions in step 01 I had this error message when trying to access phpmyadmin:
After some research in the Internet I found the solution: I had to add the following instruction in /etc/apache2/apache2.conf
then restart my apache2.
When I try to access my php admin www.mysite.com.br/phpmyadmin, it keeps redirecting me to www.mysite.com.br
Do I need to change anything on DNS ??
Hi, I’ve tried to install phpmyadmin following this guide. But I rushed and didn’t read the first warning in red color about hitting space to select Apache2. Now when I try to go to http://my.server.ip/phpmyadmin it trows a 404.
I tried doing a
sudo apt-get remove
and install it again to hit space this time, but that promp didn’t appear again, and it still gives me a 404.How can I correct this mistake? Thanks
Hello I can’t create additional Authentication at phpmyadmin.
I am following this tutorial in creating phpmyadmin.
The last section is to create secure authentication.
I followed exactly. I have .htaccess file inside
/usr/share/phpmyadmin/.htaccess
I have .htpasswd file inside /etc/phpmyadmin/.htpasswd. When I look inside .htpasswd file, I saw username:password line inside the file. Those are credentials I have given.
I used the same user name as in the original credential to phpmyadmin.
But when I login to my phpmyadmin, that additional login window doesn’t appear.
Why it doesn’t appear?
Thanks
I have taken over running a website built on WordPress 4.6.1 which is running on Ubuntu 16.04 and using Apache2 webserver. It appears that phpMyAdmin was installed somewhere along the way, most likely when WordPress was installed on the server, but I haven’t been able to access it. The fellow who owns the server is not overly computer literate, so I have been fairly much on my own.
Searching the entire hard drive reveals that the phpmyadmin files are all located in the same area of the directory structure as the WordPress files. I tried following the directions you give verbatim, but I am informed that all the particular phpmyadmin files are already installed. By enabling mcrypt and mbstring I was finally able to reach the login screen for phpMyAdmin and login successfully (YAY)!
However, as I proceeded to follow you direction to further secure access to the server’s phpMyAdmin, I was unable to find the file phpmyadmin.conf where you indicated it ought to be found. Again, performing a search of the entire hard drive, I found two instances of that file. Comparing both of them, they are identical, but nowhere in them did I find a reference to a directory /usr/share/phpmyadmin. Now I’m really stumped and I hesitate to proceed with the directions any further because I am unable to execute this part of the instructions! Can someone please direct me on how to proceed to further secure access to phpMyAdmin on our server?
hi there, may i get some help with this? i’m getting this error: #1045 - Access denied for user ‘root’@‘localhost’ (using password: YES) when i try to login for the first time as showed in this tutorial Thank you!
This went well for me as written except for one thing. You forgot “apt-get install php-mcrypt”.