- 浏览: 1305 次
最新评论
文章列表
最近准备倒腾spark.网上的搭建过程感觉都相当的长,自己在用virtual box搞了3台centos 7虚拟机,搭建了一次,发现可以不用那么复杂.就把自己的过程写下来.
过程就分几步:
系统准备工作.
ssh免密码登录.
环境变量
hadoop配置
spark配置
测试
1.系统准备工作
首先是操作系统安装
iso镜像,建议选择DVD,不要用minimal.不然后面少各种命令.也是个麻烦.
新建虚拟机的时候,网络类型可以选仅主机(host only)网络,这样没接网线的时候也可以用.挂载iso镜像,一路下一步.选择Basic web serv ...
对于这样的java代码
pubic interface TestInterface {
int foo();
int foo1();
}
pubic interface TestClass implement TestInterface{
public int foo(){
int a = 0;
reurn a;
}
public int foo1(){
int a = 1;
reurn a;
}
}
TestInterface i = new TestClass();
i.fo ...