<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Kerberos Setup on HDP 2.6 in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181264#M143490</link>
    <description>&lt;P&gt;Assumption &lt;/P&gt;&lt;PRE&gt;REALM=GOLD.COM
REALM Password =welcome1
KDC_HOST =KDC_SERVER_FQDN&lt;/PRE&gt;&lt;H2&gt;Install kerberos package&lt;/H2&gt;&lt;H2&gt;&lt;/H2&gt;&lt;P&gt;yum install -y krb5-server krb5-libs krb5-workstation&lt;/P&gt;&lt;H2&gt;Edit Server Configuration Files&lt;/H2&gt;&lt;H2&gt;&lt;/H2&gt;&lt;P&gt;The configuration files for the server are located in the directory /var/kerberos/krb5kdc edit the 2 files&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;kdc.conf&lt;/LI&gt;&lt;LI&gt;kadm5.acl &lt;/LI&gt;&lt;LI&gt;The conf file is the server configuration and the acl file, well the ACL. The ACL grants all privileges to anyone one with the admin role. Change the Kerberos GOLD.COM realm&lt;/LI&gt;&lt;LI&gt;&lt;PRE&gt;cd /var/kerberos/krb5kdc/
vi kadm5.acl replace the REALM after the @ with the below

*/admin@GOLD.COM      *
&lt;/PRE&gt;
&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Edit the kdc.conf&lt;/P&gt;&lt;PRE&gt;    [kdcdefaults]
    kdc_ports = 88
    kdc_tcp_ports = 88

    [realms]
    GOLD.COM = {
    #master_key_type = aes256-cts
    acl_file = /var/kerberos/krb5kdc/kadm5.acl
    dict_file = /usr/share/dict/words
    admin_keytab = /var/kerberos/krb5kdc/kadm5.keytab
    supported_enctypes = aes256-cts:normal aes128-cts:normal des3-hmac-sha1:normal arcfour-hmac:normal camellia256-cts:normal camellia128-cts:normal des-hmac-sha1:normal des-cbc-md5:normal des-cbc-crc:normal
    }
&lt;/PRE&gt;&lt;H2&gt;Edit the Client Configuration&lt;/H2&gt;&lt;H2&gt;&lt;/H2&gt;&lt;P&gt;Update the krb.conf on the KDC server copy this file to all the host in the cluster in the below directory /etc/krb5.conf&lt;/P&gt;&lt;P&gt;vi /etc/krb5.conf&lt;/P&gt;&lt;PRE&gt;# Configuration snippets may be placed in this directory as well
includedir /etc/krb5.conf.d/

[logging]
default = FILE:/var/log/krb5libs.log
kdc = FILE:/var/log/krb5kdc.log
admin_server = FILE:/var/log/kadmind.log

[libdefaults]
dns_lookup_realm = false
ticket_lifetime = 24h
renew_lifetime = 7d
forwardable = true
rdns = false
default_realm = GOLD.COM
default_ccache_name = KEYRING:persistent:%{uid}

[realms]
GOLD.COM = {
kdc = KDC_SERVER_FQDN
admin_server = KDC_SERVER_FQDN
}

[domain_realm]
.gold.com = GOLD.COM
gold.com = GOLD.COM
&lt;/PRE&gt;&lt;H2&gt;Create the DC database&lt;/H2&gt;&lt;H2&gt;&lt;/H2&gt;&lt;P&gt;When creating the KDC database we will need an entropy pool of random data &lt;/P&gt;&lt;PRE&gt;sudo kdb5_util create -s -r GOLD.COM 

Loading random data 

Initializing database '/var/kerberos/krb5kdc/principal' for realm 'GOLD.COM', 

master key name 'K/M@GOLD.COM' 

You will be prompted for the database Master Password. It is important that you NOT FORGET this password.Enter KDC database master key: welcome1 

