0

使用 hduser 1测试 ssh 时出现问题

在设置 hadoop 单节点集群期间,我在通过与hduser用户连接到本地计算机进行 SSH 设置时遇到了问题。

Michael Noll 给出的解决方案似乎不起作用,因为该/etc/ssh/sshd_config文件没有选项PubkeyAuthentication并且是只读文件。

谁能帮我解决这个问题?

4

2 回答 2

0

如果你的 ssh localhost 不工作,那么试试这个

sudo apt-get install openssh-server 
sudo apt-get install ssh-server rsync

ssh-keygen -t rsa -P “”
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys

并在所有从属节点上将主节点的 id_rsa.pub 内容复制到从属节点中的 authorized_keys 文件中

于 2014-02-03T20:21:24.237 回答
0

我在设置 ssh 时遇到了类似的问题。然后我按照本教程进行操作,我能够在 ubuntu 中成功安装 hadoop。http://preciselyconcise.com/apis_and_installations/hadoop_installation.php

于 2014-02-03T14:47:25.450 回答