如何为 Ubuntu14 上的 HDP 安装创建本地存储库?
How to create a local repository for HDP install on Ubuntu14?
我正在尝试在 Ubuntu14.04 上安装 HDP 2.5。我在这台机器上没有互联网访问权限,因此想使用本地存储库将 HDP 安装为 instructed here
下载 "untared" 文件并将其放置在我的服务器上后,如何将它们添加到 ambari.repo?如何Preparing The Ambari Repository Configuration File
您可以只将您的网络服务器 URL 输入到 Repofile 而不是原始 URL。这在您的文档的第三步中进行了解释
[Updates-Ambari-2.4.1.0]
name=Ambari-2.4.1.0-Updates
baseurl=INSERT-BASE-URL
gpgcheck=1
gpgkey=http://public-repo-1.hortonworks.com/ambari/centos6/RPM-GPG-KEY/RPM-GPG-KEY-Jenkins
enabled=1
priority=1
我在HDP 2.4.2.0 + ubuntu 14上遇到了同样的问题,我发现官方文档对ubuntu 14是错误的。要更改的正确文件是ambari.list 在本地存储库主机中的 /etc/apt/sources.list.d 下。它需要为 AMBARI-2.4.2.0、HDP、HDP-UTILS.
放置本地基础 URL
我找到了答案。 hortonworks 文档有点含糊。
我们要创建一个文件名ambari.list
:
[Updates-Ambari-2.4.1.0]
name=Ambari-2.4.1.0-Updates
baseurl=INSERT-BASE-URL
gpgcheck=0
gpgkey= <link to local repo>
enabled=0
priority=1
Ubuntu sources.list 遵循这种格式
deb URI 发布名称 main
(详情见 https://help.ubuntu.com/community/Repositories/CommandLine)
所以例如,对于自定义本地 Ambari 存储库,您的 ambari.list 应该是这样的
deb http://repohost/ambari/ubuntu16/2.7.3.0-139 Ambari 主程序
(假设您在 repohost 的 /var/www/html 下下载了 http://public-repo-1.hortonworks.com/ambari/ubuntu16/2.x/updates/2.7.3.0/ambari-2.7.3.0-ubuntu16.tar.gz)
我正在尝试在 Ubuntu14.04 上安装 HDP 2.5。我在这台机器上没有互联网访问权限,因此想使用本地存储库将 HDP 安装为 instructed here
下载 "untared" 文件并将其放置在我的服务器上后,如何将它们添加到 ambari.repo?如何Preparing The Ambari Repository Configuration File
您可以只将您的网络服务器 URL 输入到 Repofile 而不是原始 URL。这在您的文档的第三步中进行了解释
[Updates-Ambari-2.4.1.0]
name=Ambari-2.4.1.0-Updates
baseurl=INSERT-BASE-URL
gpgcheck=1
gpgkey=http://public-repo-1.hortonworks.com/ambari/centos6/RPM-GPG-KEY/RPM-GPG-KEY-Jenkins
enabled=1
priority=1
我在HDP 2.4.2.0 + ubuntu 14上遇到了同样的问题,我发现官方文档对ubuntu 14是错误的。要更改的正确文件是ambari.list 在本地存储库主机中的 /etc/apt/sources.list.d 下。它需要为 AMBARI-2.4.2.0、HDP、HDP-UTILS.
放置本地基础 URL我找到了答案。 hortonworks 文档有点含糊。
我们要创建一个文件名ambari.list
:
[Updates-Ambari-2.4.1.0]
name=Ambari-2.4.1.0-Updates
baseurl=INSERT-BASE-URL
gpgcheck=0
gpgkey= <link to local repo>
enabled=0
priority=1
Ubuntu sources.list 遵循这种格式
deb URI 发布名称 main
(详情见 https://help.ubuntu.com/community/Repositories/CommandLine)
所以例如,对于自定义本地 Ambari 存储库,您的 ambari.list 应该是这样的
deb http://repohost/ambari/ubuntu16/2.7.3.0-139 Ambari 主程序
(假设您在 repohost 的 /var/www/html 下下载了 http://public-repo-1.hortonworks.com/ambari/ubuntu16/2.x/updates/2.7.3.0/ambari-2.7.3.0-ubuntu16.tar.gz)