Github user mmiklavc commented on a diff in the pull request: https://github.com/apache/incubator-metron/pull/510#discussion_r109947841 --- Diff: metron-deployment/vagrant/Kerberos-setup.md --- @@ -135,71 +135,77 @@ echo "grant 'metron', 'RW', 'enrichment'" | hbase shell 16. Create a â.stormâ directory in the metron userâs home directory and switch to that directory. ``` -su metron && cd ~/ -mkdir .storm -cd .storm +su metron +mkdir ~/.storm +cd ~/.storm ``` 17. Create a custom client jaas file. This should look identical to the Storm client jaas file located in /etc/storm/conf/client_jaas.conf except for the addition of a Client stanza. The Client stanza is used for Zookeeper. All quotes and semicolons are necessary. ``` -[metron@node1 .storm]$ cat client_jaas.conf +cat << EOF > client_jaas.conf StormClient { - com.sun.security.auth.module.Krb5LoginModule required - useTicketCache=true - renewTicket=true - serviceName="nimbus"; + com.sun.security.auth.module.Krb5LoginModule required --- End diff -- Can we keep the indentation?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---