Member since
08-19-2019
150
Posts
1
Kudos Received
0
Solutions
08-28-2019
11:53 PM
1 Kudo
There is no such option do downgrade HDP version out of the box. Also we do not see any HDP 2.7 version released. Also HDP 3.x and HDP 2.6 has major differences in terms of components. Any specific reason you are looking out for downgrade? If this is a freshly build cluster on HDP 3. and you want to use HDP 2.6 then better to freshly install HDP 2.6 which will be lot time and effort saving than manually fixing and downgrading all the components and configs.
... View more
08-28-2019
06:07 AM
1 Kudo
@Manoj690 Are you sure that the NameNode is running on "localhost" (where you are opening the mentioned URL in the browser) ? 1. Can you specify the namenode IP Address/ Hostname in the URL instead of "localhost" ? 2. Can you also check if the NameNode is listening on port 50070 ? (is that port opened and firewall is disabled) on NameNode host? # netstat -tnlpa | grep 50070
# service iptables stop 3. Please check if you are able to telnet NamerNode host=name & port from the machine where you are running the Browser? # telnet $NAMENODE_HOST 50070
(OR)
# mc -v $NAMENODE_HOST 50070 4. Check and share the NameNode log. Usually it can be found inside the " /var/log/hadoop/hdfs/hadoop-hdfs-namenode-xxxxxxxxxxxxxxxxxx.log "
... View more
08-28-2019
05:51 AM
@Manoj690 Try this: First switch to "root" user using "su - " then from "root" user account run the "su - hdfs" command. # su -
# su - hdfs
... View more
08-25-2019
12:20 PM
1 Kudo
@Manoj690 Going through your logs I can see that the Namenode is in SAFE MODE, and in this case it won't allow you to change the status of any file in the cluster including the logs. 2019-08-22 12:31:01,376 [server.Accumulo] INFO : Attempting to talk to zookeeper 2019-08-22 12:31:01,681 [server.Accumulo] INFO : ZooKeeper connected and initialized, attempting to talk to HDFS 2019-08-22 12:31:01,946 [server.Accumulo] WARN : Waiting for the NameNode to leave safemode 2019-08-22 12:31:01,946 [server.Accumulo] INFO : Backing off due to failure; current sleep period is 1.0 seconds 2019-08-22 12:31:02,950 [server.Accumulo] WARN : Waiting for the NameNode to leave safemode 2019-08-22 12:31:02,950 [server.Accumulo] INFO : Backing off due to failure; current sleep period is 2.0 seconds 2019-08-22 12:31:04,954 [server.Accumulo] WARN : Waiting for the NameNode to leave safemode To resolve the issue can you do the following as hdfs user $ hdfs dfsadmin -safemode get Safe mode is OFF The above is the desired output but if you get ON then proceed like below First backup your FS Image & Edits $ hdfs dfsadmin -saveNamespace Then exit the safemode $ hdfs dfsadmin -safemode leave Once successful then revalidate $ hdfs dfsadmin -safemode get This time it should be off and you can now successfully restart the failed services from Ambari everything should succeed HTH
... View more
08-22-2019
07:56 AM
@Manoj690 There is no need to close a thread after you have solved your issue. Simply mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future.
... View more
08-21-2019
11:56 PM
@Manoj690 Better approach will be to change the PORT in yarn config from 53 to something unused. https://community.cloudera.com/t5/Community-Articles/YARN-REGISTRY-DNS-Port-Conflict-Issue/ta-p/249117
... View more
08-21-2019
05:31 AM
@Manoj690 Not the same output as mine. Please notice that, In your case that file is being owned by "root" user. Not the "hdfs" user. So please try this: # chown hdfs:hadoop /hadoop/hdfs/namenode/current/VERSION
(OR recursively)
# chown -R hdfs:hadoop /hadoop/hdfs/
... View more
08-21-2019
02:10 AM
@Manoj690 If Ambari Server is up and running now then can you mark this thread as closed. The other threads regarding MySQL + Ambari connectivity are here: https://community.cloudera.com/t5/Support-Questions/ambari-server-problem-3/m-p/268500/highlight/false#M206233 https://community.cloudera.com/t5/Support-Questions/ambari-server-problem-2/m-p/268487#M206225
... View more
- « Previous
- Next »