Page cover

NUBİT

💻 System Requirements

2 CPU 4 RAM 40 GB SSD

SETUP

sudo apt-get update && sudo apt-get upgrade -y 
sudo apt-get install curl screen git-all build-essential glibc-source pkg-config libssl-dev clang git-lfs -y
curl -sL1 https://nubit.sh | bash

IT WILL START ALL OF THEM AUTOMATICALLY BY THE INSTITUTION AND YOU SHOULD STOP IT WITH CTRL + C AND IMPORT THE KEPLR ADDRESS WHERE YOU PERFORMED THE TASKS WITH THE CODE BELOW.

/root/nubit-node/bin/nkey add my_nubit_key --recover --p2p.network nubit-alphatestnet-1 --node.type light

SERVİCES

sudo tee /etc/systemd/system/nubitd.service > /dev/null <<EOF
[Unit]
Description=nubitd node
After=network-online.target
[Service]
User=$USER
ExecStart=/root/nubit-node/bin/nubit light start \
--p2p.network nubit-alphatestnet-1 \
--core.ip validator.nubit-alphatestnet-1.com \
--metrics.endpoint otel.nubit-alphatestnet-1.com:4318 \
--rpc.skip-auth
Restart=on-failure
RestartSec=5
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF

LET'S START

sudo systemctl daemon-reload
sudo systemctl enable nubitd
sudo systemctl restart nubitd

LOG REVİEW

sudo journalctl -u nubitd -fo cat

Learning Pubkey

NOTE: The wallet will be listed, here is the pubkey section, here is the "key":"A/WJPVhPe8jYghfhgfhfgOEdfdfdbiD7ojC6thn4r1C" The part written between 2 quotes is A/WJPVhPe8jYghfhgfhfgOEdfdfdbiD7ojC6thn4r1C, the code is your pubkey, you will write it, you will get 3k points.

/root/nubit-node/bin/nkey list --p2p.network nubit-alphatestnet-1 --node.type light

Last updated

Was this helpful?