hadoop2.7.6 hdfs 命令测试

hadoop环境搭建

参见hadoop2.7.6环境配置

 

列出所有目录

hdfs dfs -ls /

 

创建目录

hadoop fs -mkdir hdfs://localhost:9000/chy-data/

 

创建目录

hadoop fs -mkdir hdfs://localhost:9000/chy-data/data0

hadoop2.7.6 hdfs 命令测试_第1张图片

 

文件操作

e盘有2个文件server.xml和 settings_copy.xml

 

写入数据

hadoop fs -put e:\server.xml hdfs://localhost:9000/chy-data/data0

 

写入数据

hadoop fs -put e:\settings_copy.xml hdfs://localhost:9000/chy-data/data0

hadoop2.7.6 hdfs 命令测试_第2张图片

 

列出数据

hadoop fs -ls hdfs://localhost:9000/chy-data/data0

删除文件

hadoop fs -rm -r -skipTrash hdfs://localhost:9000/chy-data/user.txt
 

 

 

你可能感兴趣的:(大数据)