Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Latest commit

 

History

History
122 lines (75 loc) · 4.47 KB

the-node-guide.md

File metadata and controls

122 lines (75 loc) · 4.47 KB
description
Subspace: Node Setup Guide

Node Setup Guide

Welcome to our guide on setting up your node and participating in the Gemini3, Subspace Incentivized Testnet. Follow these step-by-step instructions to get started.

Hardware Requirements

We recommend the following minimum hardware requirements for running the Subspace Node:

  • Machine: 8 GB+ RAM, CPU 4 Core+, 100GB SSD
  • OS: Ubuntu Linux 20.04 (LTS)

Setting up a Subspace Node

  1. Run the following command:
wget -O subspace.sh https://raw.github.com/denodesxyz/denodes-hub/hub/scripts/subspace.sh && chmod +x subspace.sh && ./subspace.sh

If the message "Illegal Instruction" appears during installation. It means that the processor is not compatible with this version. You can try adding the "v2" parameter and installing the version for older processors:

wget -O subspace.sh https://raw.github.com/denodesxyz/denodes-hub/hub/scripts/subspace.sh && chmod +x subspace.sh && ./subspace.sh v2

During the installation process, several parameters will be requested, the most important of which are the wallet address, the node name and the volume of the disk allocated for the plot.

  1. For the first question, enter Y:
  1. Your subspace wallet address:
  • Enter the address that can be taken here, or
  • Install recommended wallet Subwallet
  1. Enter a unique node name:
  1. Specify the paths for storing the plot and the node data (you can leave the default values):
  1. Specify the size of the plot:
  1. Leave the default value when selecting the chain:
  1. Installation successfully completed:

Node Monitoring

To view logs, use the following command:

journalctl -f -u subspace-node -o cat

In addition to logs, you can find your node in telemetry. Keep in mind that with a large number of farmers, there is a chance that even a successfully working node will not be seen in telemetry immediately.

https://telemetry.subspace.network/#list/0x92e91e657747c41eeabed5129ff51689d2e935b9f6abfbd5dfcb2e1d0d035095

{% hint style="info" %} To search, simply start typing the Node Name. Click on the row with the node to pin it to the top of the list. {% endhint %}

Useful Commands

The list of useful commands includes ways to manage and monitor your subspace node:

  • View the logs
journalctl -f -u subspace-node -o cat
  • Restart your node
journalctl -f -u subspace-node -o cat
systemctl restart subspace-node
  • Stop your node
systemctl stop subspace-node
  • Delete your node
sudo systemctl stop subspace-node
sudo systemctl disable subspace-node
sudo rm /etc/systemd/system/subspace-node.service
sudo rm /usr/local/bin/subspace
rm -rf $HOME/.local/share/subspace*
rm -rf $HOME/.config/subspace*

Powered by deNodes