【问题标题】:Cannot ssh to the ubuntu droplet from osx无法从 osx SSH 到 ubuntu 液滴
【发布时间】:2016-05-25 01:45:19
【问题描述】:

我正在尝试使用我的公共 ssh 密钥在数字海洋上创建一个水滴,水滴启动正常,但我无法通过 ssh 连接它。它提示我输入密码。

我通过数字海洋去了 ubuntu 服务器控制台,查看了 ~/.ssh/authorized_keys,我看到了我的公钥。

这是 ssh {server_ip} -v 命令的输出:

debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 21: Applying options for *
debug1: Connecting to {server_ip} [{server_ip}] port 22.
debug1: Connection established.
debug1: identity file /Users/{myuser}/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/{myuser}/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/{myuser}/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/{myuser}/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/{myuser}/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/{myuser}/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/{myuser}/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/{myuser}/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.9
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.3
debug1: match: OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.3 pat OpenSSH_6.6.1* compat 0x04000000
debug1: Authenticating to 45.55.2.137:22 as '{myuser}'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client chacha20-poly1305@openssh.com <implicit> none
debug1: kex: client->server chacha20-poly1305@openssh.com <implicit> none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ecdsa-sha2-nistp256 SHA256:FiZC1ldiqmwS4n5Z9mayVv2SpjdPbpVAqMwuGrBTbr8
debug1: Host '45.55.2.137' is known and matches the ECDSA host key.
debug1: Found key in /Users/{myuser}/.ssh/known_hosts:3
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
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /Users/{myuser}/.ssh/id_rsa
debug1: Authentications that can continue: publickey,password
debug1: Trying private key: /Users/{myuser}/.ssh/id_dsa
debug1: Trying private key: /Users/{myuser}/.ssh/id_ecdsa
debug1: Trying private key: /Users/{myuser}/.ssh/id_ed25519
debug1: Next authentication method: password

【问题讨论】:

  • 您能否编辑您的问题以包含远程系统上 .ssh 目录的“ls -la”输出?
  • 已将其添加到帖子中
  • 您正在尝试以 root 身份登录远程系统?在服务器的 sshd_config 文件中,“PermitRootLogin”设置为什么?

标签: macos ssh digital-ocean


【解决方案1】:

您正在以{myuser} 身份进行身份验证,并且您向我们展示了root 的主文件夹。目前尚不清楚您要实现什么,但有两种可能:

  1. 您想以{myuser} 身份进行身份验证,然后您需要将authorized_keys 复制到相应的主目录(/home/{myuser}/.ssh/) 并修复 ovnership。

  2. 您想以 root 身份进行身份验证,然后您应该使用:

    ssh -v root@{server_ip}
    

    但请确保您允许 root 登录(sshd_config 中的PermitRootLogin 选项)!请注意,不推荐设置。

【讨论】:

  • 你说得对,我确实知道我在做什么。我应该使用 ssh root@{servier_ip}
猜你喜欢
  • 1970-01-01
  • 2023-03-21
  • 2021-04-10
  • 2021-07-02
  • 2023-04-08
  • 1970-01-01
  • 1970-01-01
  • 2015-09-24
  • 1970-01-01
相关资源
最近更新 更多