Run a node on a server with Ubuntu on Mainnet#

This guide describes how organizations can run a node on the Concordium network from a server and how to set up the node to run as a baker node.

You can also watch the video to learn how to run a node with Ubuntu.

Prerequisites#

  • Ubuntu 20.04 or 22.04 must be installed on the server that is running the node.

  • The server must be running around the clock.

  • If you want to run the node as a baker, you must have generated baker keys. You can generate the keys in the Desktop Wallet or Concordium Client.

Note

Subscribe to the Mainnet status page and the release information on Discourse to stay informed about updates and changes that may affect you as a node runner, including node software releases and protocol updates.

To subscribe to updates on the Mainnet status page click Subscribe to get all updates or click Get updates to choose to get all updates or only updates for specific products.

Install the Debian package and run a node#

To run the node, you must install a Debian package. After installation, the concordium-mainnet-node and concordium-mainnet-node-collector services will be started. The services are also enabled to start automatically on system start.

  1. Download the Debian package

  2. Install the package:

    $sudo apt install /path-to-downloaded-package
    

    Where path-to-downloaded-package is the location of the downloaded .deb file.

    The path should be absolute, e.g., ./concordium-mainnet-node.deb, otherwise apt will assume that you want to install a package from the registry.

  1. Enter a node name when prompted. The node name is visible on the network dashboard. When you have installed the services, the concordium-mainnet-node will be running automatically.

  2. To verify that the node is running, go to the Concordium dashboard and look for a node with the name you provided.

The concordium-mainnet-node service that you just installed will be running around the clock, except if you’re going to restart the node with baker keys.

Note

If you want more detailed information about building and maintaining a node, or if your node is not running, see the Building .deb packages for ubuntu distributions README from Concordium

Enable inbound connections#

If you are running your node behind a firewall, or behind your home router, then you will probably only be able to connect to other nodes, but other nodes will not be able to initiate connections to your node. This is perfectly fine, and your node will fully participate in the Concordium network. It will be able to send transactions and, if so configured, to bake and finalize.

However you can also make your node an even better network participant by enabling inbound connections. By default, concordium-node listens on port 8888 for inbound connections on Mainnet. Depending on your network and platform configuration you will need to forward an external port to 8888 on your router, open it in your firewall, or both. The details of how this is done will depend on your configuration.

Synchronize a node with the network#

If the node is well behind the head of the chain, you can speed up the startup by using out-of-band catchup.

  1. Stop the node if it is running

$sudo systemctl stop concordium-mainnet-node.service
  1. Edit the node service configuration file

$sudo systemctl edit concordium-mainnet-node.service
  1. Add the following under the [Service] section (create the section if it does not exist)

Environment=CONCORDIUM_NODE_CONSENSUS_DOWNLOAD_BLOCKS_FROM=https://catchup.mainnet.concordium.software/blocks.idx
  1. Start the service again

$sudo systemctl start concordium-mainnet-node.service

After the node is caught up remove the out of band catchup configuration to speed up further node restarts.

Node collector configuration#

Since version 5.3.2 of the node the collector uses the GRPC V2 interface. Therefore, in order to run the collector, it is required that the node which the collector connects to has the GRPC V2 interface enabled.

Since the GRPC V2 port is different than the GRPC V1 port, you might need make changes to your node configuration. You only need to change the collector port if you have overridden your node configuration. You can edit your overrides with:

$ sudo systemctl edit concordium-testnet-node.service

This will open your overrides in your default editor. Below is an example for the default mainnet port 20000:

[Service]
Environment=CONCORDIUM_NODE_COLLECTOR_GRPC_HOST=http://localhost:20000

Upgrade version#

Note

When upgrading, you can only upgrade one minor version at a time, or from the last release of major version X to major version X+1. You cannot skip versions. For patches, you can skip versions e.g. X.X.0 to X.X.3, or X.1.1 to X.2.3. To download previous node versions, see Previous node versions.

To upgrade to a newer version of the concordium-mainnet-node package you need to:

  1. Install the new package

    $apt install ./concordium-mainnet-node_(version)_amd64.deb
    

This step performs automatic database migration, so that the new node doesn’t have to catch up from scratch. After installation is completed, the node and the collector are started as before.

Run a baker node on Ubuntu#

For information about how to configure a node to run as a baker, see Run a baker node on Ubuntu.