Как через Terminal (SSH) Ubuntu подключится к EC2 amazon??
Вот что имеем
user@user-AMILO-Li-1718:~/Загрузки$ ssh -i "app.pem" ubuntu@ec2-52-10-201-193.us-west-2.compute.amazonaws.com
The authenticity of host 'ec2-52-10-201-193.us-west-2.compute.amazonaws.com (52.10.201.193)' can't be established.
ECDSA key fingerprint is 11:86:0a:97:72:c5:41:ce:4d:3c:d1:05:6f:5e:0d:4b.
Are you sure you want to continue connecting (yes/no)? yes
Please type 'yes' or 'no': yes
Warning: Permanently added 'ec2-52-10-201-193.us-west-2.compute.amazonaws.com,52.10.201.193' (ECDSA) to the list of known hosts.
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: UNPROTECTED PRIVATE KEY FILE! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0664 for 'app.pem' are too open.
It is required that your private key files are NOT accessible by others.
This private key will be ignored.
bad permissions: ignore key: app.pem
Permission denied (publickey).
user@user-AMILO-Li-1718:~/Загрузки$ ssh -i "app.ppk" ubuntu@ec2-52-10-201-193.us-west-2.compute.amazonaws.com
Enter passphrase for key 'app.ppk':
Permission denied (publickey).
user@user-AMILO-Li-1718:~/Загрузки$ chmod 0600 app.pem
user@user-AMILO-Li-1718:~/Загрузки$ ssh -i "app.pem" ubuntu@ec2-52-35-29-115.us-west-2.compute.amazonaws.com
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ 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
11:86:0a:97:72:c5:41:ce:4d:3c:d1:05:6f:5e:0d:4b.
Please contact your system administrator.
Add correct host key in /home/user/.ssh/known_hosts to get rid of this message.
Offending ECDSA key in /home/user/.ssh/known_hosts:1
remove with: ssh-keygen -f "/home/user/.ssh/known_hosts" -R ec2-52-35-29-115.us-west-2.compute.amazonaws.com
ECDSA host key for ec2-52-35-29-115.us-west-2.compute.amazonaws.com has changed and you have requested strict checking.
Host key verification failed.
Уже 1001 и 1 деиствии сделал чтоб через терминал получить доступ.
вот такой вот ответ
ssh-keygen -f "~/.ssh/known_hosts" -R ec2-52-35-29-115.us-west-2.compute.amazonaws.com
ssh-keygen: ~/.ssh/known_hosts: No such file or directory
Азамат Баймурзин: при чем здесь "они" и "облоко"? Вам надо на своем компьютере настроить ssh. На стороне AWS совершенно обычный Ubuntu. Ошибки, которые Вы отказываетесь читать сами, на Вашем компьютере. Они у Вас возникнут и при попытке связаться с другими серверами.
Вот прямо сейчас система Вам пишет, что можно сделать - "remove with: ssh-keygen -f "/home/user/.ssh/known_hosts" -R ec2-52-35-29-115.us-west-2.compute.amazonaws.com"