---
title: Identify InfluxDB OSS v2 version
description: Learn how to identify your InfluxDB OSS v2 version using command-line tools, the UI, and HTTP endpoints.
url: https://docs.influxdata.com/influxdb/v2/admin/identify-version/
estimated_tokens: 1059
product: InfluxDB OSS v2
version: v2
---

# Identify InfluxDB OSS v2 version

This page documents an earlier version of InfluxDB OSS. [InfluxDB 3 Core](/influxdb3/core/) is the latest stable version.

#### API token hashing is enabled by default in InfluxDB OSS 2.9.0

Stronger token security: tokens are stored as hashes on disk, so a copy of the database file doesn’t expose usable tokens. Existing tokens are hashed on first startup and the original strings can’t be recovered afterward — **capture any plaintext tokens you still need before you upgrade**.

For more information, see [Token hashing](/influxdb/v2/admin/tokens/#token-hashing).

Identifying which InfluxDB product and version you’re using is essential for accessing the correct documentation, troubleshooting issues, and planning upgrades.

#### Identify your InfluxDB version

If you are unsure which InfluxDB product you are using, use our interactive version detector to help identify it:

[Detect my InfluxDB version](#)

## Quick detection methods

### InfluxDB OSS v2 detection

Check the version using `influxd`:

```bash
influxd version
```

Query the `/health` endpoint and extract the version:

```bash
curl -s http://localhost:8086/health | jq -r '.version'
```

The InfluxDB UI displays the version:

-   On the login page
-   In the right column of the main landing page
-   In the user menu dropdown

For more details, see [How can I identify my InfluxDB version?](/influxdb/v2/reference/faq/#administration-1)

## Understanding InfluxDB products

For a complete comparison of InfluxDB versions and deployment options, see the [InfluxDB platform overview](/platform/).

## Troubleshooting

### Can’t access your InfluxDB instance?

If you can’t directly access your InfluxDB instance:

1. Use the [interactive version detector](#identify-your-influxdb-version) above or [Ask InfluxData AI](#)
2. Answer questions about your setup:
    -   License type (paid or free)
    -   Hosting model (cloud or self-hosted)
    -   Server age
    -   Query language preferences
3. Get product recommendations based on your answers

### Still not sure?

If you’re still uncertain, see the [Support and feedback](#bug-reports-and-feedback) options.

#### Related

-   [Get started with InfluxDB](/influxdb/v2/get-started/)
-   [influxd - InfluxDB service](/influxdb/v2/reference/cli/influxd/)
