簡體   English   中英

無法通過ubuntu中的配置文件將ssh連接到ec2。 權限被拒絕(公鑰,gssapi-keyex,gssapi-with-mic)

[英]Unable to connect ssh to ec2 through config file in ubuntu. Permission denied (publickey,gssapi-keyex,gssapi-with-mic)

無法通過Ubuntu連接到SSH。 但它在MAC上工作正常。

我的配置文件

Host testserver
User ubuntu
IdentityFile '/home/kavin/.ssh/AnotherKey.pem' 
HostName ec2-54-201-xxx-xxx.us-west-2.compute.amazonaws.com

通過SSH連接

$ ssh testserver

這與我為Mac和Ubuntu所做的一樣。 它可以在Mac上完美運行,但是在Ubuntu中會引發錯誤, Permission denied (publickey,gssapi-keyex,gssapi-with-mic).

現在我嘗試了另一種方式ssh -i '/home/kavin/.ssh/AnotherKey.pem' ec2-user@54.201.xxx.xxx

在Mac和Ubuntu上都可以正常工作。

你能告訴我我哪里出問題了嗎

這些是$ ssh testserver -v的日志

OpenSSH_6.1p1 Debian-4, OpenSSL 1.0.1c 10 May 2012
debug1: Reading configuration data /home/kavin/.ssh/config
debug1: /home/kavin/.ssh/config line 1: Applying options for testserver
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to ec2-54-200-26-1.us-west-2.compute.amazonaws.com [54.200.26.1] port 22.
debug1: Connection established.
debug1: identity file '/home/kavin/.ssh/AnotherKey.pem' type -1
debug1: identity file '/home/kavin/.ssh/AnotherKey.pem'-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.9p1 Debian-5ubuntu1.1
debug1: match: OpenSSH_5.9p1 Debian-5ubuntu1.1 pat OpenSSH_5*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.1p1 Debian-4
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ECDSA 90:e1:d7:01:ab:cf:eb:2c:4b:8f:b2:5e:ad:05:a5:b8
debug1: Host 'ec2-54-200-26-1.us-west-2.compute.amazonaws.com' is known and matches the ECDSA host key.
debug1: Found key in /home/kavin/.ssh/known_hosts:10
debug1: ssh_ecdsa_verify: signature correct
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
debug1: Next authentication method: publickey
debug1: Trying private key: '/home/kavin/.ssh/AnotherKey.pem'
debug1: No more authentication methods to try.

正如你所說,

ssh -i '/home/kavin/.ssh/AnotherKey.pem' ec2-user@54.201.xxx.xxx

來自ubuntu m / c的工作原理和ssh testserver失敗。 我建議從配置文件中注釋其他行,然后繼續

IdentityFile /home/kavin/.ssh/AnotherKey.pem 

確保刪除引號,並且路徑應直接可用於鍵。

轉到終端:

  1. gksu nautilus(輸入您的root密碼)
  2. 瀏覽到/ etc / ssh /
  3. 將您的“密鑰”復制到/ etc / ssh /
  4. 打開ssh_config
  5. 復制粘貼:

    主機測試服務器

    主機名ec2-54-201-xxx-xxx.us-west-2.compute.amazonaws.com

    用戶ubuntu

    IdentityFile /etc/ssh/AnotherKey.pem

  6. 保存-退出

  7. 打開新終端

  8. 須藤-i

  9. 輸入密碼

  10. cd / etc / ssh

  11. chmod 400'您的鑰匙'

  12. SSH測試服務器

-確保您的22端口是開放的

https://askubuntu.com/questions/410218/how-to-close-an-open-port-in-ubuntu-12-04

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM