Member since
12-09-2015
20
Posts
12
Kudos Received
0
Solutions
04-02-2020
08:57 AM
@bpreachuk yes, keytabs needs to be regenerated
... View more
09-19-2019
12:20 PM
1 Kudo
This article from Stack Overflow may be helpful. https://stackoverflow.com/questions/17355270/recovering-black-listed-tasktrackers-in-mapreduce-job In general a blacklisted node can be brought back online by cleaning up the errors. You will need to look at the task tracker logs to see what was causing the failures. Let me know what happens. Ron
... View more
09-27-2017
03:48 AM
1 Kudo
The preferred configuration for integrating with Active
Directory is to use a standalone KDC and create a cross realm trust. I have
done several of these deployments on physical hardware. Recently I built a test
system on our Open Stack lab cluster using a small instance for the KDC. I
followed the instruction in the HDP Security guide for configuring a KDC. When
I created the database I noticed that the krb5util create –s command was
stalling out. I tried several fixes and it took way too long. I did some searching on Kerberos and learned how the
Kerberos utilities create the random data needed for encryption. The designers
of Kerberos wanted a truly random data generator. They decided to base their
random data generator on OS activities. There is a kernel parameter
/proc/sys/kernel/random/entropy_avail. You can cat this value to see how much
entropy your system has available. Since a VM is mostly idle you will get a
small value. RedHat provides a package called rng-tools that you can
install with yum. sudo yum
install rng-tools Then start rngd. sudo chkconfig rngd on
sudo service rngd start
You can cat the value of /proc/sys/kernel/random/entropy_avail
to see if you have increased the entropy in your VM. You should have a much higher value and you will see that
krb5util create –s complete in a few seconds. Reference documentation from RedHat. https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Security_Guide/sect-Security_Guide-Encryption-Using_the_Random_Number_Generator.html
... View more
11-24-2016
04:36 AM
Thank you. Yes it is ancient. I am looking at justifying an upgrade.
... View more
10-12-2016
07:27 AM
@Ron Lee You can refer to the following link to get an example of it: https://github.com/apache/ambari/tree/trunk/ambari-server/src/main/resources/common-services/AMBARI_METRICS/0.1.0
... View more
07-26-2016
01:59 PM
Another source for master/slave configuration is https://web.mit.edu/kerberos/krb5-1.12/doc/admin/install_kdc.html
... View more
06-20-2016
01:42 PM
Hi Eric,
Thanks for answer can you please clarify bit more do you agree with having KDC master on separate server in production scenario or not ? do you see any issues having KDC slave incase master KDC goes down ? Thanks Ripunjay
... View more
09-07-2017
09:09 PM
Well documented... Worked well with Postgres 9.4.7... Would like to add that during restore I receieved error message 'Unknown role ambari'. I manually added the role as below after step 7 in the Restore section. CREATE ROLE ambari WITH LOGIN PASSWORD 'bigdata';
... View more
05-26-2016
04:44 AM
You can get a sandbox from http://hortonworks.com/downloads/#sandbox But you will need at least 8GB for the sandbox, so make sure you are on a machine that has 12-16GB RAM if you get that. If you don't have a machine with that amount of RAM, Azure/AWS is your option. Any further questions, please open a new thread for each question, so it won't be a long thread of question and answers.
... View more
03-09-2018
05:41 PM
@Jonas Straub - Nice article! Can you please update the commands with the following additional service checks? RANGER_KMS_SERVICE_CHECK, AMBARI_INFRA_SERVICE_CHECK, KERBEROS_SERVICE_CHECK, SLIDER_SERVICE_CHECK
... View more