SSH issue while connecting to my instance by using Git Bash

0

Dell@DESKTOP-NMLG1 MINGW64 ~/Downloads (main) $ ssh -i "site.pem" -p 9229 root@ec2-x.x.x.x.ap-south-1.compute.amazonaws.com root@ec2-15-207-1-236.ap-south-1.compute.amazonaws.com's password: Permission denied, please try again.

已提问 9 个月前271 查看次数
1 回答
0
已接受的回答

Hello.

Is "root" the correct login user for SSH?
Basically, I think the root user is denied connection via SSH.
If "PermitRootLogin" in "sshd_config" is set to "yes", it will be allowed, but if it is set to "no", it will be denied.

Isn't the private key being used the default user private key of the EC2 OS?
The default user varies depending on the OS, but I think it should be the user listed in the document below.
https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/managing-users.html#ami-default-user-names

profile picture
专家
已回答 9 个月前
profile picture
专家
已审核 9 个月前
profile pictureAWS
专家
已审核 9 个月前
  • Yes, root is the correct login, we are facing this issue from recent times

  • Is "PermitRootLogin" set to "yes" in the SSH configuration file? Also, do the fingerprints of the public key and private key you are setting match? There may also be other issues such as public key or private key permissions issues. We recommend that you check the SSH log in the following file.

    /var/log/secure
    
  • To configure ssh configration file, via aws console also its not allowing and cli is also due permission denied message. So looking if there is an option

  • Can't you temporarily connect using Systems Manager Session Manager or something like that? https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-prerequisites.html
    Although the OS that can be used is limited, I think SSH with EC2 Instance Connect is also possible. https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-connect-methods.html

  • I connected to the server using Session Manager. However, when attempting to log in via the command line interface (CLI), I encountered a "permission denied" error. I had already configured the sshd_config file by enabling root authentication login (PermitRootLogin: yes).

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则