> ## Documentation Index
> Fetch the complete documentation index at: https://libops-renovate-github-com-libops-sitectl-0-x.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Solr service commands

> Core sitectl Solr operations and service inspection helpers.

export const Compose = () => <Tooltip headline="Compose" tip={<>
        Docker Compose is Docker's tool for defining and running multi-container applications.{" "}
        <a href="https://docs.docker.com/compose/">https://docs.docker.com/compose/</a>.
      </>}>
    <>
      <Icon icon="docker" />
      {" "}
      Compose
    </>
  </Tooltip>;

Solr is a core `sitectl` service namespace. Operators use `sitectl solr ...` from any context whose <Compose /> project has a Solr service.

## Status

Check the Solr container state:

```bash theme={null}
sitectl solr status
```

## Info

Run Solr's built-in status command inside the container:

```bash theme={null}
sitectl solr info
```

Use `--service` when the Compose service is not named `solr`.

Standalone Solr Compose projects may still exist, but the shared command surface belongs to core `sitectl`, not to a dedicated Solr CLI plugin.

## Reference

### `status`

Show the compose service container status

```bash theme={null}
sitectl solr status
```

| Flag        | Default | Description          |
| ----------- | ------- | -------------------- |
| `--service` | `solr`  | Compose service name |

### `info`

Run Solr's built-in status command

```bash theme={null}
sitectl solr info
```

| Flag        | Default | Description          |
| ----------- | ------- | -------------------- |
| `--service` | `solr`  | Compose service name |
