Skip to main content

Run a Full Node using Ansible

This tutorial guides you through starting and running a full node using Ansible.

An Ansible playbook is used to configure and manage a full node. See the Minimum Technical Requirements guide for the system requirements.

Snapshots

Steps in this guide involve waiting for the Heimdall and Bor services to sync fully. This process takes several days to complete.

Please use snapshots for faster syncing without having to sync over the network. For detailed instructions, see Snapshot Instructions for Heimdall and Bor.

For snapshot download links, see the Polygon Chains Snapshots page.

Prerequisites

  • Install Ansible on your local machine with Python3.x. The setup will not work if you have Python2.x.
    • To install Ansible with Python 3.x, you can use pip. If you do not have pip on your machine, follow the steps outlined here. Run pip3 install ansible to install Ansible.
  • Check the Polygon PoS Ansible repository for requirements.
  • You will also need to ensure that Go is not installed in your environment. You will run into issues if you attempt to set up your full node through Ansible with Go installed as Ansible requires specific packages of Go to be installed.
  • You will also need to make sure that your VM / Machine does not have any previous setups for Polygon Validator or Heimdall or Bor. You will need to delete them as your setup will run into issues.
Heimdall source enhancements

The latest Heimdall version, v.0.3.0, contains a few enhancements. The delay time between the contract events of different validators has been increased to ensure that the mempool doesn't get filled quickly in case of a burst of events that could hamper the chain's progress.

Additionally, the data size has been restricted in state sync txs to 30Kb (when represented in bytes) and 60Kb (when defined as string). For example:

Data - "abcd1234"
Length in string format - 8
Hex Byte representation - [171 205 18 52]
Length in byte format - 4

Full node setup

  • Ensure you have access to the remote machine or VM on which the full node is being set up.

    Refer to https://github.com/maticnetwork/node-ansible#setup for more details.

  • Clone the https://github.com/maticnetwork/node-ansible repository.

  • Navigate into the node-ansible folder: cd node-ansible

  • Edit the inventory.yml file and insert your IP(s) in the sentry->hosts section.

    Refer to https://github.com/maticnetwork/node-ansible#inventory for more details.

  • Check if the remote machine is reachable by running: ansible sentry -m ping

  • To test if the correct machine is configured, run the following command:

    # Mainnet:
    ansible-playbook playbooks/network.yml --extra-var="bor_version=v0.3.3 heimdall_version=v0.3.0 network=mainnet node_type=sentry" --list-hosts

    # Testnet:
    ansible-playbook playbooks/network.yml --extra-var="bor_version=v0.3.3 heimdall_version=v0.3.0 network=mumbai node_type=sentry" --list-hosts
  • Next, set up the full node with this command:

    # Mainnet:
    ansible-playbook playbooks/network.yml --extra-var="bor_version=v0.3.3 heimdall_version=v0.3.0 network=mainnet node_type=sentry"

    # Testnet:
    ansible-playbook playbooks/network.yml --extra-var="bor_version=v0.3.3 heimdall_version=v0.3.0 network=mumbai node_type=sentry"
  • In case you run into any issues, delete and clean the whole setup using:

    ansible-playbook playbooks/clean.yml
  • Once you initiate the Ansible playbook, log in to the remote machine.

  • Please ensure that the value of seeds and bootnodes mentioned below is the same value as mentioned in Heimdall and Bor config.toml files. If not, change the values accordingly.

  • To check if Heimdall is synced

    • On the remote machine/VM, run curl localhost:26657/status
    • In the output, catching_up value should be false
  • Once Heimdall is synced, run

    • sudo service bor start

You have successfully set up a full node with Ansible.

note

If Bor presents an error of permission to data, run this command to make the Bor user the owner of the Bor files:

sudo chown bor /var/lib/bor

Logs

Logs can be managed by the journalctl linux tool. Here is a tutorial for advanced usage: How To Use Journalctl to View and Manipulate Systemd Logs.

Check Heimdall node logs

journalctl -u heimdalld.service -f

Check Bor Rest-server logs

journalctl -u bor.service -f

Ports and Firewall Setup

Open ports 22, 26656 and 30303 to world (0.0.0.0/0) on sentry node firewall.

You can use VPN to restrict access for port 22 as per your requirement and security guidelines.