To deploy an application on an EC2 instance, we first have to login into it and install the necessary packages/software, which can be easily done through an SSH client, such as MobaXterm, Putty, and so on. In this recipe, we will login into an EC2 instance, which we created in the previous recipe, and install Go using the Red Hat package manager.
Interacting with your first EC2 instance
How to do it...
- Set the permissions of the private key file—my-first-ec2-instance.pem—to 400, which means the user/owner can read, can't write, and can't execute, whereas the group and others can't read, can't write, and can't execute it, by executing the chmod command, as follows:
$ chmod 400 my-first...