skip to Main Content
[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 ..

2

Answers


  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
    
    Login or Signup to reply.
  2. 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
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search