快过年了,找了家新单位开始学习hadoop。
机器是xp系统,cygwin的安装过程略去。
ssh的配置如下:
写道
Copying skeleton files.
These files are for the users to personalise their cygwin experience.
They will never be overwritten nor automatically updated.
`./.bashrc' -> `/home/greatwhite//.bashrc'
`./.bash_profile' -> `/home/greatwhite//.bash_profile'
`./.inputrc' -> `/home/greatwhite//.inputrc'
`./.profile' -> `/home/greatwhite//.profile'
greatwhite@IT01020110116 ~
$ ls
greatwhite@IT01020110116 ~
$ ssh-host-config
*** Info: Generating /etc/ssh_host_key
*** Info: Generating /etc/ssh_host_rsa_key
*** Info: Generating /etc/ssh_host_dsa_key
*** Info: Generating /etc/ssh_host_ecdsa_key
*** Info: Creating default /etc/ssh_config file
*** Info: Creating default /etc/sshd_config file
*** Info: Privilege separation is set to yes by default since OpenSSH 3.3.
*** Info: However, this requires a non-privileged account called 'sshd'.
*** Info: For more info on privilege separation read /usr/share/doc/openssh/README.privsep.
*** Query: Should privilege separation be used? (yes/no) no
*** Info: Updating /etc/sshd_config file
*** Info: Added ssh to C:\WINDOWS\system32\driversc\services
*** Query: Do you want to install sshd as a service?
*** Query: (Say "no" if it is already installed as a service) (yes/no) yes
*** Query: Enter the value of CYGWIN for the daemon: []
*** Info: The sshd service has been installed under the LocalSystem
*** Info: account (also known as SYSTEM). To start the service now, call
*** Info: `net start sshd' or `cygrunsrv -S sshd'. Otherwise, it
*** Info: will start automatically after the next reboot.
*** Info: Host configuration finished. Have fun!
greatwhite@IT01020110116 ~
$ cd .ssh
greatwhite@IT01020110116 ~/.ssh
$ ssh-keygen
Generating public/private rsa key pair.
Enter file in which to save the key (/home/greatwhite/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/greatwhite/.ssh/id_rsa.
Your public key has been saved in /home/greatwhite/.ssh/id_rsa.pub.
The key fingerprint is:
4a:9e:50:56:88:28:10:c1:2d:a8:4a:61:9f:75:9c:c3 greatwhite@IT01020110116
The key's randomart image is:
+--[ RSA 2048]----+
|Bo.. .o.o |
|o=.....E |
|o.+ o + . |
|.. o o |
|o . . S |
|. + o |
| + |
| |
| |
+-----------------+
greatwhite@IT01020110116 ~/.ssh
$ ls
id_rsa id_rsa.pub
greatwhite@IT01020110116 ~/.ssh
$ cp id_rsa.pub authorized_keys
greatwhite@IT01020110116 ~/.ssh
$ ls
authorized_keys id_rsa id_rsa.pub
greatwhite@IT01020110116 ~/.ssh
$ exit
先退出cygwin,然后重新打开一个cygwin窗口。
写道
greatwhite@IT01020110116 ~
$ ssh localhost
The authenticity of host 'localhost (127.0.0.1)' can't be established.
ECDSA key fingerprint is 03:df:9e:d4:d2:84:e6:2c:a8:a2:b7:e7:f9:09:83:76.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'localhost' (ECDSA) to the list of known hosts.
greatwhite@IT01020110116 ~
$ who
greatwhite tty1 2011-12-27 11:44 (localhost)
配置成功。
分享到:
相关推荐
在Windows操作系统上搭建Hadoop开发环境,通常会借助于Cygwin模拟Linux环境,并通过Eclipse作为集成开发环境。本文将详细介绍如何在Windows 7 32位系统中使用Cygwin和Eclipse来构建一个Hadoop的单机开发环境。 首先...
在 Windows 7 系统中使用 Cygwin 搭建 Hadoop 开发环境需要经过多个步骤,包括安装 JDK、Cygwin 及其配置、安装并配置 SSHD 服务以及配置 Hadoop 安装包。每个步骤都需要细心操作,并且可能遇到不同的问题。通过本文...
在Windows环境下进行大数据技术的学习,...总的来说,配置Cygwin的sshd服务和无密码登录对于在Windows环境下进行Hadoop等分布式计算框架的学习和管理至关重要。遵循上述步骤,可以创建一个安全、便捷的远程访问环境。
不过,通过一些额外的配置,我们可以在Windows上搭建一个本地Hadoop开发环境。 首先,你需要下载Hadoop 2.7.4的二进制发行版,并解压到你选择的目录。这个压缩包中的文件应该包括了Hadoop的核心组件、MapReduce框架...
2. ssh:ssh 服务用于远程管理 Hadoop 进程。 3. Cygwin(仅限 Windows):对于 Windows 版本,需要安装 Cygwin 以便使用 shell 支持。 安装和配置 在安装和配置 Hadoop 之前,需要确保机器上已经安装了必要的软件...
本文将详细介绍如何在Windows环境中搭建Hadoop,并在Vista或Win7系统上安装SSH服务,以便远程管理和操作Hadoop集群。 首先,Hadoop是Apache开源项目,主要用于处理和存储大量数据,其核心包括HDFS(Hadoop ...
cygwin的ssh安装包,官方下载的..包括了必须的安装包,主要是为了给hadoop用的
cygwin的ssh安装包,官方下载的..包括了必须的安装包,主要是为了给hadoop用的
cygwin的ssh安装包,官方下载的..包括了必须的安装包,主要是为了给hadoop用的
通过以上步骤,你就可以在Cygwin和Eclipse的帮助下,在Windows上建立一个完整的Hadoop单机开发环境。这个环境对于学习Hadoop、MapReduce编程以及进行数据处理实验非常有用。记得在操作过程中保持耐心,因为配置可能...
- 对于Windows系统,则可以使用Cygwin或者安装Git Bash等工具来支持SSH服务。 2. **配置SSH服务端:** - 编辑 `/etc/ssh/sshd_config` 文件(对于Debian/Ubuntu系统)或 `/etc/ssh/sshd_config`(对于Red Hat/...
-016.Hadoop配置完全分布模式之克隆客户机与交互模式切换与hosts文件修改与ssh远程无密登录.mp4 -017.Hadoop配置完全分布模式之IP设置与远程拷贝与格式化启动.mp4 -018.Hadoop在Win7下免Cygwin环境安装伪分布式与第...
- **启动Cygwin SSHD服务**:在配置完成后,需要手动启动SSHD服务。 - **设置授权密钥**: 1. 打开Cygwin命令提示符。 2. 运行`ssh-keygen`命令来生成密钥。 3. 按回车键接受默认值,直到完成密钥生成。 4. ...
在安装Hadoop时,至少需要包含以下几个包:`openssh`(用于SSH服务),`curl`(网络工具,有时在Hadoop配置中需要用到),`grep`,`sed`,`tar`,`unzip`,`zlib-devel`等。 2. **安装Java开发工具**: - Hadoop...