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

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用户+密码登录了

你可能感兴趣的:(linux)