title: start parent: Command Reference grand_parent: Reference nav_order: 60

start

Starts a locally installed Solr node previously created by the install command.

Syntax

solr-orbit start --installation-id ID --test-run-id ID [OPTIONS]

Options

OptionRequiredDescription
--installation-idYesID of the installation to start (returned by the install command)
--test-run-idYesTest run ID to associate with this start event
--runtime-jdkNoMajor JDK version to use (e.g., 21)
--telemetryNoComma-separated telemetry device names to activate
--telemetry-paramsNoComma-separated key:value parameters for telemetry devices

Example

# Install and capture the installation ID
solr-orbit install --distribution-version 9.10.1

# Start the installed node (use the ID printed by install)
solr-orbit start \
  --installation-id <installation-id> \
  --test-run-id my-run-001

# Run the benchmark against the manually started node
solr-orbit run \
  --pipeline benchmark-only \
  --target-hosts localhost:38983 \
  --workload nyc_taxis \
  --test-run-id my-run-001

# Stop when done
solr-orbit stop --installation-id <installation-id>

See also