使用hduser 1测试ssh时出现问题在设置hadoop单节点集群的过程中,我在使用连接到本地计算机进行ssh设置时遇到了一个问题 hduser 用户。迈克尔·诺尔给出的解决方案似乎并不像 /etc/ssh/sshd_config 文件没有选项 PubkeyAuthentication 并且是只读文件。谁能帮我一下吗?
hduser
/etc/ssh/sshd_config
PubkeyAuthentication
xriantvc1#
我在设置ssh时遇到了类似的问题。然后,我按照这个教程,我能够安装hadoop成功在ubuntu。http://preciselyconcise.com/apis_and_installations/hadoop_installation.php
nqwrtyyt2#
如果您的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内容复制到从机中的授权密钥文件
2条答案
按热度按时间xriantvc1#
我在设置ssh时遇到了类似的问题。然后,我按照这个教程,我能够安装hadoop成功在ubuntu。http://preciselyconcise.com/apis_and_installations/hadoop_installation.php
nqwrtyyt2#
如果您的ssh localhost不工作,请尝试以下操作
在所有从机上,将主节点的id_rsa.pub内容复制到从机中的授权密钥文件