Page cover

Haqq

Setting up a Haqq node involves several steps. Follow this guide to successfully install and configure your node.

Step 1: Prepare the Server

  • Ensure your server meets the minimum requirements:

    • RAM: 4 GB

    • SSD: 100 GB

  • Use an operating system such as Ubuntu 20.04 or newer.

Step 2: Install Dependencies

Install the necessary dependencies:

sudo apt update && sudo apt upgrade -y
sudo apt install curl git jq -y

Step 3: Install Go

Download and install Go version 1.21.1:

sudo rm -rvf /usr/local/go/
wget https://golang.org/dl/go1.21.1.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.21.1.linux-amd64.tar.gz
rm go1.21.1.linux-amd64.tar.gz

Add Go to your PATH:

Step 4: Install the Node

Clone the repository and install the node:

Step 5: Initialize the Node

Initialize your node with a unique moniker:

Download the genesis file:

Step 6: Configure Settings

Add the seed node to the configuration:

Step 7: Start the Node

Create a systemd service:

Enable and start the service:

Check the logs:

Last updated