欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

亚马逊云主机linux密钥登陆改为密码登陆

程序员文章站 2022-03-15 12:33:05
...
1.拿着官网给的密钥文件用ec2-user默认用户登录
2.创建root密码
  sudo passwd root
3.切换到root身份
  su root
4.使用root身份编辑亚马逊主机的ssh登录方式
  vi /etc/ssh/sshd_config
  把 PasswordAuthentication no 改为 PasswordAuthentication yes
  如果没有则新插进去
5.重启sshd使修改生效
  sudo /sbin/service sshd restart
6.使用root身份为ec2-user用户创建密码
  passwd ec2-user

关闭连接重新登录可以用root用户+密码登录了