Install phpMyAdmin on CentOS 7

PhpMyAdmin is a convenient way to manage MySQL/MariaDB for those who prefer a browser-based interface over the traditional command-line interface. Learn how to install and use phpMyAdmin on a Cloud Server with Linux (CentOS 7).

Requirements

  • A Cloud Server with Linux.
  • MySQL/MariaDB installed and running.
  • PHP installed and running.

Free Cloud Server Trial from IONOS

Try out a Cloud Server for free now - test your IONOS Cloud Server for 30 days!

REST API
Unlimited traffic
VMware virtualization
Note

PHP and MySQL/MariaDB are installed and running on a Standard Linux installation by default. If your server was created with a Minimal installation, you will need to install and configure PHP and MySQL/MariaDB before you proceed.

To install phpMyAdmin on CentOS 7, first install the EPEL repository:

sudo yum install epel-release

Then install phpMyAdmin with the command:

sudo yum install phpmyadmin

Next, you will need to edit the configuration file to allow access from your desktop computer. To find your IP address, you can simply search Google for "What's my IP address."

Open the configuration file for editing:

sudo nano /etc/httpd/conf.d/phpMyAdmin.conf

Change the lines which read:

Require ip 127.0.0.1 
Allow from 127.0.0.1

These lines are repeated, so you will need to change four lines in total.

Change the IP address 127.0.0.1 to your IP address:

Require ip 192.168.0.1
Allow from 192.168.0.1

Then save and exit the file.

Restart Apache for the changes to take effect:

systemctl restart httpd 

You can now access phpMyAdmin at "https://www.example.com/phpmyadmin".

We use cookies on our website to provide you with the best possible user experience. By continuing to use our website or services, you agree to their use. More Information.