Rajendra Gupta
Microsoft SQL Server 2017 installation options

Installation of SQL Server Linux on Red Hat in Amazon EC2 instances

December 17, 2019 by

This article explores the configuration of the Red hat Amazon EC2 instance for SQL Server installation.

Introduction

Microsoft SQL Server 2017 and 2019 are available on the cross-platform operation system. We can install SQL Server on Red Hat, Ubuntu and SUSE Linux servers. Once you go on Microsoft web page for downloading SQL Server 2017, you get the following options for Linux:

Microsoft SQL Server 2017 installation options

SQL Server also supports on-premise and cloud infrastructures such as Microsoft Azure, Amazon Web Service, and Google cloud. You can refer to SQL Server on Linux articles on SQL Shack for more information.

We will explore SQL Server 2017 Linux installation on Amazon Web Service for Red Hat Linux in two articles.

  • Part 1: Configuration of an Amazon EC2 instance for RHEL OS
  • Part 2: SQL Server 2017 installation on AWS EC2 instance

Overview of Amazon Elastic Compute storage (EC2)

You might be familiar with virtual machines (VM) in on-premise infrastructure. Amazon EC2 is a service that provides compute instances on Cloud similar to an on-premise virtual machine. It is a flexible compute solution, and we can scale up, down the resources based on the requirement.

  • It is available across all AWS regions and zones
  • You can install a variety of operating systems and different versions using the pre-defined templates provided by Amazon
  • We can build customize the image and deploy it on N number of instances
  • You do not make any commitments for the resources. You only pay for your use
  • It is a very secure and stable environment

Login to AWS console and navigate to Services. In the Compute section, you can click on EC2:

Amazon EC2 service

It launches Amazon EC2 dashboard where you can navigate to instance properties, configuration options. AWS EC2 is a region-specific service. In the following screenshot, it shows the EC2 service status in a specific region, for example, US East (N.Virginia) region.

We want to create a new Red Hat instance for SQL Server. Click on the Launch Instance:

EC2 dashboard

It gives you the following options:

  • Launch instance: We use it for launching any instances from the AWS marketplace. The Amazon template is known as Amazon Machine Image (AMI)
  • Launch instance from template: If you have defined any templates in your account, you can use it and create the EC2 instances

We do not have any predefined templates. Click on Launch instance again:

Launch instance

It is a seven-step process for creating an EC2 instance. Let’s walk you through these steps.

Step 1: Choose Amazon Machine Image (AMI)

In the first step, we choose an Amazon Machine Image (AMI) for Amazon EC2 according to the operating system requirements. We can also search for a specific image from the search box. In the following screenshot, we filtered the AMI for Red Hat:

Choose AMI

In this article, we will use Red Hat Enterprise Linux (RHEL) 7.2 AMI for EC2 instance. Click on Select, and it shows you the instance type and per hour usage cost for the EC2 instance. In Amazon, instance type refers to EC2 instance according to compute requirements such as CPU, RAM:

Pricing details for EC2

Click on Continue.

Step 2: Choose Instance Type

Choose the appropriate instance type. Here, you can see vCPU, Memory, network performance for each instance type as well.

For this article, I choose t2.medium instance type:

Choose an Instance type

You can directly launch the EC2 instance with default options using the Review and Launch option. Click on Next: Configure Instance Details for further configuration options.

Step 3: Configure Instance

In this step, EC2 provides several essential configuration options. We will look at a few configurations in brief.

  • Number of instances: We can launch multiple instances altogether with similar configurations. By default, it launches one instance
  • Network: It is an essential configuration. It is a networking component of an Amazon EC2 instance. You might not need a configuration of a VPC being a DBA. However, you should be aware of the basics of a VPC. VPC is an acronym of Virtual Private Cloud. Imagine VPC as a virtual data center. We define subnets, private IP addresses, network gateway, route tables. We also configure the firewall rules for inbound and outbound rules

By default, Amazon creates a default VPC for you; however, it is recommended defining a VPC as per your infrastructure requirements. In this article, let’s go with default VPC and subnet configuration in an availability zone.

Apart from the VPC, look at the following useful configuration as well:

  • Shutdown behavior: As specified earlier, you pay only for the usage of AWS resources. We can define shutdown behavior for an Amazon EC2 instance. By default, if we stop the EC2 instance once we click on shutdown. We can restart it later and use it as per requirement. We can modify this setting to terminate the instance on the shutdown of the EC2 instance
  • Enable termination protection: We can protect the EC2 instance against accidental termination using this configuration. We should use this for critical and production instances

