博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hadoop in win7(cygwin)
阅读量:6684 次
发布时间:2019-06-25

本文共 702 字,大约阅读时间需要 2 分钟。

  hot3.png

  1. Download 'setup.exe' from Cygwin website

  2. Download hadoop 0.20.2 and hbase 0.20.6 from apache website

  3. Add user hadoop

    $ net user hadoop password /add /yes
    $ net localgroup administrator hadoop /add
    $ mkpassd -l -u hadoop >> /etc/passwd

  4. Add sshd service

    $ cygrunsrv.exe --remove sshd (no necessary)
    $ ssh-host-config -y
    $ cygrunsrv.exe --start sshd

  5. Generate ssh key

    $ ssh-keygen -t dsa -P '' -f ~/.ssh/id_dsa
    $ cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys
    $ chmod 600 ~/.ssh/authorized_keys
    $ scp ~/.ssh/id_dsa.pub ~/.ssh/authorized_keys 10.13.136.250:/home/hadoop/.ssh

  6. Edit file as below

  • core-site.xml
    • hdfs-site.xml
    • mapred-site.xml
    • hadoop-env.sh

Referece

转载于:https://my.oschina.net/l1z2g9/blog/185496

你可能感兴趣的文章
pymysql模块
查看>>
教您识别三类钓鱼网站,通过 SSL 数字证书防止恶意欺诈
查看>>
Poj2031--Building a Space Station(Prim )
查看>>
《thinking in Java》--第一章 对象入门
查看>>
python 正则表达式
查看>>
[IOS:OC]如何播放一组图片-简单序列帧动画
查看>>
疏忽Bug
查看>>
ASP.WEB Form 几点知识
查看>>
xmlrpc
查看>>
[转] 钉钉的H5性能优化方案
查看>>
Bash 如何取得当前正在执行的脚本的绝对路径?
查看>>
day1作业--登录接口
查看>>
python基础之函数基础
查看>>
计算机软件基础-(软件开发过程管理)
查看>>
正则表达式匹配非需要匹配的字符串(标题自己都绕晕了)
查看>>
今天Rails都学到了啥
查看>>
nrm使用webpack使用
查看>>
OC 线程操作 - GCD队列组
查看>>
利用百度地图前端实现矢量县区地图下载(json)
查看>>
平衡树(树的直径)
查看>>