我正在尝试在需要配置SSH才能访问本地主机的系统上安装hadoop。但是在使用命令生成密钥生成器的同时
但是在生成此密钥源时,出现以下错误
anamika@Alex:/home/alex$ cd
anamika@Alex:~$ ssh-keygen -t rsa -P --
Generating public/private rsa key pair.
Enter file in which to save the key (/home/anamika/.ssh/id_rsa):
Created directory '/home/anamika/.ssh'.
Saving key "/home/anamika/.ssh/id_rsa" failed: passphrase is too short(minimum five characters)
anamika@Alex:~$ exit
alex@Alex:~$
这里的密码是什么?我也尝试给出一些文件名来保存密钥,但仍然无法正常工作。
最佳答案
看起来您在第二行中误用连字符代替了双引号:
用以下内容替换上面的内容