[HDFS_2] HDFS 的 Shell 操作
阿新 • • 發佈:2018-11-12
0. 說明
在 Shell 下完成對 HDFS 的增刪改查操作
1. 在 Shell 下完成對 HDFS 的增刪改查操作
【1.0 檢視幫助】
[[email protected] ~]$ hdfs dfs -help
【1.1 顯示當前目錄結構】
# 顯示當前目錄結構 hdfs dfs -ls / # 遞迴顯示當前目錄結構 hdfs dfs -lsr /
【1.2 上傳檔案】
[[email protected]~]$ hdfs dfs -put a.txt /
【1.3 下載檔案】
[[email protected] ~]$ hdfs dfs -get /a.txt
【1.4 檢視檔案內容】
[[email protected] ~]$ hdfs dfs -cat /a.txt
【1.5 建立資料夾】
[[email protected] ~]$ hdfs dfs -mkdir /tempdir
【1.6 複製檔案】
[[email protected] ~]$ hdfs dfs -cp /a.txt /tempdir
【1.7 移動檔案】
hdfs dfs -mv /tempdir/a.txt /tmp
【1.8 刪除檔案】
# 刪除檔案 hdfs dfs -rm /a.txt # 刪除目錄 hdfs dfs -rm -r /tempdir # 刪除空目錄 hdfs dfs -rmdir /tempdir