Gitopia

Stop gitopiad service and reset database:

sudo systemctl stop gitopiad 
gitopiad tendermint unsafe-reset-all --home $HOME/.gitopia --keep-addr-book
PEER="cff4c608d2fe05c0b190bb0ee23a46e1e769e0b5@65.108.229.102:23456"
SNAP="https://rpc.gitopia.huginn.tech:443"
LATEST_HEIGHT=$(curl -s $SNAP/block | jq -r .result.block.header.height)
TRUST_HEIGHT=$((LATEST_HEIGHT - 1000))
TRUST_HASH=$(curl -s "$SNAP/block?height=$TRUST_HEIGHT" | jq -r .result.block_id.hash)

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP,$SNAP\"| ; \
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$TRUST_HEIGHT| ; \
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"|" $HOME/.gitopia/config/config.toml
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$PEER\"/" $HOME/.gitopia/config/config.toml

2- Run gitopiad and check logs

sudo systemctl start gitopiad
sudo journalctl -u gitopiad -f -o cat

Last updated