Setting up a Client - Aster Analytics on AWS

Teradata Aster Analytics on AWS Getting Started Guide

Product
Aster Analytics on AWS
Release Number
1.5
Published
October 2017
Language
English (United States)
Last Update
2018-04-13
dita:mapPath
gkp1499384139306.ditamap
dita:ditavalPath
AWS.ditaval
dita:id
tsu1471542219751
lifecycle
previous
Product Category
Cloud

Before you begin, set up a client in AWS to run the backup and restore functions. This client should not be one from any Aster cluster in the AWS cloud. Because during the backup and restore operation, Aster cluster has to be quiesced.

Teradata Aster recommends to set up the client by launching an EC2 instance using available RHEL or Ubuntu AMI in AWS.

Make sure you set up the network properly which allows the client to connect to the Aster clusters you will work on in AWS.
  1. SSH to the client, as ec2-user and using your keypair file.
    ssh -i <your keypair file> ec2-user@<IP address of the client> 
  2. Set up Python and Boto3 on the client.
    1. Install and set up Python 2.7.
      The latest versions of RHEL and Ubuntu come with Python 2.7 out of the box.
    2. Install and set up Boto3.
      pip install boto3
  3. Create your credential and configuration file on the client.
    1. Create ~/.aws directory.
      mkdir ~/.aws
    2. Create the credential file ~/.aws/credentials, and add the following content to the credential file:
      [default]
      aws_access_key_id=<YOUR_ACCESS_KEY_ID>
      aws_secret_access_key=<YOUR_SECRET_ACCESS_KEY>
    3. Create the configuration file ~/.aws/config, and add the following content to the configuration file:
      [default]
      region=<the AWS region where you launched your Aster cluster>