Member since
03-21-2016
233
Posts
62
Kudos Received
33
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
904 | 12-04-2020 07:46 AM | |
1185 | 11-01-2019 12:19 PM | |
1608 | 11-01-2019 09:07 AM | |
2539 | 10-30-2019 06:10 AM | |
1270 | 10-28-2019 10:03 AM |
08-29-2016
05:45 AM
@Saifullah Sajjad If cluster is managed by Ambari HDP.repo file is created by ambari agent during the HDP installation. This HDP.repo file need not to be created manually, even if created manually, this will be overwritten by Ambari. HDP.repo file is created as per your inputs provided during stack setup setup in Launch Install cluster wizard.
... View more
08-22-2016
02:18 PM
@bigdata.neophyte -t option seems to not available in 2.7.1 version which is included with HDP 2.4.2. This option is included in hadoop 2.7.3 which is available with HDP 2.5 Tech preview . [hdfs@hdp1 ~]$ hadoop version
Hadoop 2.7.3.2.5.0.0-1133
Subversion git@github.com:hortonworks/hadoop.git -r 93bf28063ef319be6833d3d6f117d44e0b6b8fa9
Compiled by jenkins on 2016-08-03T11:38Z
Compiled with protoc 2.5.0
From source with checksum 1aed9e48ca6f7cd4ada3a36b1cd5feb
This command was run using /usr/hdp/2.5.0.0-1133/hadoop/hadoop-common-2.7.3.2.5.0.0-1133.jar
[hdfs@hdp1 ~]$ hdfs dfs -ls -t -help
-ls: Illegal option -help
Usage: hadoop fs [generic options] -ls [-C] [-d] [-h] [-q] [-R] [-t] [-S] [-r] [-u] [<path> ...]
[hdfs@hdp1 ~]$ hdp-select versions
2.5.0.0-1133
... View more
08-22-2016
07:54 AM
@Eberhard Wagner Can you please accept the answer if it helped you to resolve the problem Thanks
... View more
08-19-2016
02:11 PM
2 Kudos
@Eberhard Wagner Did you login as admin user? User without admin privileges will not see the die file bar..
... View more
08-12-2016
03:49 AM
@Davd Leh Host-only network will only allow network connectivity with host where sandbox is running. As accessing wikipedia needs internet access you have to use either NAT or Bridged type network on VMware guest. Once set to NAT/Bridged verify if you are able to ping en.wikipedia.org and then try wget. By default SandBox will have NAT network type for its adapter.
... View more
07-15-2016
06:27 PM
You would need to restart the services after adding the property to hdfs-site
... View more
07-13-2016
06:27 PM
@Rajib Mandal
It looks that the port 50070 is listening on loopback IP , netstat -ntlup command shows that.
Please make sure you have "dfs.namenode.http-address" property in hdfs-site.xml set to the <HostIPAddress>:50070
This can be set from Ambar Dashboard>Services>HDFS>Configs>Advanced>Advanced hdfs-site
Look for property dfs.namenode.http-address and set it to <HostIPAddress>:50070
Restart the hdfs for this to take effect. It should look something like below
[root@hdp1 ~]# netstat -an | grep 50070
tcp 0 0 192.168.56.10:50070 0.0.0.0:* LISTEN <<<<<
tcp 0 0 192.168.56.10:50070 192.168.56.1:51147 ESTABLISHED
tcp 0 0 192.168.56.10:50070 192.168.56.1:51144 ESTABLISHED
Instead of this (which is in your case now)
[root@hdp1 ~]# netstat -an | grep 50070
tcp 0 0 127.0.0.1:50070 0.0.0.0:* LISTEN
tcp 1 0 ::ffff:192.168.56.10:55036 ::ffff:192.168.56.10:50070 CLOSE_WAIT
tcp 1 0 ::ffff:192.168.56.10:55094 ::ffff:192.168.56.10:50070 CLOSE_WAIT
... View more
07-13-2016
07:38 AM
2 Kudos
@sankar rao hdfs acl is implemented in HDFS version 2.4.0, which is included in HDP 2.1.2. If not found, you can add it from ambari Ambari Dasboard>HDFS>Configuration>Advanced>Custom hdfs-site Add property dfs.namenode.acls.enabled=true Restart the services to take this effect
... View more
07-13-2016
05:09 AM
@Rajib Mandal Connection refused usually mean either service is not running or firewall is blocking the port. If namenode process is running on hdfs namenode host, please verify that you have correct firewall rules to allow required port. You can try to disable iptables and selinux on the hosts. #service iptables stop
... View more
07-13-2016
04:41 AM
@Rajib Mandal port 50070 is namenode UI port and 8088 is RM UI which should be accessible if namenode and yarn services are up. Please check if you can connect to port using telnet from ambari server #telnet <hostnameInError> 50070 Also on server where namenode is running verify if the port is in listen state, if it is not then namenode service has some problem(you can check the namenode logs to see if the the service exited for any reason). #netstat -ntalp | grep 50070
... View more
- « Previous
- Next »