如何重新创建 ec2-user 主目录

How to recreate ec2-user home directory

我永久删除了 amazon ec2 上我的 rhel 实例上的 ec2-user 主目录

谢天谢地,我仍然登录到我的服务器

我没有目录或快照的任何备份副本

我知道我可以从我的私钥重新创建我的 public 密钥,我还将我的 public 密钥复制到 /home/ec2-user/。ssh/authorized_keys 这就是我重新创建 public 密钥

的方式
ssh-keygen -y -f test.pem > test.pub

由于某些原因,这些步骤还不够,我仍然无法通过 ssh 进入我的服务器

我是否遗漏了任何步骤?有人可以指导我吗?

这是我尝试登录时遇到的错误

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!     @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that a host key has just been changed.
The fingerprint for the ECDSA key sent by the remote host is
xx.
Please contact your system administrator.
Add correct host key in /Users/xx/.ssh/known_hosts to get rid of this message.
Offending ECDSA key in /Users/xx/.ssh/known_hosts:5
ECDSA host key for ec2-xx-xx-xx-xx.compute-1.amazonaws.com has changed and you have requested strict checking.
Host key verification failed.

将您的 public 密钥复制到 /home/ec2-user/。ssh/authorized_keys 创建 .ssh 目录和 authorized_keys 文件(如果它们不存在)

以 root 身份执行这些命令

chown -R ec2-user /home/ec2-user 
chmod 700 /home/ec2-user/.ssh
chmod 600 /home/ec2-user/.ssh/authorized_keys

然后尝试登录。认为这可能足以让它工作