Mac下安装Spark

时间:2015-06-02 13:03:03   收藏:0   阅读:1731

1.Homebrew

OS X 不可或缺的套件管理器;它尽可能地利用系统自带的各种库,使得软件包的编译时间大为缩短;同时由于几乎不会造成冗余,软件包的管理也清晰、灵活了许多。
安装:
打开终端窗口, 粘贴以下脚本
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

安装好后homebrew路径为 /usr/local/share/doc/homebrew

2.Scala

官网下载scala安装包后解压,路径随意。

编辑/etc/bash_profile添加$SCALA_HOME并修改相应PATH

3.SSH无密码登陆

ssh-keygen -t rsa -P ‘‘ -f ~/.ssh/id_rsa

 ssh-keygen表示生成秘钥;-t表示秘钥类型;-P用于提供密语;-f指定生成的秘钥文件。这个命令在”~/.ssh/“文件

结果显示:

Generating public/private rsa key pair.
Created directory ‘/var/root/.ssh‘.
Your identification has been saved in /var/root/.ssh/id_rsa.
Your public key has been saved in /var/root/.ssh/id_rsa.pub.
The key fingerprint is:
5f:1c:f4:eb:ba:a5:59:73:41:9a:04:ca:a4:6b:0f:32 root@MAC.local
The key‘s randomart image is:
+--[ RSA 2048]----+
|         . ..    |
|        + ....   |
|       . o  .... |
|        .  ...+. |
|     E +S   oo.. |
|      + o. . .  .|
|         ..   = .|
|             * o |
|            =.   |
+-----------------+

秘钥生成成功。并在~/.ssh创建两个文件id_dsa和id_dsa.pub,是ssh的一对儿私钥和公钥。

接下来,将公钥追加到授权的key中去,输入

cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys

4.Spark安装

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!