Error: Unable to find a match phpmyadmin when i try to install phpmyadmin on centos

[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 ..

Upvotes: 1

Views: 9402

Answers (2)

Calisto
Calisto

Reputation: 61

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

Upvotes: 1

AWS PS
AWS PS

Reputation: 4710

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

Upvotes: 1

Related Questions