How to Install and Configure phpMyAdmin in Ubuntu 22.04?

Jul 12, 2022 . Admin

Hi Guys,

If you need to see example of Install and Configure phpMyAdmin in Ubuntu 22.04. I explained simply about Ubuntu 22.04 on Install and Run phpMyAdmin. step by step explain Steps to Install phpMyAdmin on Ubuntu 22.04. This article will give you simple example of Using Commands to Install phpMyAdmin on Ubuntu 22.04. Alright, let’s dive into the steps.

You can use this post for ubuntu 14.04, ubuntu 16.04, ubuntu 18.4, ubuntu 20.04, ubuntu 21 and ubuntu 22.04 versions.

Use the following steps to install and configure phpMyAdmin on ubuntu 22.04 system:

Step 1 – Update System Dependencies

Step 2 – Install PhpMyAdmin

Step 3 – Configure PHPMyAdmin

Step 4 – Restart Apache Server

Step 5 – Login to PHPMyAdmin

Step 1: Update System Dependencies

Run the following command to update system dependencies:

Step 2: Install PhpMyAdmin

Use the following command to install phpmyadmin:

sudo apt install phpmyadmin
Step 3: Configure PHPMyAdmin

Execute the following command on command prompt to configure phpmyadmin for Apache:

sudo nano /etc/apache2/conf-available/phpmyadmin.conf

Add the following line to the apache2.conf file and save it:

Alias /phpmyadmin /var/www/html/phpmyadmin


Options Indexes FollowSymLinks
DirectoryIndex index.php


AddType application/x-httpd-php .php

php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals Off
php_value include_path .




# Authorize for setup


AuthType Basic
AuthName "phpMyAdmin Setup"
AuthUserFile /etc/phpmyadmin/htpasswd.setup

Require valid-user


# Disallow web access to directories that don't need it

Order Deny,Allow
Deny from All


Order Deny,Allow
Deny from All

Using the following command to enable the configuration:

sudo a2enconf phpmyadmin.conf
Step 4: Restart Apache Server

Use the following command to restart apache web server on ubuntu 22.04:

sudo service apache2 restart
Step 5: Login to PHPMyAdmin

Open your browser and type the below url with server ip:

http://[SERVER_PUBLIC_IP]/phpmyadmin
#Ubuntu