Skip to Content
Node & OperationsInstall a Node

Install a Node

Pre-built Tidecoin Core binaries are published on the GitHub releases page for Linux (x86_64 and aarch64), macOS (universal), and Windows (x86_64). Download the archive for your platform, verify checksums and signatures against the release notes, extract, and run tidecoind or tidecoin-qt.

This page covers binary installation. For source builds, use Build from Source. For long-running Linux services, install first, then configure systemd.

Binaries and commands

CommandPurpose
tidecoindHeadless node daemon.
tidecoin-cliCLI client for node and wallet RPCs.
tidecoin-qtDesktop GUI wallet and node.
tidecoin-walletWallet utility for offline or maintenance tasks.
tidecoin-txTransaction utility.
tidecoin-utilUtility command for support workflows.

Install checklist

  1. Download the release archive from the official Tidecoin release channel.
  2. Verify checksums and signatures when release artifacts provide them.
  3. Extract the archive.
  4. Put the binaries on PATH, or run them from the extracted directory.
  5. Start with the default mainnet settings, or choose -testnet / -regtest.
  6. Confirm the node starts and reports chain state.
  7. Configure RPC, wallet, pruning, indexes, and service management before leaving a node online unattended.

Linux quick install

Extract the release archive and install the command-line binaries into a directory on PATH:

tar -xf tidecoin-*-x86_64-linux-gnu.tar.gz sudo install -m 0755 tidecoin-*/bin/tidecoind /usr/local/bin/ sudo install -m 0755 tidecoin-*/bin/tidecoin-cli /usr/local/bin/ sudo install -m 0755 tidecoin-*/bin/tidecoin-wallet /usr/local/bin/ sudo install -m 0755 tidecoin-*/bin/tidecoin-tx /usr/local/bin/ sudo install -m 0755 tidecoin-*/bin/tidecoin-util /usr/local/bin/

If you need the GUI wallet, install or run tidecoin-qt from the same release.

First start

Start the daemon in the foreground:

tidecoind

Or start it in the background:

tidecoind -daemon

Check that RPC works locally:

tidecoin-cli getblockchaininfo

Stop cleanly:

tidecoin-cli stop

Network defaults

NetworkChain flagP2P portRPC portData subdirectory
Mainnetdefault87557585base data directory
Testnet-testnet or -chain=test1875517585testnet/
Regtest-regtest or -chain=regtest1877817595regtest/

Before production use

  • Create an explicit tidecoin.conf.
  • Keep RPC bound to localhost unless there is a specific secured deployment need.
  • Use cookie auth locally or rpcauth for service users.
  • Decide whether the node needs a wallet. Use disablewallet=1 for pure infrastructure nodes.
  • Decide whether the node needs txindex=1. Do not combine txindex=1 with pruning.
  • Back up wallets before upgrades or service changes.

See also: Build from Source, Configuration, Data Directory, RPC Security, systemd Service.

Last updated on