Re-enter KDC database master key to verify: welcome1&lt;/PRE&gt;&lt;H2&gt;Start and Enable Kerberos&lt;/H2&gt;&lt;H2&gt;&lt;/H2&gt;&lt;P&gt;Start and enable the two services ensure you run status command to validate that kadmin is running&lt;/P&gt;&lt;PRE&gt;# sudo systemctl start krb5kdc kadmin
# sudo systemctl enable krb5kdc kadmin
Created symlink from /etc/systemd/system/multi-user.target.wants/krb5kdc.service to /usr/lib/systemd/system/krb5kdc.service.
Created symlink from /etc/systemd/system/multi-user.target.wants/kadmin.service to /usr/lib/systemd/system/kadmin.service.
&lt;/PRE&gt;&lt;H2&gt;Check the Principals&lt;/H2&gt;&lt;H2&gt;&lt;/H2&gt;&lt;PRE&gt;# sudo kadmin.local
Authenticating as principal root/admin@GOLD.COM with password.
kadmin.local:  listprincs
K/M@GOLD.COM
kadmin/admin@GOLD.COM
kadmin/changepw@GOLD.COM
kadmin/KDC_SERVER_FQDN@GOLD.COM
kiprop/KDC_SERVER_FQDN@GOLD.COM
krbtgt/UPUTEST.CH@UPUTEST.CH
kadmin.local:
&lt;/PRE&gt;&lt;P&gt;Must create a root principal for kerberization&lt;/P&gt;&lt;PRE&gt;kadmin.local:  addprinc root/admin
WARNING: no policy specified for root/admin@GOLD.COM; defaulting to no policy
Enter password for principal "root/admin@GOLD.COM":
Re-enter password for principal "root/admin@GOLD.COM":
Principal "root/admin@GOLD.COM" created.
&lt;/PRE&gt;&lt;H2&gt;Install kerberos Client package&lt;/H2&gt;&lt;H2&gt;
&lt;/H2&gt;&lt;P&gt;on tall the hosts in the cluster install the client&lt;/P&gt;&lt;P&gt;yum install -y krb5-libs krb5-workstation&lt;/P&gt;&lt;H2&gt;&lt;/H2&gt;&lt;P&gt;This will deliver the necessary files copy the krb5.conf from the KDC server to all the client hosts&lt;/P&gt;&lt;H2&gt;Invoke kerberos tool in Ambari&lt;/H2&gt;&lt;H2&gt;&lt;/H2&gt;&lt;P&gt;When  running the kerberization tool in Ambari use&lt;/P&gt;&lt;PRE&gt;root/admin@GOLD.COM password welcome1&lt;/PRE&gt;&lt;P&gt;Follow the instructions take care that you installed JCE on the KDC server &lt;/P&gt;</description>
    <pubDate>Wed, 09 Aug 2017 21:47:46 GMT</pubDate>
    <dc:creator>Shelton</dc:creator>
    <dc:date>2017-08-09T21:47:46Z</dc:date>
    <item>
      <title>Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181259#M143485</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I want to setup kerberos on HDP 2.6. i have never done this before. Can anyone share the step by step commands/procedure on how to go about it? i am totally new to kerberos. i am using Centos.&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 13:45:58 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181259#M143485</guid>
      <dc:creator>ryanoberoi9999</dc:creator>
      <dc:date>2017-05-22T13:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181260#M143486</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/16008/ryanoberoi9999.html" nodeid="16008"&gt;@Rishabh Oberoi&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Please refer to the following doc to know how to install KDC:  &lt;A href="http://docs.hortonworks.com/HDPDocuments/Ambari-2.5.0.3/bk_ambari-security/content/optional_install_a_new_mit_kdc.html" target="_blank"&gt;http://docs.hortonworks.com/HDPDocuments/Ambari-2.5.0.3/bk_ambari-security/content/optional_install_a_new_mit_kdc.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Then you can refer to the ambari Doc to know how to setup kerberos:  &lt;A href="https://docs.hortonworks.com/HDPDocuments/Ambari-2.5.0.3/bk_ambari-security/content/set_up_kerberos_for_ambari_server.html" target="_blank"&gt;https://docs.hortonworks.com/HDPDocuments/Ambari-2.5.0.3/bk_ambari-security/content/set_up_kerberos_for_ambari_server.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 14:02:01 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181260#M143486</guid>
      <dc:creator>jsensharma</dc:creator>
      <dc:date>2017-05-22T14:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181261#M143487</link>
      <description>&lt;P&gt;Hello &lt;A rel="user" href="https://community.cloudera.com/users/16008/ryanoberoi9999.html" nodeid="16008"&gt;@Rishabh Oberoi&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Please refer to below link&lt;/P&gt;&lt;P&gt;&lt;A href="http://docs.hortonworks.com/HDPDocuments/Ambari-2.5.0.3/bk_ambari-security/content/ch_configuring_amb_hdp_for_kerberos.html" target="_blank"&gt;http://docs.hortonworks.com/HDPDocuments/Ambari-2.5.0.3/bk_ambari-security/content/ch_configuring_amb_hdp_for_kerberos.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 14:04:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181261#M143487</guid>
      <dc:creator>sgowda</dc:creator>
      <dc:date>2017-05-22T14:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181262#M143488</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/16008/ryanoberoi9999.html" nodeid="16008"&gt;@Rishabh Oberoi&lt;/A&gt;&lt;/P&gt;&lt;P&gt;For the step by Step instructions the Following Hortonorks Article and Youtube Video will be more useful:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.hortonworks.com/articles/82536/configuring-ambari-and-hadoop-for-kerberos-using-a.html" target="_blank"&gt;https://community.hortonworks.com/articles/82536/configuring-ambari-and-hadoop-for-kerberos-using-a.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hortonworks HDP 2.5 Kerberos with Active Directory as the KDC : &lt;/STRONG&gt;&lt;A href="https://www.youtube.com/watch?v=-HMyEpDJeGg&amp;amp;feature=youtu.be" target="_blank"&gt;https://www.youtube.com/watch?v=-HMyEpDJeGg&amp;amp;feature=youtu.be&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2017 14:04:57 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181262#M143488</guid>
      <dc:creator>jsensharma</dc:creator>
      <dc:date>2017-05-22T14:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181263#M143489</link>
      <description>&lt;P&gt;Hello Team, Just wondering if we have an updated documentation for kerberos setup on HDP 2.6. I am mainly interested in the checks we should be doing before starting kerberos setup using Ambari. The challenge using Ambari for kerberos setup is that if it gets stuck then getting cluster back is a nightmare. Even the 'skip' button on Ambari becomes unavailable many times. The cluster all services green on Ambari may not be complete confirmation that cluster is in the good state to start the kerberos installation. &lt;/P&gt;&lt;P&gt;with Manual installation, atleast we know the steps followed and rollback may be a bit easier. Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 21:15:14 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181263#M143489</guid>
      <dc:creator>gvishal</dc:creator>
      <dc:date>2017-08-09T21:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181264#M143490</link>
      <description>&lt;P&gt;Assumption &lt;/P&gt;&lt;PRE&gt;REALM=GOLD.COM
