Não é possível ssh no servidor: permissão negada (chave pública)

0

Eu criei um novo usuário no meu servidor e gerou uma chave pública (id_rsa.pub) e privada (id_rsa), que copiei para o diretório .ssh do meu laptop. Eu criei um arquivo de configuração assim:

Host xxx.xxx.xxx
RSAAuthentication yes
IdentityFile ~/.ssh/id_rsa
User xxx 

Em seguida, tentei ssh no servidor, mas recebi o seguinte erro:

OpenSSH_7.4p1, LibreSSL 2.5.0
debug1: Reading configuration data /Users/xxx/.ssh/config
debug1: /Users/xxx/.ssh/config line 1: Applying options for xxx.xxx.xxx
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Connecting to xxx.xxx.xxx [xx.xxx.xx.xx] port 22.
debug1: Connection established.
debug1: identity file /Users/xxx/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/xxx/.ssh/id_rsa-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.4
debug1: Remote protocol version 2.0, remote software version OpenSSH_7.2p2 Ubuntu-4ubuntu2.1
debug1: match: OpenSSH_7.2p2 Ubuntu-4ubuntu2.1 pat OpenSSH* compat 0x04000000
debug1: Authenticating to xxx.xxx.xxx:22 as 'xxx'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: [email protected]
debug1: kex: host key algorithm: ecdsa-sha2-nistp256
debug1: kex: server->client cipher: [email protected] MAC: <implicit> compression: none
debug1: kex: client->server cipher: [email protected] MAC: <implicit> compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ecdsa-sha2-nistp256 SHA256:n+rA9cq8RQTcnh19HlV2/ASXuktvPF2NhZkxNmZTzBE
debug1: Host 'analytics.selfscore.com' is known and matches the ECDSA host key.
debug1: Found key in /Users/xxx/.ssh/known_hosts:1
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_EXT_INFO received
debug1: kex_input_ext_info: server-sig-algs=<rsa-sha2-256,rsa-sha2-512>
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /Users/xxx/.ssh/id_rsa
debug1: Authentications that can continue: publickey
debug1: No more authentication methods to try.
Permission denied (publickey).

Alguma idéia?

    
por user3685285 19.09.2017 / 17:21

1 resposta

1

Parece que você não adicionou sua chave pública ao seu novo arquivo ~ / .ssh / authorized_keys no servidor remoto.

Faça login normalmente no servidor, copie sua chave pública da sua máquina local e, em seguida:

echo "your public key here" >> ~/.ssh/authorized_keys"

Em seguida, abra uma nova janela de terminal para verificar se você pode usar ssh usando o método que você já tem.

Se tiver êxito, desabilitaria a autenticação baseada em senha:

vi /etc/ssh/sshd_config

mudar

PasswordAuthentication yes

para

PasswordAuthentication no

então

sudo service sshd restart

Verifique isso:

ssh user @ domain deve lhe dar uma permissão negada erro sem sequer pedir um PW

Além disso, verifique novamente todas as permissões de arquivo em seus diretórios e arquivos de chaves remotas e locais: link

NOTA: o acima é baseado no servidor remoto Ubuntu, a premissa é a mesma para qualquer caixa Linux remota.

    
por 19.09.2017 / 17:29

Tags