For cloud images, standard usernames such as ubuntu, debian, fedora, opensuse, or cloud-user are typically used.
The SSH client is installed by default on Windows Server 2019, Windows 10 version 1809, and later builds.
ssh -i keyname-username.pem username@ip_hostFor example: ssh -i C:\Users\YourUserName\keyname-username.pem ubuntu@194.135.112.207.
keyname-username.pem.chmod 600 /full/path/to/file/keyname-username.pemssh -i /full/path/to/file/keyname-username.pem -p 22 username@111.11.111.111 Where:For cloud images, standard usernames such as ubuntu, debian, fedora, opensuse, or cloud-user are typically used.
chmod 600 keyname-username.pemThis ensures the private key file is readable and writable only by its owner.
Use the following command in the terminal to connect: ssh -i /path/to/key/file username@ip_host