Home > Enterprise >  How to make my own repository for ambari?
How to make my own repository for ambari?

Time:09-17

I'm new to apache ambari.

I'm trying to create cluster without HDP repository because Hortonworks repositories can't be accessed.(https://docs.cloudera.com/HDPDocuments/Ambari-2.6.0.0/bk_ambari-installation/content/hdp_26_repositories.html).

But I don't know how to make my own repository and what to be inside there.

CodePudding user response:

Note: It is not "for Ambari"; these are the repos that get added to all the Hadoop clients. If you've used Ubuntu for anytime, you might be familiar with PPA, or editing /etc/apt/sources.list.d

It is just a regular APT/RPM repo which you can host with Sonatype Nexus or Artifactory.

For apt, you can use apt-mirror for cloning repos. For yum, then createrepo and reposync are two commands to manage repos.

  • Related