🧊
QuadBlock Services
  • ⚛️IBC - Cosmos Ecosystem
  • Mainnet
    • 🟢Cosmos Hub
      • Installation
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • Monitoring
    • 🟢Osmosis
      • Installation
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • Monitoring
    • 🟢Stride
      • Installation
        • Automatic
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • CLI Cheatsheet
        • Wallet Management
        • Validator Management
        • Token Management
        • Governance
        • Info & Status
        • Other
        • ⚠️Delete Node
      • Monitoring
    • 🟢Planq
      • Installation
        • Automatic
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • CLI Cheatsheet
        • Wallet Management
        • Validator Management
        • Token Management
        • Governance
        • Info & Status
        • Other
        • ⚠️Delete Node
      • Monitoring
    • 🟢Gitopia
      • Installation
        • Automatic
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • CLI Cheatsheet
        • Wallet Management
        • Validator Management
        • Token Management
        • Governance
        • Info & Status
        • Other
        • ⚠️Delete Node
      • Monitoring
    • 🟢Quasar
      • Installation
        • Automatic
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • CLI Cheatsheet
        • Wallet Management
        • Validator Management
        • Token Management
        • Governance
        • Info & Status
        • Other
        • ⚠️Delete Node
      • Monitoring
  • Testnet
    • 🟢Dymension
      • Installation
        • Automatic
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • CLI Cheatsheet
        • Wallet Management
        • Validator Management
        • Token Management
        • Governance
        • Info & Status
        • Other
        • ⚠️Delete Node
      • Monitoring
    • 🟢Avail
      • Installation
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • CLI Cheatsheet
        • Wallet Management
        • Validator Management
        • Token Management
        • Governance
        • Info & Status
        • Other
        • ⚠️Delete Node
      • Monitoring
    • Soon
  • Endpoints
    • 🌐Public Endpoints
    • 🔐Private Endpoints
Powered by GitBook
On this page
  1. Mainnet
  2. Stride
  3. CLI Cheatsheet

Other

PreviousInfo & StatusNextDelete Node

Last updated 2 years ago

You can change value CUSTOM_PORT=10

(you can use port 4-65353, except: 18, 22, 23, 53, 80 and 323) to check port that no used, check listened port and use another of it:

apt install sysstat -y
netstat -tunlp

(for Custom Port) set your Port first

CUSTOM_PORT=
echo "export SOURCE=${CUSTOM_PORT}" >> $HOME/.bash_profile

Set Custom Ports

Enable default Indexing (kv)

Disable Indexing

Reset chain data

🟢
sed -i.bak -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:${CUSTOM_PORT}658\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:${CUSTOM_PORT}657\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:${CUSTOM_PORT}060\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:${CUSTOM_PORT}656\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":${CUSTOM_PORT}660\"%" $HOME/.planqd/config/config.toml
sed -i.bak -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:${CUSTOM_PORT}317\"%; s%^address = \":8080\"%address = \":${CUSTOM_PORT}080\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:${CUSTOM_PORT}090\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:${CUSTOM_PORT}091\"%; s%^address = \"0.0.0.0:8545\"%address = \"0.0.0.0:${CUSTOM_PORT}545\"%; s%^ws-address = \"0.0.0.0:8546\"%ws-address = \"0.0.0.0:${CUSTOM_PORT}546\"%" $HOME/.planqd/config/app.toml
sed -i -e 's|^indexer *=.*|indexer = "kv"|' $HOME/.planqd/config/config.toml
sed -i -e 's|^indexer *=.*|indexer = "null"|' $HOME/.planqd/config/config.toml
planqd tendermint unsafe-reset-all --home $HOME/.planqd --keep-addr-book