熟悉常用的HDFS操作

Posted BennyKuang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了熟悉常用的HDFS操作相关的知识,希望对你有一定的参考价值。

在本地Linux文件系统的“/home/hadoop/”目录下创建一个文件txt,里面可以随意输入一些单词.

  1. mkdir hadoop
  2. cd hadoop
  3. touch 123.txt
  4. gedit 123.txt

在本地查看文件位置(ls)

  1. ls -al

在本地显示文件内容

  1. gedit 123.txt

使用命令把本地文件系统中的“txt”上传到HDFS中的当前用户目录的input目录下。

  1.  cd /usr/local/hadoop
  2. ./sbin/start-dfs.sh
  3. ./bin/hdfs dfs -mkdir /input
  4. ./bin/hdfs dfs -put ~/hadoop/123.txt /input

查看hdfs中的文件(-ls)

  1.  ./bin/hdfs dfs -ls /input

显示hdfs中该的文件内容

  1.  ./bin/hdfs dfs -cat /input/123.txt

删除本地的txt文件并查看目录

  1. cd hadoop
  2.  rm -r 123.txt
  3. ls -al

从hdfs中将txt下载地本地原来的位置。

  1.  ./bin/hdfs dfs -get /input/123.txt ~/hadoop

从hdfs中删除txt并查看目录

  1.  ./bin/hdfs dfs -rm -r /input/123.txt
  2. ./bin/hdfs dfs -ls

以上是关于熟悉常用的HDFS操作的主要内容,如果未能解决你的问题,请参考以下文章

熟悉常用的HDFS操作

熟悉常用的HDFS操作

熟悉常用的HDFS操作

熟悉常用的HDFS操作

熟悉常用的HDFS操作

熟悉常用的HDFS操作