登陆hdfs的文件端口查询文件路径,登陆端口默认为50070
http://192.168.0.183:50070/explorer.html#/user/jhadmin
hadoop fs -ls /
hadoop dfs -mkdir /tmp/data
1.终端输入:
vim test1.txt
键入内容保存wq!
2.将服务器上路径数据为: /test 1.txt 的传输到hdfs中的 /tmp/data下
hadoop fs -put /test 1.txt /tmp/data
3查看文件是否上传成功
hadoop fs -ls /input
4.查看文件内容
hadoop fs -cat /input/test1.txt
5.运行自带的hadoop-mapreduce-example-2.7.4.jar
hadoop jar /usr/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-examples-2.7.4.jar wordcount /input /output