Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Does Cloudbreak 1.6 Shell support Kerberos?

avatar
Contributor

I need to launch a HDP 2.5 cluster with Cloudbreak shell. As per the documentation, the option to enable Kerberos is available with Cloudbreak UI. (https://community.hortonworks.com/questions/27669/files-view-configuration-with-kerberos-cloudbreak....). However, I couldn't see anything in sourcecode or CLI documentation. Is it supported yet?

1 ACCEPTED SOLUTION

avatar
Super Collaborator

Hi @hello hadoop

You have right the documentation is missing, but here is the related source code https://github.com/sequenceiq/cloudbreak/blob/rc-1.6/shell/src/main/java/com/sequenceiq/cloudbreak/s...

which can help you to deploy kerberized clusters. These are the related config parameters:

--enableSecurity

--kerberosMasterKey

--kerberosAdmin

--kerberosPassword

Br,

Richard

View solution in original post

4 REPLIES 4

avatar
Super Collaborator

Hi, @hello hadoop,

In shell "cluster create" command is your friend. There are parameters for this like: --enableSecurity -- kerberosMasterKey --kerberosAdmin --kerberosPassword.

Let me know if you have issue.

avatar
Contributor

Thank you @rkovacs

avatar
Super Collaborator

Hi @hello hadoop

You have right the documentation is missing, but here is the related source code https://github.com/sequenceiq/cloudbreak/blob/rc-1.6/shell/src/main/java/com/sequenceiq/cloudbreak/s...

which can help you to deploy kerberized clusters. These are the related config parameters:

--enableSecurity

--kerberosMasterKey

--kerberosAdmin

--kerberosPassword

Br,

Richard

avatar
Contributor

Thank you @rdoktorics