Home Compiled cardano-node using CVM
Post
Cancel

Compiled cardano-node using CVM

After version 0.3.0 of CVM several changes were made that affect the commands, any questions visit this post Release Cardano Version Manager v0.3.0.

Starting

Hello again, this time I wanted to show you a tutorial on how to build your own cardano node using CVM.

What we will cover in this tutorial

  • Server configuration to run the cardano node
  • Cardano Server Installation
  • Version management

That we will not cover

  • Server operating system installation
  • Server security
  • Post sync ledger setup

Environment in which we will work

Virtual machine, 16gb Ram, 4 Cores, Ubuntu 22.04

let’s start: Installing CVM

To install cvm we just have to execute the following line in our terminal.

1
curl https://raw.githubusercontent.com/orelvis15/cvm/master/install.sh -sSf | bash && source "$HOME"/.cvm/env

Once the execution is finished you should have an output like this

Let’s run cvm help to verify that the installation was successful.

Initial settings for using CVM

CVM creates the folder structure needed to start the cardano node in the /opt directory, we need to make sure that the current user has write permissions to this directory.

We add the current user in the sudo group.

1
sudo adduser [user] sudo

Replace [user] with the user, in our case it would be sudo adduser orelvis sudo.

We add the sudo group as owner of the /opt directory

1
sudo chown -R root:sudo /opt

We assign read/write permissions to the user and group owners of the /opt directory

1
sudo chmod -R 775 /opt

We run ls -la and if all went well we should have an output like this.

Preparing the server with CVM

To be able to use a cardano node we need to install certain dependencies and download several configuration files, we will be able to do all this with the cvm init command

1
cvm init

This command will do the following.

  • Install all the necessary dependencies to run and compile the cardano node.
  • Create the necessary folder structure in the /opt directory
  • Download the configuration files published by IOK.
  • Download the scripts published by the guild-operator community to manage our node.

If all went well you should see an output like this.

Compiling Cardano node

The safest way to use cardano node binaries is if we compile it ourselves, there is the option recommended by the community, that’s why this functionality is built into CVM.

In the last section we prepared our server to compile cardano node without problems.

We run the command cvm install x.x.x where x.x.x is the cardano version we want to install, if we only want to install the latest version we can run cvm install and cvm will find the latest version version available.

1
cvm install

This command will perform the following actions.

  • Clone the cardano node repository with the latest changes.
  • Makes sure that it is in the tag of the version that was passed by parameters.
  • Update Cabal packages.
  • Compile the cardano node.
  • Create a folder in /opt/cardano/bin with the name of the version that was installed and copy the generated binaries into it.

Once finished you should have something like this.

If we now execute *cvm ls we will see that we have an output similar to this.

1
cvm ls

Starting the node

We already have node installed on our server, now we need to get it up and running.

first we are going to run cvm use x.x.x.

1
cvm use 1.35.0

This command will do the following:

  • Save as the version of cardano to execute the pass by parameters.
  • In case the cardano service does not exist, it will be created
  • It will restart the systemctl daemon to get the changes in the service

This step requires administrator access, it is common to ask for the root password

You should have an output like this

If we now execute cvm list we should get an output similar to this.

Verifiquemos que el sistema está reconociendo el nodo de cardano y la cardano cli.

1
cardano-node --version

1
cardano-clie --version

Now everything is ready to start with the synchronization of the node.

We start the cardano node service

1
cvm start

We check that the service is running

1
systemctl cnode status

Monitoring synchronization

We can keep track of the synchronization with the ledger using the guild-operator community scripts

We access the scripts directory in /opt/cardano.

1
cd /opt/cardano/scripts

2 - Now we run gLiveView

1
./gLiveView.sh

You should see something like this

This post is licensed under CC BY 4.0 by the author.