Taraxa Project
WebsiteExplorerCommunity Site
  • 👋Welcome!
  • 💵Wallet
    • Metamask
    • Ledger
    • Taraxa's Network Connection Details
  • 🌱Become a Validator
    • ⚙️Set up validator node
    • 🖥️Consensus node hardware requirements
    • 🚩Register node via community site
    • ⛓️Register node directly on-chain
    • 📣Solicit delegation
    • 🛠️Node upgrade & reset
  • 💰Staking
    • 💧Liquid Staking
    • 🚩Staking via community site
    • ⛓️Staking directly on-chain
  • 🌉Ficus Root Bridge
    • ↔️Bridge usage guide
    • 📜On-chain contracts
    • 🔎Audit Report
  • 💥Taraxa Grant Program
  • Develop on Taraxa
    • 🚀Start building on Taraxa!
    • 🔗Connecting to Taraxa
    • 📓Smart Contracts
      • Remix
    • ⚒️Common frameworks & Examples
    • 💧Testnet faucet
    • 🔩Taraxa RPC Specs
  • Node Operations
    • ⚙️Deploy A Node
      • Digital Ocean
      • AWS
      • Alibaba Cloud
      • Scaleway
      • Vultr
      • Linode
      • Azure
      • Hetzner
      • GitHub is blocked
    • 🪶Lite Consensus Node (beta)
    • ⏺️Upgrade a Node
      • ⬆️Upgrade Node
      • 🔁Reset Node
    • 🔀Syncing From Snapshot
    • 📬Node's Public Address
    • 🗝️Node's VRF Key
    • 📒Node Proof of Ownership
    • ❓Node Operations FAQ
    • 🔢Node Release Notes
    • ⚙️Install A Local Node
      • Windows
      • Mac
      • Linux
      • Digital Ocean
      • AWS
      • Alibaba Cloud
      • Scaleway
      • Vultr
      • Linode
      • Azure
      • Hetzner
      • GitHub is blocked
  • FAQ
    • 1️Layer-1 Tech
    • 🪙TARA Token
    • 🌱Mainnet
    • 🔁Exchange Integration
  • Whitepaper
    • Abstract
    • Intro: Scaling the World
    • Taraxa Architecture
    • Economic Model
    • Governance
    • Further Reading
  • NATIVE TOKEN CONVERSION
    • 💡Introduction
    • 🗓️Conversion Status
    • ❓Conversion FAQ
    • ⚗️Mock Conversion
    • 📋Exchange Submission
  • Governance
    • ℹ️Introduction
    • ⚡Voting Guide
Powered by GitBook
On this page
  • 1. Register to AWS unless you already have Amazon Web Services account
  • 2. Create an Access key ID and secret access key
  • 3. Creating a Taraxa Node
  • 4. Check the logs

Was this helpful?

  1. Node Operations
  2. Deploy A Node

AWS

Guide for running the Taraxa Node with Docker on Amazon Web Services (AWS)

PreviousDigital OceanNextAlibaba Cloud

Last updated 1 year ago

Was this helpful?

1. Register to AWS unless you already have Amazon Web Services account

You should create account on Amazon Web Services

Please note that account confirmation usually takes about 24 hours

2. Create an Access key ID and secret access key

To create access keys for an IAM user:

  • Sign in to the AWS Management Console and open the IAM console at

  • In the navigation pane, choose Users.

  • Create new user with Access type set to Programmatic access or choose the name of the user whose access keys you want to create, and then choose the Security credentials tab.

  • In the Access keys section, choose Create access key.

  • To view the new access key pair, choose Show. You will not have access to the secret access key again after this dialog box closes. Your credentials will look something like this:

  Access key ID: AKIAIOSFODNN7EXAMPLE
  Secret access key: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY

Make a note of that keys. We will use it in the next step.

3. Creating a Taraxa Node

If you are running this on Windows you will first need to install Windows Subsystem for Linux. You can use .

Export your AWS access keys to your environment so that the node creation script can access it without prompting you for it:

export AWS_ACCESS_KEY_ID=YOUR_ACCESS_KEY_ID
export AWS_SECRET_ACCESS_KEY=YOUR_SECRET_ACCESS_KEY

Otherwise, the installation script will ask you for access keys interactively

Then you can download and run the node creation script using this command:

The script you fetch and run in the next step depends on the network you want to deploy your node to. Please be sure to select between mainnet and testnet as desired.

Download and run the node install script for the type of node you wish to deploy:

Mainnet Full Node:

bash -c "$(curl -fsSL https://raw.githubusercontent.com/Taraxa-project/taraxa-ops/master/scripts/one-click-AWS.sh)" mainnet

Mainnet Light Node:

bash -c "$(curl -fsSL https://raw.githubusercontent.com/Taraxa-project/taraxa-ops/master/scripts/one-click-AWS.sh)" mainnet light

Download and run the node install script for the type of node you wish to deploy:

Testnet Full Node:

bash -c "$(curl -fsSL https://raw.githubusercontent.com/Taraxa-project/taraxa-ops/master/scripts/one-click-AWS.sh)" testnet

Testnet Light Node:

bash -c "$(curl -fsSL https://raw.githubusercontent.com/Taraxa-project/taraxa-ops/master/scripts/one-click-AWS.sh)" testnet light

Look carefully at the output of the script, if everything went well, the script will write the AWS region in which the node was deployed, the IP address of the node and the command to connect to the node via SSH.

NOTE: It takes a few minutes after the droplet starts to install the Taraxa Node software.

4. Check the logs

You can use the following commands inside the created server to check if the node is up and running:

sudo docker ps
sudo docker logs -f taraxa_compose_node_1

Now you should see a new server in your (select the correct region in which your node was deployed).

⚙️
https://portal.aws.amazon.com/billing/signup
https://console.aws.amazon.com/iam/
this guide
AWS Console