无法SSH到服务器:权限被拒绝(公钥)

用户名

我在服务器上创建了一个新用户,并生成了一个公用(id_rsa.pub)和专用密钥(id_rsa),并将其复制到笔记本电脑的.ssh目录中。然后,我创建了一个配置文件,如下所示:

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

然后,我尝试ssh进入服务器,但收到以下错误:

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).

有任何想法吗?

整rick

似乎您尚未将公钥添加到远程服务器上的新用户〜/ .ssh / authorized_keys文件中。

正常登录到服务器,从本地计算机复制您的公钥,然后:

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

然后打开一个新的终端窗口,以验证您可以使用已经拥有的方法进行操作。

如果成功,我将完全禁用基于密码的身份验证:

vi /etc/ssh/sshd_config

改变

PasswordAuthentication yes

PasswordAuthentication no

然后

sudo service sshd restart

验证一下:

ssh user @ domain应该给您一个权限被拒绝的错误,甚至不要求PW

还要仔细检查远程和本地密钥目录和文件上的所有文件权限:https : //superuser.com/questions/215504/permissions-on-private-key-in-ssh-folder

注意:以上内容基于Ubuntu远程服务器,前提是任何远程Linux盒都相同。

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章

无法从我的本地计算机 SSH 到远程服务器权限被拒绝(公钥)

SSH-服务器上的权限被拒绝(公钥)

SSH服务器权限被拒绝(公钥)

使用ssh从github部署到linux服务器,但是权限被拒绝(公钥)。PHP脚本

通过SSH从远程服务器推送git commit:权限被拒绝(公钥)。严重的:无法从远程存储库读取

重启后的Ubuntu服务器ssh:权限被拒绝(公钥)

SSH到Docker:权限被拒绝(公钥)

将ssh公钥复制到服务器

我无法使用公钥和私钥从Jenkins节点SSH到远程服务器

SSH权限被拒绝(公钥)

ssh权限被拒绝(公钥)

SSH权限被拒绝(公钥)

SSH权限被拒绝(公钥)

从SSH服务器获取公钥

通过Github Actions CI / CD访问服务器时,Git权限被拒绝(公钥)

在AWS ubuntu服务器下运行的git上的权限被拒绝(公钥)错误

远程服务器:通过cronjob将rsync与ssh和gpg一起用于ssh时,权限被拒绝(公钥)

无法通过ssh连接到github;权限被拒绝(公钥)

SSH连接错误-权限被拒绝(公钥)

rsync:SSH权限被拒绝(公钥)

SSH 时权限被拒绝(公钥)

SSH权限被拒绝(公钥)DigitalOcean Ubuntu

'ssh localhost'给出'权限被拒绝(公钥)。

与SSH混淆-权限被拒绝(公钥)

Github SSH访问:权限被拒绝(公钥)

GitLab SSH密钥-权限被拒绝(公钥)

ssh权限被拒绝(公钥,键盘交互)

公钥如何“发送”到服务器,私钥如何“用于” SSH?

无法在Win32 Open SSH服务器上使用公钥身份验证