phpmyadmin installation

General support questions
Post Reply
thojanssens1
Posts: 2
Joined: 2019/02/17 13:56:03

phpmyadmin installation

Post by thojanssens1 » 2019/02/17 14:03:22

Hello,

I tried to install phpmyadmin through:
$ yum install phpmyadmin
but it says
No package phpMyAdmin available.
On all blogs about this matter they instruct to install epel-release
$ yum install epel-release
but it is already installed.

when I browse through the epel mirror https://ftp.nluug.nl/ I can't see phpmyadmin anyway.
$ yum repolist enabled
Loaded plugins: fastestmirror
Determining fastest mirrors
* base: mirror.ams1.nl.leaseweb.net
* epel: ftp.nluug.nl
* extras: centos.mirror.triple-it.nl
* updates: ftp.nluug.nl
repo id repo name status
base/7/x86_64 CentOS-7 - Base 9,880+139
epel/x86_64 Extra Packages for Enterprise Linux 7 - x86_64 12,023+885
extras/7/x86_64 CentOS-7 - Extras 364
updates/7/x86_64 CentOS-7 - Updates 1,066+1
repolist: 23,333

How can I install this package?

Thank you for any help

pjsr2
Posts: 614
Joined: 2014/03/27 20:11:07

Re: phpmyadmin installation

Post by pjsr2 » 2019/02/17 14:51:20

It is there: https://ftp.nluug.nl/ftp/os/Linux/distr ... noarch.rpm

You should try (note capitalization):

Code: Select all

sudo yum install phpMyAdmin

User avatar
avij
Retired Moderator
Posts: 3046
Joined: 2010/12/01 19:25:52
Location: Helsinki, Finland
Contact:

Re: phpmyadmin installation

Post by avij » 2019/02/17 14:51:41

https://ftp.nluug.nl/os/Linux/distr/fed ... ackages/p/

Note that the package is named phpMyAdmin. If you tried to "yum install phpmyadmin" and yum replied with "No package phpMyAdmin available", yum does seem to know that such a package does exist. Have you excluded something in /etc/yum.conf or /etc/yum.repos.d/*.repo ? Try grep -r exclude /etc/yum.* and also provide the full unedited output of yum install phpMyAdmin.

thojanssens1
Posts: 2
Joined: 2019/02/17 13:56:03

Re: phpmyadmin installation

Post by thojanssens1 » 2019/02/17 15:06:59

grep -r exclude /etc/yum.*
listed:
/etc/yum.conf:exclude=apache* httpd* mod_* mysql* MySQL* mariadb* da_* *ftp* exim* sendmail* php* bind-chroot*
I commented out temporarily the exclude directive and it worked. Thank you so much.

User avatar
avij
Retired Moderator
Posts: 3046
Joined: 2010/12/01 19:25:52
Location: Helsinki, Finland
Contact:

Re: phpmyadmin installation

Post by avij » 2019/02/17 15:25:58

OK, so you're using DirectAdmin. No wonder the usual CentOS instructions didn't work for you.

Post Reply