Member since
02-19-2016
1
Post
0
Kudos Received
0
Solutions
06-14-2016
04:41 AM
Faced this issue while installing HDP 2.4.2 on Centos 7.x. Fix for this issue depends on details in error message. ValueError: invalid literal forint()withbase10:'hadoop' <-- base on this vale need to modify function - printVersions in file /usr/bin/hdp-select on all nodes. Easy part is this file is same on all nodes ,you can do changes on one node and clush it to all nodes. clush -ab md5sum /usr/bin/hdp-select
vim /usr/bin/hdp-select
#modify below function..
Clush -ab -c /usr/bin/hdp-select
def printVersions():
......
......
if f not in [".", "..", "current", "share", "lost+found","hadoop"]:
......
... View more