EC2 and Windows

How do I configure an EC2 Windows instance to allow file downloads using Internet Explorer? I need to download third-party software from the internet to my Amazon Elastic Compute Cloud (Amazon EC2) Windows instance. The Internet Explorer security configuration is blocking my attempts. How can I enable downloads? Connect to your EC2 Windows instance Open the Windows Start menu, and then open Server Manager. Follow the instructions for the Windows Server version that your EC2 Windows instance is running: Windows Server 2012 R2, Windows Server 2016, or Windows Server 2019: Choose Local Server from the left navigation pane....

July 30, 2022 · Marcin M

Using Route 53 Routing Policies  [draft]

We will create Route 53 Routing policies base on latency. Where there is no red arrow or description, leave the default value. First we need to create two web servers with sample web code in to different region. To do this exercise, we need running to servers Use sample user data code to create it. Copy code and run as user data when launch servers Copy and past code To use this code you have to use AWS Amazon Linux ISO!...

July 30, 2022 · Marcin M

Create an Auto Scaling Group  [draft]

We will create lunche template and auto-scaling group Where there is no red arrow or description, leave the default values Under the instances select Lunch Template We do not have any templates so create one Give it a name and scroll down We put LT1 witch stands for Lunch Template 1 Chose AMI and instance type In our case is Amazon Linux 2 & t2.micro Select your Key pair your VPC and security group You have to have you key pair created or click create new key pair....

July 16, 2022 · Marcin M

Register Domain With Route 53  [draft]

Here’s a step-by-step guide on how to register a domain with Amazon Route 53 Sign in to AWS Console: Go to the AWS Management Console. Sign in with your AWS account credentials. Open Route 53: In the AWS Management Console, navigate to the “Services” dropdown. Under “Networking & Content Delivery,” select “Route 53.” Choose “Domain Registration”: In the Route 53 dashboard, select “Domain Registration” from the left-hand navigation pane. Click “Register Domain”:...

July 16, 2022 · Marcin M

Ansible  [draft]

First steps I made to start my adventure with Ansible Please go to the official web for instructions on installing Ansible - this is the best way. Installing and upgrading Ansible Ansible’s installation and version ansible --version Create Inventory #inventory file 192.168.1.171 192.168.1.172 192.168.1.173 Create ansible.cfg #ansible.cfg [defaults] inventory = inventory private_key_file = ~/.ssh/ansible/ remote_user = ubuntu Test Ansible is working ansible all --key-file ~/.ssh/ansible -i inventory -m ping After creating config....

July 14, 2022 · Marcin M