ubuntu-20.04
ubuntu-22.04
CPU:
RAM:
8 cores
64GB
Storage:
6TB
Official Documentation
ubuntu-20.04
ubuntu-22.04
CPU:
RAM:
8 cores
64GB
Storage:
6TB
Node name
Rpc node ip
### Install dependenciessudo apt update && sudo apt upgrade -ysudo apt install git gcc make jq curl lz4### Install gocd $HOMEVER=1.23.6wget -qO go.tar.gz "https://golang.org/dl/go$VER.linux-amd64.tar.gz"sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go.tar.gzrm go.tar.gzecho "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bashrcsource ~/.bashrcmkdir -p ~/go/bin### Config and init bridgecd $HOMErm -rf celestia-nodegit clone https://github.com/celestiaorg/celestia-node.gitcd celestia-node/git checkout tags/v0.22.3 -b v0.22.3make buildsudo make installmake cel-key# Create wallet:./cel-key add my_celes_key --keyring-backend test --node.type full# (Optional) Restore an existing cel_key:cd ~/celestia-node./cel-key add my_celes_key --keyring-backend test --node.type full --recover# You can find the address by running the following command in the celestia-node directory:cd $HOME/celestia-node./cel-key list --node.type full --keyring-backend test# Config and init app:celestia full init --core.ip $### Create service filesudo tee /etc/systemd/system/celestia-full.service > /dev/null <<EOF[Unit]Description=celestia fullAfter=network-online.target[Service]User=$USERExecStart=$(which celestia) full start --archival --metrics.tls=true --metrics --metrics.endpoint otel.celestia.observerRestart=on-failureRestartSec=3LimitNOFILE=65535[Install]WantedBy=multi-user.targetEOF### Enable and start servicesudo systemctl daemon-reloadsudo systemctl enable celestia-bridgesudo systemctl restart celestia-bridge && sudo journalctl -u celestia-bridge -fo cat