✨Avail

Install-Avail-Full-Node

This is a guide for installing Avail Node on Ubuntu 22.04.

Video: https://youtu.be/HYBzK-jJIeQarrow-up-right


1.** Install Rust**

sudo apt-get update
sudo apt install build-essential
sudo apt install --assume-yes git clang curl libssl-dev protobuf-compiler
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source ~/.cargo/env
rustup default stable
rustup update
rustup update nightly
rustup target add wasm32-unknown-unknown --toolchain nightly

2.After ensuring you have Rust installed, you can run the Avail Node using the following command:

git clone https://github.com/availproject/avail.git
cd avail
mkdir -p output
mkdir -p data
git checkout v1.8.0.2
cargo run --locked --release -- --chain goldberg -d ./output

**This command complies and runs the Avail Node connected to the Kate Network. **

** Press Ctrl + A + D to exit the screen **

  1. Create Systemd

Change your Validator name and copy/paste it

Save it: CTRL+X .

P/s: My username is root what I used to login my Vps.

data-avail file in this directory.

imagearrow-up-right

To enable this to autostart on bootup run:

systemctl enable availd.service

Start it manually with:

systemctl start availd.service

You can check that it's working with:

systemctl status availd.service

You can tail the logs with journalctllike so:

journalctl -f -u availd

Check your node on https://telemetry.avail.toolsarrow-up-right

imagearrow-up-right

** Guide Update Kate to GoldBerg**

run commands

Open availd.service and Change --chain Kate to -- Chain Goldberg

Ctrl+ O to save it, Ctrl+ X to exit.

imagearrow-up-right

restart availd.service


** Guide Update Kate to GoldBerg by Docker**

you could try to Find container Id

Stop the node

Change DA_NAME=goldberg-docker-avail-Node to your node name and run again


** Guide Update Kate to GoldBerg by pre-build**

Run Commands

Open file Systemd and edit to --chain goldberg

CTRL +o to save . Ctrl +X to exit

restart systemd file again

Last updated