Hadoop2:HDFS常用命令

Hadoop2:HDFS常用命令

常用命令

# 列出 hdfs 下的文件 hadoop dfs -ls #列出 hdfs / 路径下的所有文件,文件夹 hadoop dfs -ls -R / # 替换为下面这种方式了 hdfs dfs -ls -R / #创建目录 /input hadoop dfs -mkdir /input #列出 hdfs 名为 input 的文件夹中的文件 hadoop dfs -ls /input hadoop fs -ls /user/hadoop/output #查看指定目录下的文件和文件夹。 #将 test.txt 上传到 hdfs 中 hadoop fs -put /home/hduser/Desktop/test.txt /input hadoop fs -put /home/LX_SEGY005.segy /input #将 hdfs 中的 test.txt 文件保存到本地桌面文件夹 hadoop dfs -get /input/test.txt /home/hduser/Desktop #删除 hdfs 上的 test.txt 文件 hadoop dfs -rmr /input/test.txt hadoop dfs -rm -r /flink_input/players.csv #查看 hdfs 下 input 文件夹中的内容 hadoop fs -cat /input/* #进入安全模式 hadoop dfsadmin –safemode enter #退出安全模式 hadoop dfsadmin -safemode leave #报告 hdfs 的基本统计情况 hadoop dfsadmin -report
 

查看 hdfs 中的文件

root@redis01:~# hadoop fs -ls -R /
notion image
/output/part-r-00000 里就是本次运行的结果
root@redis01:~# hadoop fs -cat /output/part-r-00000
notion image