Erro ssh sem senha

0

Estou tentando ativar o ssh sem senha para o Hadoop 2.6.0. O método que tentei é o seguinte:

ssh-keygen -t dsa -P '' -f ~/.ssh/id_dsa
cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys

Eu também tentei adicionar as seguintes coisas ao arquivo ssh_config como mencionado em algumas perguntas aqui

PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
PermitRootLogin yes

Ainda assim, não consigo fazer ssh no host local. A saída de ssh -v localhost é a seguinte:

OpenSSH_6.8p1, OpenSSL 1.0.2a 19 Mar 2015
debug1: Reading configuration data /etc/ssh_config
debug1: Connecting to localhost [127.0.0.1] port 22.
debug1: Connection established.
debug1: identity file /home/MP30589/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
debug1: identity file /home/MP30589/.ssh/id_rsa-cert type -1
debug1: identity file /home/MP30589/.ssh/id_dsa type 2
debug1: key_load_public: No such file or directory
debug1: identity file /home/MP30589/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/MP30589/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/MP30589/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/MP30589/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/MP30589/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.8
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.8
debug1: match: OpenSSH_6.8 pat OpenSSH* compat 0x04000000
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr [email protected] none
debug1: kex: client->server aes128-ctr [email protected] none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ecdsa-sha2-nistp256 SHA256:l/78VMLSVdtD9SMx46+m4NZt4Kmd1x8I038v9ozQYbM
debug1: Host 'localhost' is known and matches the ECDSA host key.
debug1: Found key in /home/MP30589/.ssh/known_hosts:1
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /home/MP30589/.ssh/id_rsa
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Offering DSA public key: /home/MP30589/.ssh/id_dsa
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Trying private key: /home/MP30589/.ssh/id_ecdsa
debug1: Trying private key: /home/MP30589/.ssh/id_ed25519
debug1: Next authentication method: keyboard-interactive
debug1: Authentications that can continue: publickey,password,keyboard-interactive
debug1: Next authentication method: password
MP30589@localhost's password:

Alguém por favor pode me ajudar aqui? Obrigado antecipadamente!

Editar:

Eu também tentei alterar as permissões de arquivo da seguinte maneira, mas o erro ainda é exibido

chmod 700 ~/.ssh 
chmod 600 ~/.ssh/authorized_keys
    
por sgp 25.05.2015 / 12:22

1 resposta

1

Essa não é a maneira de fazer isso. Primeiro de tudo, para configurar o acesso sem senha, você precisa de uma máquina de destino. Não é algo que você configura localmente, você deve configurar o acesso sem senha para em algum lugar. De qualquer forma, a maneira de fazer isso é:

ssh-keygen -t rsa -P ''

Isso gerará sua chave. Agora, você precisa copiá-lo para a máquina de destino:

ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected]

Depois de fazer isso, você poderá fazer login em remote.com sem senha.

    
por terdon 25.05.2015 / 14:54