Tutorial details | |
---|---|
Difficulty | Easy (rss) |
Root privileges | Yes |
Requirements | None |
Time | 10m |
Step #1: Turn on EPEL repo
phpMyAdmin is not included in default RHEL / CentOS repo. So turn on EPEL repo as described here:
$ cd /tmp
$ wget http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
# rpm -ivh epel-release-6-8.noarch.rpm
Step #2: Install phpMyAdmin on a CentOS / RHEL Linux
Type the following yum command to download and install phpMyAdmin:
# yum search phpmyadmin
# yum -y install phpmyadmin
Sample outputs:
Loaded plugins: rhnplugin Setting up Install Process Resolving Dependencies There are unfinished transactions remaining. You might consider running yum-complete-transaction first to finish them. --> Running transaction check ---> Package phpMyAdmin.noarch 0:3.5.1-1.el6 will be installed --> Finished Dependency Resolution Dependencies Resolved ================================================================================================== Package Arch Version Repository Size ================================================================================================== Installing: phpMyAdmin noarch 3.5.1-1.el6 epel 4.2 M Transaction Summary ================================================================================================== Install 1 Package(s) Total download size: 4.2 M Installed size: 17 M Downloading Packages: phpMyAdmin-3.5.1-1.el6.noarch.rpm | 4.2 MB 00:00 Running rpm_check_debug Running Transaction Test Transaction Test Succeeded Running Transaction Installing : phpMyAdmin-3.5.1-1.el6.noarch 1/1 Verifying : phpMyAdmin-3.5.1-1.el6.noarch 1/1 Installed: phpMyAdmin.noarch 0:3.5.1-1.el6
Install MySQL server on a CentOS/RHEL
You need download and install MySQL server on CentOS/RHEL using the following yum command:
# yum install mysql-server mysql
Turn on and start the mysql service, type:
# chkconfig mysqld on
# service mysqld start
Set root password and secure mysql installation by running the following command:
# mysql_secure_installation
Step #3: Configure phpMyAdmin
You need to edit /etc/httpd/conf.d/phpMyAdmin.conf file, enter:
# vi /etc/httpd/conf.d/phpMyAdmin.conf
It allows only localhost by default. You can setup HTTPD SSL as described here (mod_ssl) and allow LAN / WAN users or DBA user to manage the database over www. Find line that read follows
Require ip 127.0.0.1
Replace with your workstation IP address:
Require ip 10.1.3.53
Again find the following line:
Allow from 127.0.0.1
Replace as follows:
Allow from 10.1.3.53
Save and close the file. Restart Apache / httpd server:
# service httpd restart
Open a web browser and type the following url:
https://your-server-ip/phpMyAdmin/
OR
http://your-server-ip/phpMyAdmin/
Sample outputs:
Please note that you will be prompted for a username and password. You need to provide your database username and password to login into the user interface. If you want to manage all database use mysql admin user account called root. phpMyAdmin configuration file is located at /etc/phpMyAdmin/config.inc.php. You can edit this file using a text editor:
# vi /etc/phpMyAdmin/config.inc.php
All directives are explained in Documentation.html and on phpMyAdmin wiki.
Check out related media
This tutorial is also available in video format:
(Video.01: Installing phpMyAdmin Demo)
And, there you have it, the phpMyAdmin installed and working correctly on the latest version of CentOS / Red Hat Enterprise Linux to manage your database software from the Internet.
🐧 20 comments so far... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
MySQL Workbench, SQLyog, or HeidiSQL are all better tools and come without the bloat and security holes.
Or you could spend a few minutes and learn to manage MySQL via CLI and not have the boatload of security risks that phpMyAdmin brings.
I don’t get why everyone just “luvs” phpmyadmin, and yet still they wonder why/how their servers get compromised.
If someone needs phpmyadmin add another alias interface (ip address) and put in a rule to only allow this through a gateway and/or ip-range.
For some end users at an ISP they want this and using an ipchain you can lock it down, additional security.
rename phpmyadmin folder = mydbconf, dbmysite, xdbxconfx, etc
move phpmyadmin to different subdomain = xdbxconfx.mydomain.com
configure on different port = xdbxconfx.mydomain.com:5169
force SSL, no root, configure limit and burst on port :5169 in iptables.
Nice Article…
thank you
I followed these instructions and had no problems – very good step by step description.
Just a couple of thoughts:
Re: instructions are fine except now version is epel-release-6-8 and should be used instead of the version numbers in the first part of the instructions…it is useful just to check this out before starting…i.e. what is the version number now?
Re: vonskippy – If using a headless Linux based MySQL installation (as part of a LAMP stack) with either no or only limited direct connection to the server then myPHPAdmin still works well, (it doesn’t need any sort of GUI support at the server end).. although should be restricted/security hardened as mentioned in the other posts…HeidiSQL works but really is simplest to use on a MSWindows box, SQLyog is lovely but not free (good in serious production enviroments; but for development?) and the MySQLWorkbench depends on a GUI –
However I also agree having some familiarity with the CLI is good idea….
the 3rd step is not working on my end. Its not showing the ip adresses whenever im enterng these codes vi /etc/httpd/conf.d/phpMyAdmin.conf
its showing BLANK. Please help me. Thanks!
well done bro !
hi from Venice
Now the link for epel rpm is :
The tutorial has been updated. I appreciate your feedback.
how to update myphpadmin to latest version 4.1.9
You are missing the following:
Order allow,deny
Allow from all
can anyone help me to install phpmyadmin please reply me
Why didn’t I find this 3 months ago!!
I can not beleive how easy this made installing phpMyAdmin
Thank you,
Tommy
Very Nice
Thanks for the helpful article. I did have a problem accessing the url at the end and eventually discovered that I hadn’t got php installed. As you include the installation of mysql in your step by step guide, I was surprised that the step to install php wasn’t mentioned.
What a nightmare of security gaps when this is hosted on a public server using default settings! The simple security stops you can apply in phpMyAdmin.conf are:
1. Very specific IP address access restriction
2. Replacing the phpmyadmin Alias with a password-strength, secret alias. This should stop adversaries from trying to enumerate the services on your server.
Generate a nonce like this:
openssl rand -base64 8 | tr -cd ‘[[:alnum:]]._-‘ | sed -e ‘s/\(.\{8\}\).*/\1\n/’
i am not able to phpmyadmin accessss in my another computer
my pc configuration
OS Centos 7 also installed LAMP
locally its working good but iin network i am not able to access phpmy admin page
Error in network pc as below…
You don’t have permission to access /phpmyadmin on this server.
pls revert me asap.
I’m running Oracle linux 6 which is taken from CentOS/RHEL.
I also needed to install php (yum install php) and add “DirectoryIndex index.php” to /etc/httpd/conf.d/phpMyAdmin.conf
Thank you for these instructions.
Many of us use dhcp so it might be helpful to know how to open access up to an entire subnet (or just everything).
Thanks.
To Install httpd i followed below steps :
sudo yum install -y httpd24 php56 mysql55-server php56-mysqlnd
|::| Restart the apache service:
sudo service httpd restart
|::| To install phpmyadmin, i followed ur steps
But it never asked me to set for Username and Pwd
>
How to set the Username and pwd for mysql and phpmyadmin ?