Installation
Current Version
Port Prefix
e3b47c1
322
Minimum hardware Requirements #
CPU : 4x CPUs
Ram : 8GB RAM
Storage: 100GB of storage (SSD or NVME)
Setting Variables
echo "export WALLET="wallet"" >> $HOME/.bash_profile
echo "export MONIKER="test"" >> $HOME/.bash_profile
echo "export qubetics_CHAIN_ID="qubetics_9029-1"" >> $HOME/.bash_profile
echo "export qubetics_PORT="322"" >> $HOME/.bash_profile
echo "export DAEMON_NAME="qubeticsd"" >> $HOME/.bash_profile
echo "export DAEMON_HOME=$HOME/.qubeticsd"" >> $HOME/.bash_profile
source $HOME/.bash_profile
Install dependencies
sudo apt update && sudo apt upgrade -y && sudo apt-get install make build-essential gcc git jq chrony lz4 tmux unzip bc -y && sudo apt install -y curl git jq lz4 build-essential unzip
INSTALL GO
ver="1.20.5" && \
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz" && \
sudo rm -rf /usr/local/go && \
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz" && \
rm "go$ver.linux-amd64.tar.gz" && \
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile && \
source $HOME/.bash_profile && \
go version
# Adding Go's location to profile
cat <<'EOF' >>$HOME/.profile
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
EOF
source $HOME/.profile
go version
Download and build binary
# Download Pre-Built Binary
wget -O $HOME/go/bin/qubeticsd https://files.nodeshub.online/testnet/qubetics/binary/current/qubeticsd
# Prepare binaries for Cosmovisor
mkdir -p $HOME/.qubeticsd/cosmovisor/genesis/bin
cp $HOME/go/bin/qubeticsd $HOME/.qubeticsd/cosmovisor/genesis/bin/
# Create application symlinks
sudo ln -s $HOME/.qubeticsd/cosmovisor/genesis $HOME/.qubeticsd/cosmovisor/current -f
sudo ln -s $HOME/.qubeticsd/cosmovisor/current/bin/qubeticsd /usr/local/bin/qubeticsd -f
Installing Cosmovisor
# Download and install Cosmovisor
go install github.com/cosmos/cosmos-sdk/cosmovisor/cmd/cosmovisor@latest
# Create service
sudo tee /etc/systemd/system/qubetics.service > /dev/null << EOF
[Unit]
Description=qubetics node service
After=network-online.target
[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.qubeticsd"
Environment="DAEMON_NAME=qubeticsd"
Environment="UNSAFE_SKIP_BACKUP=true"
[Install]
WantedBy=multi-user.target
EOF
# Reload Daemon
sudo systemctl daemon-reload
sudo systemctl enable qubetics.service
Initialize Node & Configuring Node Port
# Set node configuration
qubeticsd init $MONIKER --chain-id qubetics_9029-1
qubeticsd config node tcp://localhost:32257
qubeticsd config keyring-backend file
# Set custom ports in client.toml
sed -i.bak -e "s%:26457%:${qubetics_PORT}57%g" $HOME/.qubeticsd/config/client.toml
# Set custom ports in app.toml
sed -i.bak -e "s%:1317%:${qubetics_PORT}17%g;
s%:8080%:${qubetics_PORT}80%g;
s%:9090%:${qubetics_PORT}90%g;
s%:9091%:${qubetics_PORT}91%g;
s%:8545%:${qubetics_PORT}45%g;
s%:8546%:${qubetics_PORT}46%g;
s%:6065%:${qubetics_PORT}65%g" $HOME/.qubeticsd/config/app.toml
# Set custom ports in config.toml file
sed -i.bak -e "s%:26658%:${qubetics_PORT}58%g;
s%:26657%:${qubetics_PORT}57%g;
s%:6060%:${qubetics_PORT}60%g;
s%:26656%:${qubetics_PORT}56%g;
s%^external_address = \"\"%external_address = \"$(wget -qO- eth0.me):${qubetics_PORT}56\"%;
s%:26660%:${qubetics_PORT}60%g" $HOME/.qubeticsd/config/config.toml
# Download genesis and addrbook
wget -O $HOME/.qubeticsd/config/genesis.json https://files.nodeshub.online/testnet/qubetics/genesis.json
wget -O $HOME/.qubeticsd/config/addrbook.json https://files.nodeshub.online/testnet/qubetics/addrbook.json
# Add Seeds and Peers
SEEDS="6f6a3a908634b79b6fe7c4988efec2553f188234@qubetics.test.seed.nodeshub.online:32256"
PEERS="$(curl -s https://files.nodeshub.online/mainnet/qubetics/peers.txt)"
sed -i -e "s|^seeds *=.*|seeds = \"$SEEDS\"|; s|^persistent_peers *=.*|persistent_peers = \"$PEERS\"|" $HOME/.qubeticsd/config/config.toml
# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"7tics\"|" $HOME/.qubeticsd/config/app.toml
# Set pruning and indexer to Null
sed -i -e "s/^pruning =./pruning = "custom"/" $HOME/.qubeticsd/config/app.toml sed -i -e "s/^pruning-keep-recent =./pruning-keep-recent = "100"/"
$HOME/.qubeticsd/config/app.toml sed -i -e "s/^pruning-interval =./pruning-interval = "50"/" $HOME/.qubeticsd/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.qubeticsd/config/config.toml
Download Snapshot
sudo systemctl stop qubetics
# Back up priv_validator_state.json if needed
cp ~/.qubeticsd/data/priv_validator_state.json ~/.qubeticsd/priv_validator_state.json.backup.backup
# Reset Data Folder
qubeticsd tendermint unsafe-reset-all --home $HOME/.qubeticsd --keep-addr-book
SNAP_URL=$(curl -s https://files.nodeshub.online/testnet/qubetics/snapshot/snap-info.txt | grep "Snapshot_URL" | cut -d ' ' -f 2)
curl ${SNAP_URL} | lz4 -dc - | tar -xf - -C $HOME/.qubeticsd
cp $HOME/.qubeticsd/priv_validator_state.json.backup $HOME/.qubeticsd/data/priv_validator_state.json
sudo systemctl restart qubetics && sudo journalctl -u qubetics -f -o cat
Start service and check the logs
sudo systemctl start qubetics.service && sudo journalctl -u qubetics -f -o cat
Last updated