Hadoop上传helloword.txt文件
Posted 爱吃韭菜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hadoop上传helloword.txt文件相关的知识,希望对你有一定的参考价值。
1、创建helloword.txt输入3行内容。
2、在系统中打开hadoop
start-dfs.sh start-yarn.sh
3、把本地计算机中的计算机中的helloword.txt上传到服务器中
4、创建目录/user/root/filetest
hdfs dfs -mkdir p /user/root/filetest
5、把helloword.txt上传到HDFS目录中
hdfs dfs -moveFromLocal /simple/helloword.txt /user/root/filetest
6、查看文件上传是否成功
7、成功后查看显示内容
hdfs dfs -cat /user/root/filetest/helloword.txt
以上是关于Hadoop上传helloword.txt文件的主要内容,如果未能解决你的问题,请参考以下文章