Introduction
The phpMyAdmin tool allows users to interact with MySQL database management through a web interface that can handle the administration tasks. This tool provides a web interface to create, store, and edit entire databases created with MySQL. You can use the script interface to run PHP scripts to connect to MySQL databases for customized operations rather than using the command line interface.
In this tutorial, you will install phpMyAdmin and use it to connect to a MySQL Managed Database cluster on your Ubuntu 20.04 server.
Prerequisites
To complete this guide, you will need:
-
An Ubuntu 20.04 server with a
sudo
-enabled non-root user and a firewall configured withufw
. To set this up, follow our Initial Server Setup with Ubuntu 20.04. -
A DigitalOcean account. If you do not have one, sign up for a new account.
-
A MySQL Managed Database cluster. To deploy a MySQL Managed Database, follow our How to Create MySQL Database Clusters guide.
-
(Optional) A registered domain name to connect via SSL. You can purchase a domain name on Namecheap, get one for free on Freenom, or use the domain registrar of your choice. Be sure that the DNS records for your domain point to your server’s IP address by following the DNS Quickstart to add them. You can configure your domain with an SSL/TLS certificate by following How To Secure Apache with Let’s Encrypt on Ubuntu 20.04.
Step 1 — Installing phpMyAdmin and Configuring Apache
In this step, you will install the phpMyAdmin
package and the web server necessary to access your MySQL Managed Database.
First, log in to your Ubuntu server and update it with the latest packages:
Then install phpMyAdmin from the default Ubuntu repositories:
During the installation process, you will be prompted to choose a web server: Apache or Lighttpd. Select apache2
for this tutorial.
Next, you will be prompted to select Yes
or No
to use dbconfig-common
for setting up the database in the same Ubuntu server.
Choose No
if you are installing phpMyAdmin to connect to MySQL Managed Database and you do not want to install MySQL in the localhost Ubuntu server.
Once the phpMyAdmin
package has finished installing, you will update the apache.conf
file. Use your favorite text editor to edit the linked file that has been placed in your Apache configuration directory. This example uses nano
:
Add the following line to the bottom of the file:
...
# phpMyAdmin Configuration
Include /etc/phpmyadmin/apache.conf
This line will set up phpMyAdmin under the Apache web server. Save and close the file.
You have now updated your server by installing phpMyAdmin and configuring Apache. Next, you will configure phpMyAdmin with the MySQL Managed Database credentials.
Step 2 — Configuring phpMyAdmin with MySQL Managed Database
In this step, you will configure phpMyAdmin with your MySQL Managed Database connection details.
Navigate to your MySQL Managed Database panel and find the Connection Details section. Click the Download CA certificate link to download the ca-certificate.crt
file from your database page overview tab:
In a new terminal session from your local machine, copy the certificate file to /etc/phpmyadmin/
on the Ubuntu server:
Back in the terminal session for your server, open the phpMyAdmin configuration file named config.inc.php
:
At the bottom of the config.inc.php
file, add the following lines with the Managed Database configuration details:
The initial $i++;
is a post-increment operator that returns $i
, then increments $i
by one. This line helps you manage multiple MySQL Managed Databases with phpMyAdmin.
Because phpMyAdmin supports the administration of multiple MySQL servers, the $cfg['Servers']
array has been added, which can contain the login information for different servers.
$cfg['Servers'][$i]['host']
refers to the MySQL Managed Database hostname, and $cfg['Servers'][$i]['port']
is the port number that it calls to (in this case, port 25060
).
$cfg['Servers'][$i]['ssl']
, which evaluates to true
in this circumstance, communicates whether to enable SSL for the connection between phpMyAdmin
and the MySQL Managed Database to secure the connection. With that, you also update the $cfg['Servers'][$i]['ssl_ca']
line with the path to the CA file that will connect to the MySQL Managed Database when using SSL.
If you want to add another MySQL Managed Database, you can add lines from $i++;
to $cfg['Servers'][$i]['ssl_ca']
in config.inc.php
with the appropriate hostname and CA-certificate file.
Save and close the configuration file.
Then restart apache2
with this command:
Now you can access the web interface by visiting your server’s public IP address or your domain name followed by phpmyadmin
:
http://your_domain_or_ip/phpmyadmin
You will have to supply your MySQL Managed Database username and password to log in to the MySQL Database.
Once you have logged in to the database, you will see the following administration screen:
You can add the IP address of the server where you have installed phpMyAdmin as a trusted source. This modification will limit access to the database to this specific IP address.