Node
Node commands let you inspect the local Softadastra node and start node services for the current CLI session.
The command group is:
softadastra nodeCommands
softadastra node info
softadastra node startShow node help
Run:
softadastra nodeOutput:
Softadastra node
Usage
softadastra node info
softadastra node start
Commands
info Show local node information
start Start local node services for this CLI sessionInspect the local node
Use node info to show information about the local node.
softadastra node infoThis command shows values such as:
- node id
- display name
- hostname
- operating system
- version
- start time
- uptime
- capabilities
- whether node services are running
Example output:
Softadastra node
Field Value
node_id node-1
display_name Softadastra Node
hostname local-machine
os linux
version 0.1.0
started_at 1760000000000
uptime_ms 1250
capabilities 6
node_running noThe exact values depend on your machine and runtime state.
Start node services
Use node start to start local node services for the current CLI session.
softadastra node startWhen it succeeds, the CLI shows which services are running.
Example output:
Starting Softadastra node
✓ Softadastra node services started for this CLI session.
node_id node-1
transport running
discovery running
metadata runningThis command starts the local runtime services used by the CLI session:
- transport
- discovery
- metadata
It does not turn the CLI into a permanent background daemon.
For a long-running node, use the Softadastra node app.
If the node is already running
If node services are already running in the current CLI session, node start does not start them again.
softadastra node startExample output:
Softadastra node is already running.
node_id node-1Check node state
After starting the node, run:
softadastra node infoYou should see node_running set to yes.
node_running yesYou can also run:
softadastra statusThis gives a wider view of the runtime: node, store, sync, transport, discovery, and metadata.
Typical workflow
Use this flow when checking the local node:
softadastra status
softadastra node info
softadastra node start
softadastra node info
softadastra peersWhat this does:
- checks the runtime status
- prints current node information
- starts node services for the current CLI session
- prints node information again
- checks known discovery and transport peers
Node info without live metadata
If metadata is not available yet, node info still shows basic information.
Example output:
Softadastra node
Field Value
node_id node-1
node_running no
metadata unavailableIn interactive mode, start the node first:
softadastra node startThen run:
softadastra node infoInteractive mode
You can use node commands inside an interactive session.
Start the CLI:
softadastraThen run:
softadastra> node info
softadastra> node start
softadastra> node info
softadastra> peers
softadastra> exitThis is useful when you want services to stay available while you run several commands in the same CLI session.
Common issues
Unknown node command
If you run an unknown subcommand:
softadastra node somethingThe CLI returns an error like:
Unknown node command: something
Usage: node <info|start>Use one of:
softadastra node info
softadastra node startMetadata is unavailable
If node info says metadata is unavailable, start the node services in the current CLI session:
softadastra node startThen run:
softadastra node infoNo peers after starting the node
That can be normal.
Starting node services does not guarantee that another node exists on the network.
Check peers with:
softadastra peersIf no peers are found, it usually means no other node is running or discoverable yet.
Summary
Use:
softadastra node infoto inspect the local node.
Use:
softadastra node startto start local node services for the current CLI session.
Next, continue with Store.