PundiX Docs
  • Introduction
  • Getting Started
    • What is PundiX (Pundi X Chain)
    • Install PundiX (Pundi X Chain)
    • Setup Node
      • Full node with Binaries
      • Full node with Docker
      • Snapshot Guide
      • Node Monitoring Device
      • Node Peers
  • Validators
    • Validator Overview
    • Setting Up a Validator for PundiX Chain
    • Validator Recovery
    • Validator FAQ
    • Validator Security
    • Sentry Nodes
  • DELEGATORS
    • Delegator FAQ
    • Delegator Overview
    • Delegator CLI Guide
  • PUNDIX TUTORIALS
    • PundiX CLI Guide
    • Ledger Integration for pundixd
    • Testnet Faucet
    • Cloud Setup
  • UPGRADE INSTRUCTIONS
    • Cosmovisor Integration - Binaries
    • Cosmovisor Integration - Docker
    • Support keplr
  • DEVELOPERS
    • PundiX Network
    • PundiX Protobuf
    • PundiX gRPC & REST
    • PundiX JSON RPC
    • PundiX Cross Chain
      • ibc
Powered by GitBook
On this page
  • Simple SSH
  • Connecting your localhost to the cloud instance (ssh port forwarding)
  1. PUNDIX TUTORIALS

Cloud Setup

PreviousTestnet FaucetNextCosmovisor Integration - Binaries

Last updated 2 years ago

Simple SSH

  • Choose a cloud instance based on the requirements specified in

  • The estimated cost is about 80-100 USD per month

  • Pundi X Chain is system agnostic but Ubuntu is preferred

Remoting into the cloud server

  • For windows users, download or (Gitbash is preferred).

  • For Mac and linux users, you can connect via the terminal More instructions below: https://kinsta.com/blog/how-to-use-ssh/

  • Once setup, ssh into the cloud instance ssh <ssh_id>@<IP address> eg.

ssh root@47.211.41.82

Connecting your localhost to the cloud instance (ssh port forwarding)

Running the command ssh -L 127.0.0.1:26657:127.0.0.1:26657<ssh_id>@<IP address> connects your local port 26657 with your cloud's port 26657. This is just one of the way you can connect your local machine with your cloud instance to connect your HD wallets. The command should look something like:

ssh -L 127.0.0.1:26657:127.0.0.1:26657 root@47.211.41.82

You must ensure you have pundixd installed in your local machine.

Alternatively, you can add the --node flag and ensure that your IP address has either been whitelisted or your port is open. Also you can consider configuring your config.toml file to set your node up.

here
Gitbash
Putty