zoukankan      html  css  js  c++  java
  • Hadoop常用命令

    创建目录

    hadoop fs -mkdir/input
    

    查看

    hadoop fs  -ls
    

    递归查看

    hadoop fs ls -R
    

    上传

    hadoop fs -put 
    

    下载

    hadoop fs -get 
    

    删除

    hadoop fs -rm
    

    从本地剪切粘贴到hdfs

    hadoop fs -moveFromLocal /input/xx.txt /input/xx.txt
    

    从hdfs剪切粘贴到本地

    hadoop fs -moveToLocal /input/xx.txt /input/xx.txt
    

    追加一个文件到另一个文件到末尾

    hadoop fs -appedToFile ./hello.txt /input/hello.txt
    

    查看文件内容

    hadoop  fs -cat /input/hello.txt
    

    显示一个文件到末尾

    hadoop fs -tail /input/hello.txt
    

    以字符串的形式打印文件的内容

    hadoop fs -text /input/hello.txt
    

    修改文件权限

    hadoop fs -chmod 666 /input/hello.txt
    

    修改文件所属

    hadoop  fs -chown user.user  /input/hello.txt
    

    从本地文件系统拷贝到hdfs里

    hadoop  fs -copyFromLocal /input/hello.txt /input/
    

    从hdfs拷贝到本地

    hadoop  fs -copyToLocal /input/hello.txt /input/
    

    从hdfs到一个路径拷贝到另一个路径

    hadoop  fs -cp /input/xx.txt /output/xx.txt
    

    从hdfs到一个路径移动到另一个路径

    hadoop  fs -mv /input/xx.txt /output/xx.txt
    

    统计文件系统的可用空间信息

    hadoop  fs -df -h /
    

    统计文件夹的大小信息

    hadoop  fs -du -s -h /
    

    统计一个指定目录下的文件节点数量

    hadoop fs -count /input
    

    设置hdfs的文件副本数量

    hadoop  fs -setrep 3 /input/xx.txt
    


  • 相关阅读:
    20200929-git地址
    20200917-1 每周例行报告
    20200917-2 词频统计
    20200917-3 白名单
    20200910-1 每周例行报告
    20200910-2 博客作业
    20200924-3 单元测试,结对
    20200924-2 功能测试
    20200924-5 四则运算试题生成,结对
    20200924-4 代码规范,结对要求
  • 原文地址:https://www.cnblogs.com/lidyan/p/9237932.html
Copyright © 2011-2022 走看看