1
[root@vmi329080 ~]# sudo yum install phpmyadmin
Last metadata expiration check: 0:57:18 ago on Sun 05 Jan 2020 01:05:52 PM CET.
No match for argument: phpmyadmin
Error: Unable to find a match

This is what i get when i install phpmyadmin ..

larsks
  • 277,717
  • 41
  • 399
  • 399
  • There is no `phpmyadmin` package available in the core CentOS repositories. You can find a package in the [EPEL repository](https://fedoraproject.org/wiki/EPEL). – larsks Jan 05 '20 at 13:30
  • And why people downvoted the question without bothering to explain? – Naveed Abbas Jan 26 '21 at 07:45

2 Answers2

1

You need to install epel repository to be accessible by yum

rpm -iUvh http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum -y update
yum -y install phpmyadmin
AWS PS
  • 4,420
  • 1
  • 9
  • 22
0

Despite trying all the solutions mentioned above, none of them worked for me. However, I was able to find a solution that worked after conducting further research.

In case any of the PHP stream from the "remi-modular" repository are enabled, it is possible to install phpMyAdmin from the "remi" non-modular repository.

# dnf module enable php:remi-7.4 
# dnf --enablerepo=remi install phpMyAdmin
Eric Aya
  • 69,473
  • 35
  • 181
  • 253
Calisto
  • 51
  • 1
  • 3