REALM Password =welcome1
KDC_HOST =KDC_SERVER_FQDN&lt;/PRE&gt;&lt;H2&gt;Install kerberos package&lt;/H2&gt;&lt;H2&gt;&lt;/H2&gt;&lt;P&gt;yum install -y krb5-server krb5-libs krb5-workstation&lt;/P&gt;&lt;H2&gt;Edit Server Configuration Files&lt;/H2&gt;&lt;H2&gt;&lt;/H2&gt;&lt;P&gt;The configuration files for the server are located in the directory /var/kerberos/krb5kdc edit the 2 files&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;kdc.conf&lt;/LI&gt;&lt;LI&gt;kadm5.acl &lt;/LI&gt;&lt;LI&gt;The conf file is the server configuration and the acl file, well the ACL. The ACL grants all privileges to anyone one with the admin role. Change the Kerberos GOLD.COM realm&lt;/LI&gt;&lt;LI&gt;&lt;PRE&gt;cd /var/kerberos/krb5kdc/
vi kadm5.acl replace the REALM after the @ with the below

*/admin@GOLD.COM      *
&lt;/PRE&gt;
&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Edit the kdc.conf&lt;/P&gt;&lt;PRE&gt;    [kdcdefaults]
    kdc_ports = 88
    kdc_tcp_ports = 88

    [realms]
    GOLD.COM = {
    #master_key_type = aes256-cts
    acl_file = /var/kerberos/krb5kdc/kadm5.acl
    dict_file = /usr/share/dict/words
    admin_keytab = /var/kerberos/krb5kdc/kadm5.keytab
    supported_enctypes = aes256-cts:normal aes128-cts:normal des3-hmac-sha1:normal arcfour-hmac:normal camellia256-cts:normal camellia128-cts:normal des-hmac-sha1:normal des-cbc-md5:normal des-cbc-crc:normal
    }
&lt;/PRE&gt;&lt;H2&gt;Edit the Client Configuration&lt;/H2&gt;&lt;H2&gt;&lt;/H2&gt;&lt;P&gt;Update the krb.conf on the KDC server copy this file to all the host in the cluster in the below directory /etc/krb5.conf&lt;/P&gt;&lt;P&gt;vi /etc/krb5.conf&lt;/P&gt;&lt;PRE&gt;# Configuration snippets may be placed in this directory as well
includedir /etc/krb5.conf.d/

