输入命令需要密码
“exit”退出
免密
输入如下语句,弹出新语句时直接回车
三次后输入如下语句,再输入密码免密完成
输入命令检测不需输密码即成功
打开如下文件可看到
永久关闭防火墙
“sudo chkconfig iptables --list” --查看防火墙状态
“sudo chkconfig iptables off” --关闭防火墙
进入如下路径
可看到如下文件
idea上传文件
启动
新建idea项目“hdfs”如下
“HdfsUtil.java”代码如下
package com.hdfs;
import org.apache.commons.io.IOUtils;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FSDataOutputStream;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import java.io.FileInputStream;
import java.io.IOException;
public class HdfsUtil {
public static void main(String[] args) throws IOException {
//new配置文件
Configuration conf=new Configuration();
conf.set("fs.defaultFS","hdfs://192.168.2.100:9000");
//文件上传
FileSystem fs=FileSystem.get(conf);
//上传到哪里u
Path path=new Path("hdfs://192.168.2.100:9000/zhj.txt");
FSDataOutputStream os=fs.create(path);
FileInputStream is=new FileInputStream("E:/lj.txt");
IOUtils.copy(is,os);
}
}
运行后可在“192.168.2.100:50070”网址上看到如下图结果“zhj.txt”上传成功