如何在MacOS中避免使用“ssh localhost”密码?

问题描述 投票:0回答:1

我正在配置本地Hadoop集群,但我遇到密码配置问题。

当我输入

ssh localhost

显示以下消息:

ssh localhost
key_load_public: invalid format

我已经尝试使用这些命令来替换以前的authorized_keys:

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

但它没有用。

macos hadoop ssh configuration localhost
1个回答
0
投票

您可以在.config目录中创建~/.ssh文件,然后添加凭据。

像这样,

// ~/.ssh/config
# SSH Host configuration file

# Default for all
Host *
  ForwardAgent no
  ForwardX11 yes
  ForwardX11Trusted yes

Host <hostname_here>
  HostName <ip_address>
  User <user_name>

由于您的问题似乎与密钥更相关,因此您可以尝试使用ssh -i <your key file> username@ip_addr -p <port>

© www.soinside.com 2019 - 2024. All rights reserved.