Configure Instance

Another configuration option is Tenancy. By default, all EC2 instances are in shared tenancy. Shared tenancy means EC2 instance is in shared hardware. We can use a dedicated tenancy as well, but you have to pay a higher cost for it:

Configure Instance - Tenancy

Step 4: Add Storage

In the next step, define the volume type and size. In a free tier account, we get up to 30 GB of EBS general-purpose volume. Define an appropriate storage size for your Amazon EC2 instance.

By default, AWS deletes the storage volume on termination of EC2 instance. You can see checkmark on Delete on Termination in the below screenshot. If you want to retain storage after EC2 termination as well, we can remove the check from this option:

Add Storage

Step 5: Add Tags

We define tag as a label for the AWS resources. We can use a tag for organizing resources, cost allocation for the respective tags. It is an optional step but recommended if you manage many resources in AWS.

In this article, we define the following tag for an EC2 instance:

  • Key: Name
  • Value: SQL Server On Linux Demo

Add Tags

Step 6: Configure Security Group

Security groups are firewall rules for the AWS EC2 instance. We can create a new security group or use an existing security group as well.

For this article, we define the following security group rules for TCP protocol:

  • Port 22 for SSH connection from MyIP. If you select My IP in the source, it automatically populates your IP address. We can define a custom IP address range as well for the firewall rule
  • SQL Server default port is 1433. We define 1433 TCP port so that we can connect to EC2 instance from our local system

Configure Security Group

Step 7: Review instance launch

In this step, we can review all previous configurations. If we want to change any configuration, go back and make the appropriate changes. Click on Launch to start EC2 instance launch process:

Review Instance Launch

Once you click on the launch, it asks you to select an existing key pair or create a new key pair. We use a key pair to connect an Amazon EC2 instance. It is a combination of private and public keys. AWS stores the public key and you download the private key.

We do not have any existing key pair, therefore, specify a key pair name and download it.

  • Note: You should store the key pair at a safe and secure location. AWS does not allow downloading this key pair at the later stage.

Download key pair

Once you download the key pair, it enables the Launch Instances option:

Download key and launch instance

Click on Launch Instances, and it initiates the configuration of the security group, EC2 instance:

Launch instance property

Click on the instance ID, and it gives the below summary of the Amazon EC2 instance:

Instance ID

For a healthy EC2 instance, it should have the following configuration:

  • Instance Status: running
  • Status check: AWS performs two checks after launching an EC2 instance
    1. System Status Checks
    2. Instance Status Checks

Read more about the status checks on the AWS documentation.

Status of EC2 instance

In the following screenshot, we can see our EC2 instance passed 2/2 status check. You can also view the public IP address and public DNS for my EC2 instance:

2/2 status check for EC2

Connect Red Hat Amazon EC2 Instance

We require SSH and telnet client tools for connecting to an AWS EC2 instance. Go to URL and download the following software:

  • PuTTy
  • puttygen

Download putty and puttygen

In the previous step, we downloaded a key pair file (PEM). Launch Puttygen and click on Load:

load PEM file in puttygen

We need to browse to the directory where you stored the PEM file and select the downloaded key pair file:

browse directory for PEM file

Click on Open, and it imports the PEM file and converts into PPK file:

Import PEM file in puttygen

Click OK to save the private key, and then Save private key:

Save private key file

It throws the following warning message:

Warning message

Click Yes and save PPK file into an appropriate secure location:

Save PPK file

Now, launch the Putty software and provide the public IP address. We can copy the public IP address from the instance property:

Note public IP address

Connect EC2 instance using Putty

Now, expand the SSH category using the plus sign, and it gives you a list of options. Click on Auth:

Click on Auth for connection with PPK file

Browse to the PPK file location, as shown below:

specify private key for autentication

Click on Open, and it connects to the Amazon EC2 instance. It gives the following security alert for the first-time connection. Click on Yes to add the key to Putty’s cache:

Putty security alert

Amazon provides a default user EC2-user for a first-time connection. We do not require a password for this user. It automatically authenticates using the public and private key:

Connection status for Amazon EC2 instance

Next step

In the next article, we install SQL Server 2017 on this Amazon EC2 instance. We will also connect the SQL Server instance and perform specific operations for validation purposes.

Conclusion

In this article, we explored the Amazon EC2 instance, its configuration using AMI through specific steps. We also learned the basics of individual AWS components such as VPN, security group, key pairs. You should prepare the environment using this article before proceeding for the next article.

Rajendra Gupta
Latest posts by Rajendra Gupta (see all)
168 Views