Hadoop HDFS命令知識

2021-10-20 16:30:52 字數 738 閱讀 2698

一、簡要概述

二、分別陳述

檢視hdfs目錄

hadoop fs -

ls/

檢視 hdfs 中的非壓縮檔案的內容

hadoop fs -

cat/data02/

data

.txt

修改 hdfs 中檔案或目錄的訪問許可權,-r 選項可以修改目錄下的所有子目錄的訪問許可權,執行此命令的使用者必須是檔案或目錄的所有者或超級使用者

hadoop fs -chmod 700 /data02/

data

.txt

修改檔案或目錄的所有者,-r選項可以修改目錄下所有子目錄的所有者,此命令的使用者必須是超級使用者

hadoop fs -chown lbs:lbs /data02/

data

.txt

將本地伺服器上的檔案複製到hdfs中

hadoop fs -copyfromlocal temp.txt /data02/
將 hdfs 中的檔案複製到伺服器本地

hadoop fs -copytolocal /data02/

data

.txt /home/lbs/input

Hadoop HDFS操作命令

1 檢視hadoop hdfs支援的所有命令hadoop fs2 列出目錄及檔案資訊hadoop fs ls3 迴圈列出目錄 子目錄及檔案資訊hadoop fs lsr4 將本地檔案系統的test.txt複製到hdfs檔案系統的 user sunlightcs目錄下hadoop fs put tes...

hadoop hdfs基礎命令

hadopp hdfs元件基礎命令 首行預設 hadoop fs 選項名稱 使用格式 含義 ls ls 路徑 檢視指定路徑的當前目錄結構 lsr lsr 路徑 遞迴檢視指定路徑的目錄結構 du du 路徑 統計目錄下個檔案大小 dus dus 路徑 匯 計目錄下檔案 夾 大小 count count...

收藏 hadoop hdfs命令

cat 使用方法 hadoop fs cat uri uri 將路 徑指定檔案的內容輸出到stdout。示 例 hadoop fs cat hdfs host1 port1 file1 hdfs host2 port2 file2 hadoop fs cat file file3 user hado...