Created 04-04-2018 06:47 AM
Created 04-04-2018 09:39 AM
The following guide provides a very detailed step to install HDF cluster freshly: https://docs.hortonworks.com/HDPDocuments/HDF3/HDF-3.1.1/bk_installing-hdf/content/ch_install-ambari...
.
Installing HDF Mpack: https://docs.hortonworks.com/HDPDocuments/HDF3/HDF-3.1.1/bk_installing-hdf/content/ch_install-mpack....
HDF MPack Download locations: https://docs.hortonworks.com/HDPDocuments/HDF3/HDF-3.1.1/bk_release-notes/content/ch_hdf_relnotes.ht...
.
Installing HDF cluster using Ambari: https://docs.hortonworks.com/HDPDocuments/HDF3/HDF-3.1.1/bk_installing-hdf/content/ch_install-hdf.ht...
Created on 04-04-2018 01:26 PM - edited 08-17-2019 10:25 PM
i was facing the above error
Created 04-04-2018 01:42 PM
Your Curl command is incorrect hence it is not able to download the mpack. It should be something like following: (Please choose the mpack based on your OS following example is for Centos7)
# curl http://public-repo-1.hortonworks.com/HDF/centos7/3.x/updates/3.1.1.0/tars/hdf_ambari_mp/hdf-ambari-m... -o /tmp/hdf-ambari-mpack-3.1.1.0-35.tar.gz<br>
This command will download the mpack in "/tmp/hdf-ambari-mpack-3.1.1.0-35.tar.gz" location.
The you can install the mpack as following:
# ambari-server install-mpack --mpack=/tmp/hdf-ambari-mpack-3.1.1.0-35.tar.gz --purge --verbose
.
The other option will be to directly specify the URL in the above command (instead of using curl)
# ambari-server install-mpack --mpack=http://public-repo-1.hortonworks.com/HDF/centos7/3.x/updates/3.1.1.0/tars/hdf_ambari_mp/hdf-ambari-mpack-3.1.1.0-35.tar.gz --purge --verbose
.