亚马迅EC2使用密码登录

  1. 创建instance后,会有一个pem的证书

  2. 在xshell或者putty等ssh工具中使用该证书登陆到服务器
    默认用户名为: ec2-user

  3. 直接修改root密码
    $sudo passwd root
    重复输入密码

  4. 然后切换到root
    $su - root

  5. 修改/etc/ssh/sshd_config
    找到 PasswordAuthentication no,把no改成yes

  6. 接下来,要重新启动下sshd
    /sbin/service sshd restart

  7. 再为原来的”ec2-user”添加登录密码。如下命令:
    passwd ec2-user
    按提示,两次输入密码。

  8. 在xshell或putty中使用ec2-user 加 密码登录,测试成功

你可能感兴趣的:(亚马迅EC2使用密码登录)