[logging]
default = FILE:/var/log/krb5libs.log
kdc = FILE:/var/log/krb5kdc.log
admin_server = FILE:/var/log/kadmind.log

[libdefaults]
dns_lookup_realm = false
ticket_lifetime = 24h
renew_lifetime = 7d
forwardable = true
rdns = false
default_realm = GOLD.COM
default_ccache_name = KEYRING:persistent:%{uid}

[realms]
GOLD.COM = {
kdc = KDC_SERVER_FQDN
admin_server = KDC_SERVER_FQDN
}

[domain_realm]
.gold.com = GOLD.COM
gold.com = GOLD.COM
&lt;/PRE&gt;&lt;H2&gt;Create the DC database&lt;/H2&gt;&lt;H2&gt;&lt;/H2&gt;&lt;P&gt;When creating the KDC database we will need an entropy pool of random data &lt;/P&gt;&lt;PRE&gt;sudo kdb5_util create -s -r GOLD.COM 

Loading random data 

Initializing database '/var/kerberos/krb5kdc/principal' for realm 'GOLD.COM', 

master key name 'K/M@GOLD.COM' 

You will be prompted for the database Master Password. It is important that you NOT FORGET this password.Enter KDC database master key: welcome1 

Re-enter KDC database master key to verify: welcome1&lt;/PRE&gt;&lt;H2&gt;Start and Enable Kerberos&lt;/H2&gt;&lt;H2&gt;&lt;/H2&gt;&lt;P&gt;Start and enable the two services ensure you run status command to validate that kadmin is running&lt;/P&gt;&lt;PRE&gt;# sudo systemctl start krb5kdc kadmin
# sudo systemctl enable krb5kdc kadmin
Created symlink from /etc/systemd/system/multi-user.target.wants/krb5kdc.service to /usr/lib/systemd/system/krb5kdc.service.
Created symlink from /etc/systemd/system/multi-user.target.wants/kadmin.service to /usr/lib/systemd/system/kadmin.service.
&lt;/PRE&gt;&lt;H2&gt;Check the Principals&lt;/H2&gt;&lt;H2&gt;&lt;/H2&gt;&lt;PRE&gt;# sudo kadmin.local
Authenticating as principal root/admin@GOLD.COM with password.
kadmin.local:  listprincs
K/M@GOLD.COM
kadmin/admin@GOLD.COM
kadmin/changepw@GOLD.COM
kadmin/KDC_SERVER_FQDN@GOLD.COM
kiprop/KDC_SERVER_FQDN@GOLD.COM
krbtgt/UPUTEST.CH@UPUTEST.CH
kadmin.local:
&lt;/PRE&gt;&lt;P&gt;Must create a root principal for kerberization&lt;/P&gt;&lt;PRE&gt;kadmin.local:  addprinc root/admin
WARNING: no policy specified for root/admin@GOLD.COM; defaulting to no policy
Enter password for principal "root/admin@GOLD.COM":
Re-enter password for principal "root/admin@GOLD.COM":
Principal "root/admin@GOLD.COM" created.
&lt;/PRE&gt;&lt;H2&gt;Install kerberos Client package&lt;/H2&gt;&lt;H2&gt;
&lt;/H2&gt;&lt;P&gt;on tall the hosts in the cluster install the client&lt;/P&gt;&lt;P&gt;yum install -y krb5-libs krb5-workstation&lt;/P&gt;&lt;H2&gt;&lt;/H2&gt;&lt;P&gt;This will deliver the necessary files copy the krb5.conf from the KDC server to all the client hosts&lt;/P&gt;&lt;H2&gt;Invoke kerberos tool in Ambari&lt;/H2&gt;&lt;H2&gt;&lt;/H2&gt;&lt;P&gt;When  running the kerberization tool in Ambari use&lt;/P&gt;&lt;PRE&gt;root/admin@GOLD.COM password welcome1&lt;/PRE&gt;&lt;P&gt;Follow the instructions take care that you installed JCE on the KDC server &lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2017 21:47:46 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181264#M143490</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2017-08-09T21:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181265#M143491</link>
      <description>&lt;P&gt;Hello Geoffrey,  Just wondering if you have similar instructions unkerberoize the cluster in case we fail to successfully setup the keberos.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the instructions and help. &lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2017 09:15:19 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181265#M143491</guid>
      <dc:creator>gvishal</dc:creator>
      <dc:date>2017-08-10T09:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181266#M143492</link>
      <description>&lt;P&gt;@&lt;A href="https://community.hortonworks.com/users/16956/gvishalg2.html"&gt;Vishal Gupta&lt;/A&gt;
