Member since
09-29-2016
19
Posts
2
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1204 | 10-10-2016 03:29 PM |
10-14-2016
11:21 PM
@Roman Glova Thanks for your answers As i expected, based on your advice, my local host was not obfuscated due to port fowarding. Had to (writing it out for poeple like me maybe finding this post having the same problem) : Specify a public IP in th vagrant file and reload
Restart Ambari-server
Install Kerberos client as stated here : https://help.ubuntu.com/lts/serverguide/kerberos.html
kinit using a previously added user as add_princ on the kerberos server
klist to check the credentials have been generated
And it's magic, i could log into webui
kdestroy will destroy the credentials.
... View more
10-14-2016
06:47 PM
Hi @nshetty Thanks for your answer; i feel better knowing i did well in this step, as i'm stuck at another step further; won't rollback to these parameters addition. Regards.
... View more
10-10-2016
03:29 PM
Hi, After a long long long way searching the web for answers to help me debug this Yarn not starting, i wondered if all this mess can't be a network configuration problem. The fact is i wasn't even able to find where the right starting logs where for Yarn. The only logs i got was the webui being unavailable. I so reinstalled the whole cluster, buts this time putting more services on slave Vms hoping another component to fail starting and giving me explicit logs. it worked. The explaination : Despite any kind of configuration you use in the VagrantFile, Vagrant will add to etc/hosts a line with the hostname you defined for the machine and the localhost adress, and obviously ,several components of the stack, at a step or another in the setup process, use the first IP feeded in the hosts file neither than the hostname. It explains why everything worked in single node and why their was so many mess in multi-node : some services or log where try-accessed throught 127.0.0.1 adress but where on other machines. The workaround is to provision an inline shell command like this : "sudo sed -i'' '/^127.0.0.1\\t#{hostname}\\t#{name}$/d' /etc/hosts" in the VagrantFile, then install and setup the Ambari server. trying to correct afterwards is like checking by hand every configuration file of the stack. This ticket can be closed.
... View more