我正试图在一个CentOS盒子上手动安装HortonWorks HDP。我正在按照本页上的说明进行操作http://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.3.2/bk_installing_manually_book/content/meet-min-system-requirements.html
我没有看到任何关于安装ApacheAmbari的说明。怎么做?
您正在查看的说明是手动安装HDP的,这意味着在没有Ambari的情况下安装HDP。您不能手动安装Ambari,因为Ambari是一个用于配置、管理和监控Hadoop集群的工具。如果集群是手动配置的,则Ambari无法对其进行管理或监控。
如果你确实打算让Ambari为你提供集群,并且机器可以访问互联网,你可以运行以下命令:
对于CentOS6
sudo wget -nv http://public-repo-1.hortonworks.com/ambari/centos6/2.x/updates/2.1.2/ambari.repo -O /etc/yum.repos.d/ambari.repo
sudo yum install ambari-server
sudo ambari-server setup
对于CentOS7
sudo wget -nv http://public-repo-1.hortonworks.com/ambari/centos7/2.x/updates/2.1.2/ambari.repo -O /etc/yum.repos.d/ambari.repo
sudo yum install ambari-server
sudo ambari-server setup
如果机器无法访问互联网,或者您需要更多信息,请参阅官方HDP文档以获取安装指南。