Installation

v1.0.0

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 dhealth_CHAIN_ID="dhealth"" >> $HOME/.bash_profile
echo "export dhealth_PORT="282"" >> $HOME/.bash_profile
echo "export DAEMON_NAME="dhealthd"" >> $HOME/.bash_profile
echo "export DAEMON_HOME=$HOME/.dhealth"" >> $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

#Download libwasm
curl -L https://github.com/CosmWasm/wasmvm/releases/download/v1.3.0/libwasmvm.x86_64.so > libwasmvm.x86_64.so
sudo mv -f libwasmvm.x86_64.so /usr/lib/libwasmvm.x86_64.so

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
cd $HOME
wget https://github.com/dhealthproject/dhealth/releases/download/v1.0.0/dhealthd-1.0.0-linux-amd64
mv dhealthd-1.0.0-linux-amd64 $HOME/go/bin/dhealthd
chmod +x $HOME/go/bin/dhealthd

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.dhealth/cosmovisor/genesis/bin
mv build/dhealthd $HOME/.dhealth/cosmovisor/genesis/bin/
rm -rf build

# Create application symlinks
sudo ln -s $HOME/.dhealth/cosmovisor/genesis $HOME/.dhealth/cosmovisor/current -f
sudo ln -s $HOME/.dhealth/cosmovisor/current/bin/dhealthd /usr/local/bin/dhealthd -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/dhealth.service > /dev/null << EOF
[Unit]
Description=dhealth 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/.dhealth"
Environment="DAEMON_NAME=dhealthd"
Environment="UNSAFE_SKIP_BACKUP=true"


[Install]
WantedBy=multi-user.target
EOF

# Reload Daemon
sudo systemctl daemon-reload
sudo systemctl enable dhealth.service

Initialize Node & Configuring Node Port

# Set node configuration
dhealthd init $MONIKER --chain-id dhealth
dhealthd config node tcp://localhost:28257
dhealthd config keyring-backend file

# Set custom ports in client.toml
sed -i.bak -e "s%:26457%:${dhealth_PORT}57%g"  $HOME/.dhealth/config/client.toml

# Set custom ports in app.toml
sed -i.bak -e "s%:1317%:${dhealth_PORT}17%g;
s%:8080%:${dhealth_PORT}80%g;
s%:9090%:${dhealth_PORT}90%g;
s%:9091%:${dhealth_PORT}91%g;
s%:8545%:${dhealth_PORT}45%g;
s%:8546%:${dhealth_PORT}46%g;
s%:6065%:${dhealth_PORT}65%g" $HOME/.dhealth/config/app.toml

# Set custom ports in config.toml file
sed -i.bak -e "s%:26658%:${dhealth_PORT}58%g;
s%:26657%:${dhealth_PORT}57%g;
s%:6060%:${dhealth_PORT}60%g;
s%:26656%:${dhealth_PORT}56%g;
s%^external_address = \"\"%external_address = \"$(wget -qO- eth0.me):${dhealth_PORT}56\"%;
s%:26660%:${dhealth_PORT}60%g" $HOME/.dhealth/config/config.toml

# Download genesis and addrbook
wget -O $HOME/.dhealth/config/genesis.json https://files.nodeshub.online/mainnet/dhealth/genesis.json
wget -O $HOME/.dhealth/config/addrbook.json https://files.nodeshub.online/mainnet/dhealth/addrbook.json

# Add Seeds and Peers
SEEDS="https://dhealth.seeds.nodeshub.online:28256"
PEERS=""
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.dhealth/config/config.toml

# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0udhp\"|" $HOME/.dhealth/config/app.toml

# Set pruning and indexer to Null
sed -i -e "s/^pruning =./pruning = "custom"/" $HOME/.dhealth/config/app.toml sed -i -e "s/^pruning-keep-recent =./pruning-keep-recent = "100"/"
$HOME/.dhealth/config/app.toml sed -i -e "s/^pruning-interval =./pruning-interval = "50"/" $HOME/.dhealth/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.dhealth/config/config.toml
  
  

Download Snapshot

# Back up priv_validator_state.json if needed
cp ~/.dhealth/data/priv_validator_state.json  ~/.dhealth/priv_validator_state.json

# On some tendermint chains
dhealthd unsafe-reset-all --home $HOME/.dhealth --keep-addr-book

# On other tendermint chains
dhealthd tendermint unsafe-reset-all --home $HOME/.dhealth --keep-addr-book

curl https://files.nodeshub.online/mainnet/dhealth/snapshot/dhealth_snap.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.dhealth

mv $HOME/.dhealth/priv_validator_state.json.backup $HOME/.dhealth/data/priv_validator_state.json
sudo systemctl restart dhealth && sudo journalctl -u dhealth -f -o cat

Start service and check the logs

sudo systemctl start dhealth.service && sudo journalctl -u dhealth -f -o cat

Last updated