&lt;/P&gt;&lt;P&gt;Unfortunately the only proper method is going through the Ambari UI.&lt;/P&gt;&lt;P&gt;Make sure you have the KDC credential and ensure the KDc server is accessible and running.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Log in to Ambari Web and Browse to Admin &amp;gt; Kerberos.&lt;/LI&gt;&lt;LI&gt;Click &lt;STRONG&gt;Disable Kerberos&lt;/STRONG&gt; to launch the wizard.&lt;/LI&gt;&lt;LI&gt;Complete the wizard.&lt;/LI&gt;&lt;LI&gt;Restart all the HDP components &lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;A target="_blank" href="https://docs.hortonworks.com/HDPDocuments/Ambari-2.4.0.1/bk_ambari-user-guide/content/how_to_disable_kerberos.html"&gt;Official doc&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hope that helps&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2017 14:53:00 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181266#M143492</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2017-08-10T14:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181267#M143493</link>
      <description>&lt;P&gt;Hello Geoffrey, I agree. The challenge we face last time is that cluster unkerberization via Ambari get stuck and then doing it manually using the link &lt;A href="https://stackoverflow.com/questions/29744821/how-to-disable-hadoop-kerberos"&gt;https://stackoverflow.com/questions/29744821/how-to-disable-hadoop-kerberos&lt;/A&gt;  help a bit but not completely. We now have to re-initialize the whole cluster and this time, using Ambari it gets setup successfully. Looks like it is important to have a pre-kerberozation check list to make sure that the cluster is in proper state before start of this exercise. Thanks for your time and sharing the knowhow. Appreciate it. Best Regards, &lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2017 19:51:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181267#M143493</guid>
      <dc:creator>gvishal</dc:creator>
      <dc:date>2017-08-10T19:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181268#M143494</link>
      <description>&lt;P&gt;@&lt;A href="https://community.hortonworks.com/users/16956/gvishalg2.html"&gt;Vishal Gupta&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Experience is the best teacher, its always good to follow the official documentation I have never failed to to kerberize because I stick to the document.  The setup of the KDC and KDC clients is key to successfully kerberize and unkerberize a HDP cluster. Remember to document always &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;If my helped you  then,you can accept and close this thread.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2017 20:14:10 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181268#M143494</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2017-08-10T20:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181269#M143495</link>
      <description>&lt;P&gt;@&lt;A href="https://community.hortonworks.com/users/16956/gvishalg2.html"&gt;Vishal Gupta&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Experience is the best teacher, its always good to follow the official documentation I have never failed to to kerberize because I stick to the document. The setup of the KDC and KDC clients is key to successfully kerberize and unkerberize a HDP cluster. Remember to document always &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;If my helped you then,you can accept and close this thread.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2017 20:15:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181269#M143495</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2017-08-10T20:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181270#M143496</link>
      <description>&lt;P&gt;Ambari doesn't have mechanism to install KDC and deploy kerberos set up  like cloudera manager ? &lt;/P&gt;&lt;P&gt;Appreciate if someone provide glimpse on this ?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 04:33:28 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181270#M143496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-06-20T04:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181271#M143497</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;A href="@Vishal Gupta"&gt; @Vishal Gupta&lt;/A&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;I don't think Cloudera Manager does install the KDC and the client automatically.  Whether you are using Cloudera or Hortonworks you will first need to have a working KDC server(krb5-server) and Kerberos clients (krb5-workstation, krb5-libs) and realm setup in both cases you will either use the CM or Ambari Kerberos wizard.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Having said that I provided a walkthrough to help you set up Kerberos on HDP, and consequent questions should be opened as new threads this revived quest dates from August 2017! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;It will be great if you can marked this HCC thread as Answered by clicking on the "&lt;STRONG&gt;Accept&lt;/STRONG&gt;" Button. That way other HCC users can quickly find the solution when they encounter the same issue.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;HTH&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 05:23:34 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181271#M143497</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2018-06-20T05:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181272#M143498</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/1271/sheltong.html" nodeid="1271"&gt;@Geoffrey Shelton Okot&lt;/A&gt;Can my KDC server and AD be same?I donot fine HDP documentation straightforward with clear instructions for enabling kerberos with AD.&lt;/P&gt;</description>
      <pubDate>Sat, 23 Jun 2018 22:46:54 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181272#M143498</guid>
      <dc:creator>muditcse</dc:creator>
      <dc:date>2018-06-23T22:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181273#M143499</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/1271/sheltong.html" nodeid="1271"&gt;@Geoffrey Shelton Okot&lt;/A&gt; , the official documentation does not list the steps of installing kerberos clients and propagating krb5.conf to all the nodes. Does this mean Ambari tool will propagate krb5.conf and install krb5-workstation for me? I know using Cloudera Manager I have to set up clients as well which makes absolutely perfect sense. I just wanted to know for sure before I execute the wizard.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Oct 2018 21:42:41 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181273#M143499</guid>
      <dc:creator>alex_goron</dc:creator>
      <dc:date>2018-10-26T21:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181274#M143500</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;A href="@Alex Goron"&gt; @Alex Goron&lt;/A&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Unfortunately, Ambari also doesn't push the krb5.conf, you need the install the &lt;STRONG&gt;Kerberos client&lt;/STRONG&gt; on all the client nodes this will deliver the &lt;STRONG&gt;krb5.conf &lt;/STRONG&gt;which you will need to modify using the correct &lt;STRONG&gt;REALM&lt;/STRONG&gt; name and &lt;STRONG&gt;KDC hostname&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Server install &lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;PRE&gt;yum install krb5-server krb5-libs krb5-workstation&lt;/PRE&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;KDC server package:&lt;/STRONG&gt; &lt;/EM&gt;&lt;/P&gt;&lt;PRE&gt;krb5-server
