Microservices
Updated On 24 March 2024 | Min(s) read

Setting up Command Line Interface

This doc explains how to set up the command line interface for following services:

Setting up AWS Command Line and Dynamo-db

To set up the AWS Command Line Interface and Dynamo-db, follow these steps.

  1. Download and install AWS CLI.
  2. From the installed location, to configure AWS for general purpose, provide the Access Key ID, Secret Access Key, Region, and Output Format.

    For example,

    $ aws configure
    AWS Access Key ID [None] :   <aws-access-key>
    AWS Secret Access Key [None] :  <aws-secret-key>
    Default region name [one] :    us-west-2
    Default output format [None] :

    The configuration details are stored in the config & credentials file in the USERS directory.

  3. Download and install dynamo-db.
  4. From the installed location, to launch dynamo-db, execute the following command, -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar -sharedDb.
  5. After executing the mentioned command, you should be able to access dynamo-db from the AWS Command Line Interface.

    For example, aws dynamodb list-tables and aws dynamodb scan --table-name example-table-name.

Setting Up Azure Command Line

To set up the Azure Command Line Interface, follow these steps.

  1. Download and install Azure CLI.
  2. After successful installation, sign in to the Azure portal by using the following command:

    C:\>az login -u <username> -p <password>

Copyright © 2020- Temenos Headquarters SA

Published on :
Tuesday, September 2, 2025 12:40:16 PM IST