Member since
12-09-2015
42
Posts
16
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3820 | 06-15-2016 07:26 PM |
12-01-2016
05:56 PM
@jss shouldn't that be mentioned in one of the two docs then? Eg, http://docs.hortonworks.com/HDPDocuments/Ambari-2.4.0.1/bk_ambari-views/content/configuring_your_cluster_for_files_view.html That doc specifically says "4. Save the configuration change and restart the required components as indicated by Ambari." It should say "and HiveServer2 in order to use Hive View".
... View more
10-14-2016
09:11 PM
Thanks for pointing to more information. I'm going to accept vperiasamy's answer.
... View more
06-17-2016
05:43 PM
Here's what I used after guidance from @Robert Levas "security" : {
"type" : "KERBEROS",
"kerberos_descriptor": {
"properties": {
"realm" : "YOURREALMHERE",
"keytab_dir" : "/etc/security/keytabs"
},
"identities" : [
{
"principal" : {
"type" : "user",
"value" : "ambari-qa@${realm}"
},
"name" : "smokeuser"
}
],
"services" : [
{
"name" : "HDFS",
"components" : [
{
"name" : "NAMENODE",
"identities" : [
{
"principal" : {
"configuration" : "hadoop-env/hdfs_principal_name",
"type" : "user",
"local_username" : "hdfs",
"value" : "hdfs@${realm}"
},
"name" : "hdfs"
}
]
}
]
},
{
"name" : "MAPREDUCE2",
"components" : [
{
"name" : "HISTORYSERVER",
"identities" : [
{
"principal" : {
"configuration" : "mapred-site/mapreduce.jobhistory.principal",
"type" : "service",
"local_username" : "mapred",
"value" : "mapred/_HOST@${realm}"
},
"name" : "history_server_jhs"
}
]
}
]
},
{
"name" : "SPARK",
"identities" : [
{
"principal" : {
"configuration" : "spark-defaults/spark.history.kerberos.principal",
"type" : "user",
"local_username" : "spark",
"value" : "spark@${realm}"
},
"name" : "sparkuser"
}
]
},
{
"name" : "ACCUMULO",
"identities" : [
{
"principal" : {
"configuration" : "accumulo-env/accumulo_principal_name",
"type" : "user",
"local_username" : "accumulo",
"value" : "accumulo@${realm}"
},
"name" : "accumulo"
},
{
"principal" : {
"configuration" : "accumulo-site/trace.user",
"type" : "user",
"local_username" : "accumulo",
"value" : "accumulo@${realm}"
},
"name" : "accumulo_tracer"
}
]
},
{
"name" : "HBASE",
"identities" : [
{
"principal" : {
"configuration" : "hbase-env/hbase_principal_name",
"type" : "user",
"local_username" : "hbase",
"value" : "hbase@${realm}"
},
"name" : "hbase"
}
]
},
{
"name" : "YARN",
"components" : [
{
"name" : "NODEMANAGER",
"identities" : [
{
"principal" : {
"configuration" : "yarn-site/yarn.nodemanager.principal",
"type" : "service",
"local_username" : "yarn",
"value" : "yarn/_HOST@${realm}"
},
"name" : "nodemanager_nm"
}
]
},
{
"name" : "RESOURCEMANAGER",
"identities" : [
{
"principal" : {
"configuration" : "yarn-site/yarn.resourcemanager.principal",
"type" : "service",
"local_username" : "yarn",
"value" : "yarn/_HOST@${realm}"
},
"name" : "resource_manager_rm"
}
]
}
]
},
{
"name" : "STORM",
"identities" : [
{
"principal" : {
"configuration" : "storm-env/storm_principal_name",
"type" : "user",
"value" : "storm@${realm}"
},
"name" : "storm_components"
}
]
},
{
"name" : "FALCON",
"configurations" : [
{
"falcon-startup.properties" : {
"*.dfs.namenode.kerberos.principal" : "hdfs/_HOST@${realm}"
}
}
]
}
]
}
},
"configurations" : [
{
"kerberos-env": {
"properties_attributes" : { },
"properties" : {
"realm" : "YOURREALM",
"kdc_type" : "mit-kdc",
"kdc_host" : "my-real-kdc.emc.com",
"admin_server_host" : "my-real-ambari-server.emc.com"
}
}
},
{
"krb5-conf": {
"properties_attributes" : { },
"properties" : {
"domains" : "YOURREALM",
"manage_krb5_conf" : "true"
}
}
}
]
... View more
06-14-2016
09:42 PM
It's not clear which version of Ambari this is for. Maybe 2.0? Current steps (Ambari 2.1/2.2, HDP 2.3/2.4 and OneFS 7.2.1.2/8.0.0.1) for most easily completing Kerberos configuration are linked in answer to this question: https://community.hortonworks.com/questions/38583/configure-kerberos-using-ambari-with-emc-isilon.html
... View more
06-10-2016
10:59 PM
Update on this article -- recent OneFS releases do support Rolling Upgrade of HDP. Here's the improved procedure: https://community.emc.com/community/products/isilon/blog/2016/01/07/rolling-upgrade-of-hdp-23-with-onefs
... View more