연습 - 새 가상 머신 테스트
가상 머신을 만들 때는 인터넷을 통해 연결할 수 있는 공용 IP 주소와 Azure 데이터 센터 내에서 사용하는 개인 IP 주소가 할당됩니다. 이러한 두 값은 모두 다음과 같이 create
명령이 반환하는 JSON 블록에 표시됩니다.
{
...
"privateIpAddress": "10.0.0.4",
"publicIpAddress": "40.83.165.85",
...
}
SSH로 VM에 연결
Secure Shell(ssh
) 도구에서 공개 IP 주소를 사용하여 Linux VM이 실행 중인지 빠르게 테스트할 수 있습니다. 관리자 이름을 azureuser
로 설정했으므로 이를 지정해야 한다는 점을 기억합니다. 실행 중인 your 인스턴스에서 공용 IP 주소를 사용해야 합니다.
ssh azureuser@<public-ip-address>
참고
VM 생성의 일부로 SSH 키 쌍을 생성했으므로 암호가 필요하지 않습니다. VM에 처음 셸을 실행하면 호스트의 신뢰성에 대한 프롬프트가 표시됩니다.
호스트 이름을 거치는 대신 IP 주소에 직접 액세스하려고 하기 때문입니다. 예를 선택하면 해당 IP 주소가 연결에 대한 유효한 호스트로 저장되고 연결을 계속 진행할 수 있습니다.
The authenticity of host '40.83.165.85 (40.83.165.85)' can't be established.
RSA key fingerprint is SHA256:hlFnTCAzgWVFiMxHK194I2ap6+5hZoj9ex8+/hoM7rE.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '40.83.165.85' (RSA) to the list of known hosts.
그런 다음, Linux 명령을 입력할 수 있는 원격 셸이 표시됩니다.
Welcome to Ubuntu 18.04.3 LTS (GNU/Linux 5.0.0-1014-azure x86_64)
* Documentation: https://help.ubuntu.com
* Management: https://landscape.canonical.com
* Support: https://ubuntu.com/advantage
System information as of Wed Aug 21 20:32:04 UTC 2019
System load: 0.0 Processes: 108
Usage of /: 4.2% of 28.90GB Users logged in: 0
Memory usage: 9% IP address for eth0: 10.0.0.5
Swap usage: 0%
0 packages can be updated.
0 updates are security updates.
The programs included with the Ubuntu system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.
Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by
applicable law.
To run a command as administrator (user "root"), use "sudo <command>".
See "man sudo_root" for details.
azureuser@SampleVM:~$
ps
또는ls
와 같은 몇 가지 명령을 사용해보세요. 작업이 완료되면 exit
또는 logout
을 입력하여 가상 머신에서 로그아웃합니다.