Hadoop提供的Shell命令完成相同任務
阿新 • • 發佈:2018-04-27
txt文件 上傳 div put 文件內容 edit oca txt tar
- 在本地Linux文件系統的“/home/hadoop/”目錄下創建一個文件txt,裏面可以隨意輸入一些單詞.
mkdir hadoop cd hadoop touch test.txt gedit test.txt
- 在本地查看文件位置(ls)
ls -al
- 在本地顯示文件內容
cat test.txt
- 使用命令把本地文件系統中的“txt”上傳到HDFS中的當前用戶目錄的input目錄下。
cd /usr/local/hadoop ./sbin/start-dfs.sh ./bin/hdfs dfs -mkdir input ./bin/hdfs dfs -put ~/hadoop/test.txt input
- 查看hdfs中的文件(-ls)
./bin/hdfs dfs -ls
- 顯示hdfs中該的文件內容
./bin/hdfs dfs -cat input/test.txt
- 刪除本地的txt文件並查看目錄
rm -r ~/hadoop/test.txt
- 從hdfs中將txt下載地本地原來的位置。
cd /usr/local/hadoop ./sbin/start-dfs.sh ./bin/hdfs dfs -get input/test.txt ~/hadoop
- 從hdfs中刪除txt並查看目錄
./bin/hdfs dfs -rm -r input/test.txt ./bin/hdfs dfs -ls -R
Hadoop提供的Shell命令完成相同任務