Admin package: krb5-libs &lt;/PRE&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Client install&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;PRE&gt;yum install  krb5-workstation&lt;/PRE&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Client package: &lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;PRE&gt;krb5-workstation&lt;/PRE&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Configuration Files: &lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;PRE&gt;/var/kerberos/krb5kdc/kdc.conf {Present ONLY on server}
/var/kerberos/krb5kdc/kadm5.acl {Present ONLY on server}
/etc/krb5.conf {Present both server/client}&lt;/PRE&gt;&lt;P&gt;&lt;EM&gt;After editing the above files then you can run the Ambari Kerberos tool it should run successfully  &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Oct 2018 23:26:15 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181274#M143500</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2018-10-26T23:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181275#M143501</link>
      <description>&lt;P&gt;Thanks a lot &lt;A rel="user" href="https://community.cloudera.com/users/1271/sheltong.html" nodeid="1271"&gt;@Geoffrey Shelton Okot&lt;/A&gt;! Makes perfect sense to me.&lt;/P&gt;</description>
      <pubDate>Sat, 27 Oct 2018 01:54:35 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181275#M143501</guid>
      <dc:creator>alex_goron</dc:creator>
      <dc:date>2018-10-27T01:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181276#M143502</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;A href="https://community.hortonworks.com/questions/103945/@Alex%20Goron"&gt;@Alex Goron&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Great then if that answered your question then can you take some time and  "Accept" so that other members can reference it.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Oct 2018 04:34:27 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181276#M143502</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2018-10-27T04:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181277#M143503</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/1271/sheltong.html" nodeid="1271"&gt;@Geoffrey Shelton Okot&lt;/A&gt; , I would love to do so, but I can not see that "Accept" button ...&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;</description>
      <pubDate>Sat, 27 Oct 2018 05:55:55 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181277#M143503</guid>
      <dc:creator>alex_goron</dc:creator>
      <dc:date>2018-10-27T05:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: Kerberos Setup on HDP 2.6</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181278#M143504</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;A href="https://community.hortonworks.com/questions/103945/@Alex%20Goron" rel="nofollow noopener noreferrer" target="_blank"&gt;@Alex Goron&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Here you go &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="93025-accept.jpg" style="width: 856px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/19224iD8D5A38A05DAFE36/image-size/medium?v=v2&amp;amp;px=400" role="button" title="93025-accept.jpg" alt="93025-accept.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Aug 2019 09:01:42 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Kerberos-Setup-on-HDP-2-6/m-p/181278#M143504</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2019-08-18T09:01:42Z</dc:date>
    </item>
  </channel>
</rss>

