issue while installing apache with yum

0

When i run yum install httpd-devel i get this :

This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7Server&arch=x86_64&repo=os&infra=$infra error was
14: curl#6 - "Could not resolve host: mirrorlist.centos.org; Erreur inconnue"


 One of the configured repositories failed (Inconnu),
 and yum doesn't have enough cached data to continue. At this point the only
 safe thing yum can do is fail. There are a few ways to work "fix" this:


Cannot find a valid baseurl for repo: base/7Server/x86_64

I'm using rhel 7 how can i solve this ?

BOUKANDOURA Mhamed

Posted 2016-11-16T13:38:40.113

Reputation: 69

1set up a reachable dns server in /etc/resolv.conf – Ipor Sircer – 2016-11-16T13:44:26.390

Are you using RHEL7 or CentOS7? The error you posted suggests you have a CentOS mirror setup as a yum repo. – MikeA – 2016-11-18T16:09:01.740

Answers

1

You need to register the server with Red Hat before you can use RHEL repositories.

If you have an active redhat subscription, then perform the following:

subscription-manager register --username <username> --password <password>

devnull

Posted 2016-11-16T13:38:40.113

Reputation: 386