测试hadoop集群是否安装成功:网页监控页面和提交job运行

RosCPG 9年前

来自: http://my.oschina.net/cjun/blog/627681


一、查看集群的网页监控状态

1.查看hdfs集群状态,也就是namenode的访问地址

配置:hdfs-site.xml--dfs.namenode.http-address

默认访问地址:http://namenode的ip:50070

2.如果配置了secondary namenode,那么可以查看secondary namenode的集群状态

配置:hdfs-site.xml--dfs.namenode.secondary.http-address

默认访问地址:http://namenode的ip:50090

3.查看yarn集群的状态

配置:yarn-site.xml--yarn.resourcemanager.webapp.address

默认访问地址:http://resource manager的ip:8088

二、提交job运行

1.hadoop2.6.0版本,提交mapreduce程序

mkdir input  cd input  echo hello world >> file1  echo hello hadoop >> file2  cd ..  hdfs dfs -put input /  cd $hadoop_home/share/hadoop/mapreduce  yarn jar hadoop-mapreduce-examples-2.6.0.jar wordcount /input /ouput

如果执行过程没报错,而且hdfs的ouput的结果正确,那么集群就安装成功了。