DCP Docs v0.0.1
  • Welcome
  • 🤝T4L3NT Net
    • Blockchain
      • Setting up a t4l3nt node
        • Build the Docker Image locally
        • Run a node without docker
          • Updating Node without Docker
      • Snapshots
      • Importing keys
      • Updating your t4l3nt node
      • Switching to a rolling node
      • T4L3NT Rewards distributor
      • t4l3nt Governance Overview
Powered by GitBook
On this page
  1. T4L3NT Net
  2. Blockchain
  3. Setting up a t4l3nt node
  4. Run a node without docker

Updating Node without Docker

Install and update new protocol versions

Start a shell session

git fetch

Then checkout the correct branch

git checkout <new protocol branch> ex. v12-tlnt

make build-deps

eval $(opam env) && make

Stop your current node, baker, endorser, and accuser

Restart the node, baker, and the accuser (not the endorser) after v11.

Start the node

./tlnt-node run --rpc-addr 127.0.0.1

Start the baker

./tlnt-baker-<binary-name> run with local node /home/ubuntu/.tlnt-node producer

Start the accuser

./tlnt-accuser-<binary-name> run

Done.

PreviousRun a node without dockerNextSnapshots

Last updated 2 years ago

🤝