HDFS-集群迁移

1 )scp  实现 两个远程主机之间的文件复制
scp -r hello.txt root@hadoop103:/user/atguigu/hello.txt  // 推 push
scp -r root@hadoop103:/user/atguigu/hello.txt hello.txt  // 拉 pull
scp -r root@hadoop103:/user/atguigu/hello.txt root@hadoop104:/user/atguigu //是通过本地主机中转实现两个远程主机的文件复制;如果在两个远程主机之间 ssh 没有配置的情况下可以使用该方式

2 ) 采用 distcp 命令 实现 两个 Hadoop 集群之间的递归数据复制

bin/hadoop distcp hdfs://hadoop102:8020/user/hjl/hello.txt hdfs://hadoop105:8020/user/hjl/hello.txt

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