All Projects → MyEtherWallet → docker-geth-lb

MyEtherWallet / docker-geth-lb

Licence: MIT license
MyEtherWallet AWS set up. Deploy public-facing Ethereum nodes using AWS CloudFormation / Docker / Parity / Geth / ethstats

Programming Languages

Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to docker-geth-lb

Cfn nag
Linting tool for CloudFormation templates
Stars: ✭ 808 (+536.22%)
Mutual labels:  cloudformation, amazon
ETH-transactions-storage
Indexer for Ethereum to get transaction list by ETH address
Stars: ✭ 155 (+22.05%)
Mutual labels:  parity, geth
Aws Sdk Perl
A community AWS SDK for Perl Programmers
Stars: ✭ 153 (+20.47%)
Mutual labels:  cloudformation, amazon
private-chain
⛓An Ethereum PoA private-chain environment on AWS.
Stars: ✭ 23 (-81.89%)
Mutual labels:  cloudformation, parity
Aws Toolkit Vscode
AWS Toolkit for Visual Studio Code, an extension for working with AWS services including AWS Lambda.
Stars: ✭ 823 (+548.03%)
Mutual labels:  cloudformation, amazon
Serverless Dynamodb Autoscaling
Serverless Plugin for Amazon DynamoDB Auto Scaling configuration.
Stars: ✭ 142 (+11.81%)
Mutual labels:  cloudformation, amazon
Aws Toolkit Azure Devops
AWS Toolkit for Azure DevOps
Stars: ✭ 165 (+29.92%)
Mutual labels:  cloudformation, amazon
cloudformation-checklist
The checklist for meticulous AWS DevOps engineers
Stars: ✭ 68 (-46.46%)
Mutual labels:  cloudformation
aws-maven-plugin
Deploys resources to AWS using maven
Stars: ✭ 25 (-80.31%)
Mutual labels:  cloudformation
bora
A Ruby command line tool and rake tasks for working with cloudformation stacks and cfndsl
Stars: ✭ 18 (-85.83%)
Mutual labels:  cloudformation
aws-webrtc-recognition-example
Example with WebRTC , AWS Rekognition 👍
Stars: ✭ 18 (-85.83%)
Mutual labels:  amazon
CloudGenesis
Automation for deploying & deleting CloudFormation stacks sourced from a Git repo
Stars: ✭ 34 (-73.23%)
Mutual labels:  cloudformation
aws-cloudformation-simplified
AWS CloudFormation - Simplified | Hands On Learning !!
Stars: ✭ 51 (-59.84%)
Mutual labels:  cloudformation
Competitive-Programming-Solutions
COMPETITIVE PROGRAMMING PRACTICE QUESTIONS
Stars: ✭ 28 (-77.95%)
Mutual labels:  amazon
ethereum-light-wallet-android
react native based light ethreum wallet
Stars: ✭ 24 (-81.1%)
Mutual labels:  geth
aws-cfn-custom-resource-lambda-edge
🏗 AWS CloudFormation custom resource that allows deploying Lambda@Edge from any region
Stars: ✭ 19 (-85.04%)
Mutual labels:  cloudformation
sqs-exporter
A Prometheus Exporter for the Amazon Simple Queue Service (SQS)
Stars: ✭ 24 (-81.1%)
Mutual labels:  amazon
cloudniite
AWS Lambda Optimization and Monitoring Tool
Stars: ✭ 25 (-80.31%)
Mutual labels:  cloudformation
serverless-rules
Compilation of rules to validate infrastructure-as-code templates against recommended practices for serverless applications.
Stars: ✭ 352 (+177.17%)
Mutual labels:  cloudformation
takomo
Organize, parameterize and deploy your CloudFormation stacks
Stars: ✭ 27 (-78.74%)
Mutual labels:  cloudformation

docker-geth-lb

docker image for latest geth deployment

Overview

This project provides a means to quickly deploy public-facing Ethereum nodes using AWS CloudFormation technology.

Under the hood we're using Docker, your choice of Geth or Parity, and an instance of ethstats to display real-time information about your deployed nodes.

Caution

The following details steps to deploy live code to real infrastructure. It will cost you real money. Please take time to understand Amazon's EC2 pricing before deploying. Always continuously monitor your account to ensure any accrued fees match your expectations.

As soon as you set up, you will want to set up billing alerts when certain thresholds are met. We did not do this initially and regretted it. Set up every ~$50 or so for total charges and/or EC2 charges. Adjust as necessary. We set it up to alert us on Slack as we meet certain thresholds and then email us directly when it gets out of hand. This ensures we stay aware, but don't get overloaded with notifications and take all emails seriously.

Prerequisites

  • An active Amazon Web Services account (quick setup guide).
    • For increased security, it is recommended by Amazon to create AWS Identity and Access Management user credentials for day-to-day interaction with AWS. Please see this page for a thorough explanation and instructions. Also, be sure to turn on multi-factor authentication for any account you create.
  • A key pair registered to your AWS account (guide here).

Deploying to AWS

  • Be sure you've met all the prerequisites.

  • Choose your node type:

    • Amazon CloudFormation uses JSON templates to deploy predefined infrastructure. We've created templates for both Geth and Parity. Depending on the type of node you'd like to run, save one of the following to your machine:
    • Geth
    • Parity
  • Visit the AWS console and log into your account.

  • Click on the Services button at the top to open a dropdown. Under Management Tools, click on CloudFormation.

  • Click the blue Create Stack button in the top left.

  • Under the Choose a template heading, select Upload a template to Amazon S3 and click Choose File. Navigate to and select the geth or parity template you saved previously. Click the blue Next button in the bottom right.

  • You'll be presented a list of configurable parameters for your CloudFormation stack. Here's each of them and what they mean:

    • Stack name
      • The name of the stack as it will appear in your Amazon account. Name it whatever you'd like.
    • ETHStatsPassword
      • The password that will be used to connect to the ethstats server. Please choose a secure password and remember it.
    • ETHStatsServer
      • The AWS EC2 type that will run the ethstats server. This doesn't have to be very powerful since it won't be handling a large amount of traffic. The t2.micro instance is selected by default.
    • InstanceType
      • The AWS EC2 type that will run the Ethereum node. The t2.medium instance is selected by default.
    • InstanceCount
      • The number of Ethereum nodes you would like to deploy.
    • KeyName
      • The name of the key pair you configured as a prerequisite.
    • SSHLocation
      • The IP address range that can SSH into the EC2 instances. The default is 0.0.0.0/0.
  • Once you are satisfied with your configuration, click the blue Next button in the bottom right.

  • You should arrive at the Options page. For this simple setup, nothing needs to be added here. Click the blue Next again.

  • Finally, take a moment to review your configuration. If everything looks good, click Create in the bottom right.

  • Amazon will now bring the template to life. Wait for the yellow CREATE_IN_PROGRESS status to switch to a green CREATE_COMPLETE before continuing.

  • Next, click on your newly deployed stack and then click on Outputs. You should see two keys, described below:

    • ETHStatsIP - The public-facing IP address of the ethstats server. Visit this in your browser to view the status of your Ethereum nodes.
    • URL - The public-facing URL used to connect to your Ethereum nodes.

Congratulations! You've just deployed one or more public-facing Ethereum nodes!

Undeploying from AWS

You can delete the infrastructure deployed in the previous step at any time:

  • Visit the AWS console and log into your account.
  • Click on the Services button at the top to open a dropdown. Under Management Tools, click on CloudFormation.
  • Right-click on the name of the deployed stack you'd like to erase. Select Delete Stack and affirm at the prompt.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].