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 Hetzner
  • 2. Create a Project API access token
  • 3. Creating a Taraxa Node
  • 4. Check the logs

Was this helpful?

  1. Node Operations
  2. Deploy A Node

Hetzner

Guide for running the Taraxa Node with Docker on Hetzner

PreviousAzureNextGitHub is blocked

Last updated 1 year ago

Was this helpful?

1. Register to Hetzner

You can use the following link to get Euro 20 to test out Hetzner Cloud:

2. Create a Project API access token

First, create a project in the Then select the project and create an API access token in the Security menu under API Tokens tab.

Make a note of that key. 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 Hetzner Cloud access token to your environment so that the node creation script can access it without prompting you for it:

export HCLOUD_TOKEN=your_api_key

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-Hetzner.sh)" mainnet

Mainnet Light Node:

bash -c "$(curl -fsSL https://raw.githubusercontent.com/Taraxa-project/taraxa-ops/master/scripts/one-click-Hetzner.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

Now you should see a new server in your Hetzner Cloud Console and you should receive an email with the login details.

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
⚙️
https://hetzner.cloud/
Hetnzer Cloud Console
this guide